/* ============ БАЗОВЫЕ СТИЛИ ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a5f4a;
    --color-accent: #ff6b35;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-text: #2d3436;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: visible;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 50px;
    text-shadow: 0 2px 15px rgba(96, 92, 92, 0.5);
    position: relative;
    z-index: 2;
}

/* ============ НАВИГАЦИЯ + БУРГЕР ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(75, 75, 90, 0.4);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(88, 86, 86, 0.2);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.7);
    box-shadow: 0 5px 40px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo:hover {
    transform: scale(1.05);
    color: #ff9a76;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ff9a76;
}

/* БУРГЕР МЕНЮ */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ============ HERO С ФОНОМ (вулканы) ============ */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.4), rgba(26, 26, 46, 0.5)),
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=2560&q=90') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 6px 30px rgba(0,0,0,0.6);
    color: white;
}

.hero-title span {
    color: #ff9a76;
    text-shadow: 0 4px 20px rgba(255, 154, 118, 0.7);
}

.hero-subtitle {
    font-size: 1.7rem;
    margin-bottom: 45px;
    font-weight: 300;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.98);
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.7);
    border-color: rgba(255,255,255,0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.95rem;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.arrow {
    width: 25px;
    height: 25px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    margin: 15px auto;
    animation: bounce 2s infinite;
}

/* ============ О НАС С ФОНОМ ============ */
.about {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.75), rgba(26, 26, 46, 0.8)),
                url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=2560&q=90') center/cover fixed;
    color: white;
    margin-top: -30px;
    padding-top: 150px;
    position: relative;
    z-index: 3;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(to bottom, rgba(26, 95, 74, 0.5), rgba(26, 95, 74, 0.75));
    z-index: 0;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff9a76;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.98);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat {
    text-align: center;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ff9a76;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* ============ СЕЗОНЫ С ФОНОМ (более прозрачный) ============ */
.seasons {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.4)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=2560&q=90') center/cover fixed;
    margin-top: -30px;
    padding-top: 150px;
    position: relative;
    z-index: 3;
}

.seasons::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.4), rgba(102, 126, 234, 0.5));
    z-index: 0;
    pointer-events: none;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.season-card {
    position: relative;
    padding: 50px 35px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
    border-radius: 30px;
    transition: var(--transition);
}

.season-winter {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85));
}

.season-spring {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.85), rgba(245, 87, 108, 0.85));
}

.season-summer {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.85), rgba(254, 225, 64, 0.85));
}

.season-autumn {
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.85), rgba(255, 106, 136, 0.85));
}

.season-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 35px 80px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.6);
    z-index: 100;
}

.season-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.season-card h3 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 800;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.season-card p {
    font-size: 1.05rem;
    opacity: 0.98;
    line-height: 1.6;
}

.season-arrow {
    font-size: 2.5rem;
    align-self: flex-end;
    transition: var(--transition);
    opacity: 0.9;
}

.season-card:hover .season-arrow {
    transform: translateX(15px);
    opacity: 1;
}

/* ============ КОНТАКТЫ С ФОНОМ (более прозрачный) ============ */
.contacts {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.6), rgba(26, 26, 46, 0.65)),
                url('https://images.unsplash.com/photo-1516934024742-b461fba47600?w=2560&q=90') center/cover fixed;
    margin-top: -30px;
    padding-top: 150px;
    position: relative;
    z-index: 3;
}

.contacts::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(to bottom, rgba(26, 95, 74, 0.5), rgba(26, 95, 74, 0.6));
    z-index: 0;
    pointer-events: none;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: block;
    text-align: center;
    padding: 45px 25px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: white;
    border: 2px solid rgba(255,255,255,0.25);
}

.contact-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 35px 80px rgba(0,0,0,0.6);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255,255,255,0.6);
    z-index: 100;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* ============ ФУТЕР ============ */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    color: white;
    text-align: center;
    padding: 60px 0 40px 0;
    position: relative;
    margin-top: -30px;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(26, 95, 74, 0.7), #1a1a2e);
    z-index: 0;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    z-index: 1;
}

.footer p {
    position: relative;
    z-index: 2;
}

/* ============ АНИМАЦИИ ПРИ СКРОЛЛЕ ============ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============ АНИМАЦИИ БУРГЕРА ============ */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-15px) rotate(45deg); }
    60% { transform: translateY(-8px) rotate(45deg); }
}

/* ============ АДАПТИВНОСТЬ ============ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        padding: 40px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 25px 0;
    }
    
    .nav-menu a {
        font-size: 1.3rem;
        display: block;
        padding: 10px;
    }
    
    .burger {
        display: block;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about, .seasons, .contacts {
        margin-top: -20px;
        padding-top: 120px;
    }
    
    /* Уменьшаем карточки на телефоне */
    .season-card {
        padding: 35px 25px;
        min-height: 260px;
    }
    
    .season-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .season-card h3 {
        font-size: 1.8rem;
    }
    
    .season-card p {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .contact-icon {
        font-size: 2.8rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .season-card {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .season-icon {
        font-size: 3rem;
    }
    
    .season-card h3 {
        font-size: 1.6rem;
    }
}
/* ============ СТРАНИЦА СЕЗОНА ============ */
.hero-season {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.3), rgba(254, 225, 64, 0.3)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=2560&q=90') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-season::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-season-content {
    max-width: 900px;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.season-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-season-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.5);
}

.hero-season-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.95);
}

.hero-season-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.95rem;
    z-index: 2;
}

/* ============ ФИЛЬТРЫ ============ */
.filters-section {
    padding: 40px 0;
    background: rgba(26, 26, 46, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5);
}

/* ============ ЛОКАЦИИ ============ */
.locations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.6), rgba(26, 26, 46, 0.7)),
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=2560&q=90') center/cover fixed;
    position: relative;
    color: white;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.locations-section .container {
    position: relative;
    z-index: 2;
}

.locations-section .section-title {
    color: white;
}

.locations-section .section-subtitle {
    color: rgba(255,255,255,0.95);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.location-card {
    display: block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.location-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.location-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.location-duration,
.location-difficulty {
    font-size: 0.9rem;
    color: #ff9a76;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.location-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff9a76;
    margin-top: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ============ CTA ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9), rgba(26, 26, 46, 0.9)),
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=2560&q=90') center/cover fixed;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

/* ============ АДАПТИВНОСТЬ ============ */
@media (max-width: 768px) {
     .about,
    .seasons,
    .contacts,
    .locations-section,
    .cta-section,
    .hero-season {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    .hero-season {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-season-title {
        font-size: 2.5rem;
    }
    
    .hero-season-subtitle {
        font-size: 1.1rem;
    }
    
    .filters-section {
        top: 60px;
        padding: 20px 0;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

/* На мобильных устройствах */

    .hero-season {
        height: auto;
        min-height: 500px;
        padding: 120px 20px 80px 20px;
    }
    
    .hero-season-content {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .hero-season-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-season-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-season-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .hero-season-scroll .arrow {
        margin-top: 10px;
    }

    .hero-season {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .locations-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .cta-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .location-card {
        margin-bottom: 10px;
    }
    
    .location-image {
        height: 200px;
    }
    
    .location-content {
        padding: 20px;
    }
    
    .location-content h3 {
        font-size: 1.4rem;
    }
    
    .location-content p {
        font-size: 0.95rem;
    }
     /* Секция "О нас" */
     .about {
        min-height: auto;
    }
    
    .seasons {
        min-height: auto;
    }
    
    .contacts {
        min-height: auto;
    }
    
    .locations-section {
        min-height: auto;
    }
    
    .cta-section {
        min-height: auto;
    }

}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
        .about,
    .seasons,
    .contacts,
    .locations-section,
    .cta-section,
    .hero-season {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    .hero-season {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-season-title {
        font-size: 2.5rem;
    }
    
    .hero-season-subtitle {
        font-size: 1.1rem;
    }
    
    .filters-section {
        top: 60px;
        padding: 20px 0;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

/* На мобильных устройствах */

    .hero-season {
        height: auto;
        min-height: 500px;
        padding: 120px 20px 80px 20px;
    }
    
    .hero-season-content {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .hero-season-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-season-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-season-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .hero-season-scroll .arrow {
        margin-top: 10px;
    }

    .hero-season {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .locations-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .cta-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .location-card {
        margin-bottom: 10px;
    }
    
    .location-image {
        height: 200px;
    }
    
    .location-content {
        padding: 20px;
    }
    
    .location-content h3 {
        font-size: 1.4rem;
    }
    
    .location-content p {
        font-size: 0.95rem;
    }
     /* Секция "О нас" */
     .about {
        min-height: auto;
    }
    
    .seasons {
        min-height: auto;
    }
    
    .contacts {
        min-height: auto;
    }
    
    .locations-section {
        min-height: auto;
    }
    
    .cta-section {
        min-height: auto;
    }
}

