@font-face {
    font-family: 'Galindo Cyrillic';
    src: url('fonts/Galindo-Cyrillic.woff2') format('woff2'),
         url('fonts/Galindo-Cyrillic.woff') format('woff');
    font-display: swap;
}

:root {
    --coral: #ff6b9d;
    --coral-dark: #e85a8a;
    --orange: #ff9f4a;
    --orange-dark: #e88830;
    --text-dark: #4a2c3a;
    --text-medium: #6b4e6e;
    --text-light: #9a7a9e;
    --white: #ffffff;
    --card-bg: rgba(255, 245, 230, 0.85);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-coral: 0 8px 25px rgba(255, 107, 157, 0.2);
    --border-radius-card: 28px;
    --border-radius-btn: 60px;
    --transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Galindo Cyrillic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 50%, #fff0e6 100%);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

.festive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 159, 74, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-call {
    background: linear-gradient(45deg, #25D366, #128C7E);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.btn-call:hover { transform: scale(1.08); }
.btn-call a { font-size: 28px; text-decoration: none; color: white; }

.messenger-fixed {
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.messenger-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.messenger-icon:hover { transform: scale(1.08); }
.tg { background: #26A5E4; }
.vb { background: #7360F2; }
.messenger-icon svg { width: 28px; height: 28px; fill: white; }

nav {
    position: sticky;
    top: 0;
    background: rgba(255, 248, 240, 0.96);
    backdrop-filter: blur(12px);
    padding: 14px 8px;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    border-bottom: 2px solid var(--coral);
}
nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 40px;
    transition: var(--transition);
    white-space: nowrap;
}
@media (hover: hover) {
    nav a:hover {
        background: rgba(255, 107, 157, 0.15);
        color: var(--coral);
        transform: translateY(-2px);
    }
}
.booking-nav-btn {
    background: linear-gradient(45deg, var(--coral), var(--orange));
    color: white !important;
    padding: 8px 20px !important;
    box-shadow: var(--shadow-coral);
}

header {
    text-align: center;
    padding: 50px 20px 60px;
    position: relative;
    z-index: 1;
}

.call-header {
    display: inline-block;
    background: linear-gradient(45deg, var(--coral), var(--orange));
    padding: 12px 28px;
    border-radius: var(--border-radius-btn);
    font-size: 1rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 30px;
    box-shadow: var(--shadow-coral);
    transition: var(--transition);
}
.call-header:hover { transform: translateY(-2px); }

.exclusive-text {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--coral);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--coral), var(--orange), #ffc069);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
@media (max-width: 480px) { h1 { font-size: 2.8rem; } }

.tagline {
    font-size: 1rem;
    max-width: 600px;
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: var(--border-radius-btn);
    display: inline-block;
    color: var(--text-dark);
    font-weight: 600;
}

.promo-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 35px auto;
}

.promo-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 157, 0.2);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-coral); }

.promo-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--coral), var(--orange));
    color: white;
    font-size: 0.7rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 800;
}
.promo-title { font-size: 1.2rem; font-weight: 800; color: var(--coral); margin-bottom: 8px; }
.promo-desc { font-size: 0.85rem; color: var(--text-medium); }

.catering-box {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--orange);
    border-radius: var(--border-radius-card);
    padding: 22px 28px;
    margin: 25px auto;
    max-width: 550px;
    text-align: center;
}
.catering-title { font-size: 1.2rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.catering-desc { font-size: 0.85rem; color: var(--text-medium); margin-bottom: 12px; }
.catering-discount {
    display: inline-block;
    background: linear-gradient(45deg, var(--coral), var(--orange));
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 800;
}

.tg-main-btn {
    display: inline-block;
    background: linear-gradient(45deg, #26A5E4, #1e8bc3);
    color: white;
    padding: 16px 40px;
    border-radius: var(--border-radius-btn);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(38,165,228,0.3);
    margin: 20px 0 10px;
    transition: var(--transition);
}
.tg-main-btn:hover { transform: translateY(-3px); }

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 800;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(45deg, var(--coral), var(--orange));
    border-radius: 4px;
}
@media (max-width: 480px) { .section-title { font-size: 1.6rem; } }

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 500px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-card);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 157, 0.2);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-coral); }
.card-icon { font-size: 2.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--coral); font-weight: 800; }
.card p { font-size: 0.85rem; color: var(--text-medium); }

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.gallery-img:hover { transform: scale(1.02); border-color: var(--coral); }

.gallery-subtitle {
    font-size: 1.4rem;
    margin: 30px 0 18px;
    color: var(--coral);
    text-align: center;
    font-weight: 800;
}

.testimonials-carousel {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}
.carousel-container { overflow: hidden; border-radius: 24px; }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
    flex: 0 0 100%;
    padding: 28px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 157, 0.2);
    min-height: 200px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: linear-gradient(45deg, var(--coral), var(--orange));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
@media (max-width: 480px) {
    .testimonials-carousel { padding: 0 35px; }
    .carousel-btn { width: 34px; height: 34px; font-size: 1.2rem; }
    .testimonial-slide { padding: 20px; }
}
.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.testimonial-name { font-weight: 800; color: var(--coral); }
.testimonial-date { font-size: 0.7rem; color: var(--text-light); margin-top: 8px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 500px;
    margin: 0 auto;
}
.feature-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 157, 0.15);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-coral); }
.feature-icon { font-size: 2rem; margin-bottom: 10px; }
.feature-item h3 { font-size: 0.9rem; color: var(--coral); margin-bottom: 4px; font-weight: 800; }
.feature-item p { font-size: 0.7rem; color: var(--text-medium); }

#map-container {
    height: 280px;
    max-width: 550px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}
.map-address { text-align: center; margin-top: 15px; font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-content {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 32px 28px;
    border-radius: 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.close {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-medium);
    transition: var(--transition);
    line-height: 1;
}
.close:hover { color: var(--coral); transform: rotate(90deg); }

.form-row { margin-bottom: 18px; }
.form-row input, .form-row select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
}
.form-row input:focus, .form-row select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}
.date-hint { font-size: 0.7rem; color: var(--text-light); margin-top: 6px; }

.offer-check {
    margin: 18px 0;
    padding: 14px;
    background: rgba(255, 245, 230, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 20px;
}
.offer-check label { display: flex; align-items: center; gap: 12px; font-size: 0.7rem; color: var(--text-dark); cursor: pointer; }
.offer-check input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--coral); }
.offer-check a { color: var(--coral); text-decoration: none; }

.submit-button {
    background: linear-gradient(45deg, var(--coral), var(--orange));
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--border-radius-btn);
    font-weight: 800;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}
.submit-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-coral); }

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 85px;
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--coral), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top span { color: white; font-size: 1.6rem; font-weight: bold; }

footer {
    background: rgba(255, 224, 204, 0.8);
    backdrop-filter: blur(8px);
    padding: 50px 20px;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
}
footer p { font-size: 0.75rem; color: var(--text-medium); margin-bottom: 12px; }
footer a { color: var(--coral); text-decoration: none; font-weight: 600; }

.calc-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-card);
    padding: 28px 24px;
    margin: 30px auto;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 107, 157, 0.2);
}
.calc-card h3 { color: var(--coral); margin-bottom: 12px; font-size: 1.3rem; }
.calc-result { font-size: 2rem; font-weight: 800; color: var(--orange); margin: 20px 0; }
.calc-card select, .calc-card input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 107, 157, 0.3);
    font-family: inherit;
}
.calc-card button {
    background: linear-gradient(45deg, var(--coral), var(--orange));
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--border-radius-btn);
    font-weight: 800;
    color: white;
    cursor: pointer;
    margin: 8px 0;
}

.prices-hero { text-align: center; padding: 40px 20px; }
.prices-hero h1 { font-size: 2.8rem; background: linear-gradient(45deg, var(--coral), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: 40px auto;
    padding: 0 16px;
}
.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-card);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 157, 0.2);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-coral); }
.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; color: var(--coral); }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--orange); margin: 12px 0; }
.price-features { list-style: none; text-align: left; margin: 20px 0; }
.price-features li { padding: 8px 0; border-bottom: 1px solid rgba(255, 107, 157, 0.2); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: "✨"; color: var(--orange); }
.booking-link {
    background: linear-gradient(45deg, var(--coral), var(--orange));
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .cards-grid, .gallery-grid, .promo-grid { max-width: 700px; }
    .promo-grid { flex-direction: row; gap: 20px; }
    .promo-card { flex: 1; }
    .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .features-grid { max-width: 700px; gap: 20px; }
    .price-cards { max-width: 700px; }
}
@media (min-width: 1024px) {
    .cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
    .features-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
    .price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 950px; }
}

@media (hover: none) and (pointer: coarse) {
    .card:active, .feature-item:active, .price-card:active, .promo-card:active, .booking-link:active, .submit-button:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
}