/* ========================================
   Hero Section - Главный баннер
   ======================================== */

.hero-section {
    position: relative;
    min-height: 67vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Russo One', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 33px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-subtitle {
    font-family: 'Russo One', sans-serif;
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-hero {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    padding: 15px 45px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(106, 184, 238, 0.3);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-hero:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 184, 238, 0.4);
}

.btn-hero:active {
    transform: translateY(0);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .hero-section {
        min-height: 54vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-badge {
        font-size: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 47vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 19px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        font-size: 18px;
    }
    
    .btn-hero {
        padding: 12px 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 11px;
    }
    
    .hero-badge {
        font-size: 16px;
    }
}


