/* ======1 ====== */
:root {
    --pink: #ff2d8e;
    --pink-dark: #e0267f;
    --pink-light: #ff5ca8;
    --black: #000000;
    --black-light: #1a1a1a;
    --gray: #2d2d2d;
    --gray-light: #404040;
    --white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --shadow: 0 10px 30px rgba(255, 45, 142, 0.2);
    --shadow-hover: 0 15px 40px rgba(255, 45, 142, 0.3);
    --glow: 0 0 20px rgba(255, 45, 142, 0.5);
}

/* ====== 2 ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a001a 50%, #0a0a0a 100%) !important;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a001a 50%, #0a0a0a 100%) !important;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== 3 ====== */
.about-hero {
    padding: 200px 0 80px; 
    background: linear-gradient(135deg, rgba(255, 45, 142, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* ====== 4====== */
.about-content {
    padding: var(--section-padding);
    background: var(--black-light);
    margin-top: 50px; 
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    margin-bottom: 2rem;
    color: var(--white);
}

.about-text h2 span {
    color: var(--pink);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

.about-img {
    width: 100%;
    border-radius: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* ====== 5 ====== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--black);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--white) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* ====== 6 ====== */
.rules-section {
    padding: var(--section-padding);
    background: var(--black-light);
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rules-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-title {
    font-size: 1.5rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 10px 0;
    color: #ccc;
    position: relative;
    padding-left: 25px;
}

.rules-list li::before {
    content: "•";
    color: var(--pink);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ====== 7 ====== */
.hours-section {
    padding: 60px 0;
    background: var(--black);
    text-align: center;
}

.hours-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.hours-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hours-time {
    font-size: 2rem;
    font-weight: bold;
    color: var(--pink);
    margin-bottom: 1rem;
}

.hours-note {
    color: #ccc;
    font-style: italic;
}

/* ====== 8====== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--black-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--pink);
    font-weight: bold;
}

/* ====== 9====== */
.booking-section {
    padding: var(--section-padding);
    background: var(--black);
}

.booking-card {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--gray) 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    max-width: 800px;
    margin: 0 auto;
}

.booking-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-secondary);
}

.booking-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 2px rgba(255, 45, 142, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ====== 1-0 ====== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-card {
        padding: 40px 20px;
    }
    
    .about-hero {
        margin-top: 60px;
        padding: 150px 0 60px; 
    }
    
    .about-content {
        margin-top: 30px; 
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero {
        margin-top: 50px;
        padding: 120px 0 40px; 
    }
    
    .about-content {
        margin-top: 20px; 
    }
}
/* ====== MOBILE RESPONSIVE STYLES ====== */
@media (max-width: 768px) {
    /* Общие стили для всех страниц */
    .container {
        padding: 0 15px;
    }
    
    body {
        padding-top: 60px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Улучшенная навигация */
    .main-header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .logo a {
        font-size: 1.3rem;
    }
    
    /* Убираем снежинки на мобильных */
    .snowflakes {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    body {
        padding-top: 55px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
}
/* Добавьте в about.css */
@media (max-width: 768px) {
    .about-hero {
        margin-top: 60px;
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .rules-grid {
        grid-template-columns: 1fr !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}