/* styles.css - Основные стили для всего сайта */

.img_hero {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.img_hero:hover {
    transform: scale(1.05);
}

.motto-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Content Styles */
.content-article {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 2rem 0;
}

.main-content {
    padding: 3rem 0;
}

/* Card Styles */
.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--neutral-500);
    line-height: 1.6;
}

/* Contact Info Styles */
.contact-info {
    padding: 1rem 0;
}

.contact-item {
    padding: 1rem;
    transition: transform 0.3s ease;
    text-align: center;
    border-radius: 8px;
    background: var(--bg-body);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.contact-item h5 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--neutral-500);
    margin-bottom: 0.5rem;
}


/* Social Links */
.social-links a {
    display: inline-block;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Utility Classes */
.text-decoration-none {
    text-decoration: none;
}

.bg-light {
    background-color: var(--bg-body) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-muted {
    color: var(--neutral-500) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

/* Full width section */
.full-width-section {
    width: 100%;
    margin: 0;
}

/* Transition for hover effects */
.transition-all {
    transition: all 0.3s ease;
}

.shadow-sm-hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-sm-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.section-footer-1 {
    height: 300px;
    padding: 1rem;
    margin: 1rem;
}

.footer-container-1 {
    height: 250px;
    padding: 1rem;
    margin: 1rem;
    border-radius: 12px;
    background-color: rgba(19, 33, 187, 0.301);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 !important;
        text-align: center;
    }

    .img_hero {
        width: 150px !important;
        height: 150px !important;
        margin: 1rem auto;
    }

    .main-content {
        padding: 2rem 0;
    }

    .card-body {
        padding: 1rem;
    }
}