/* ============================================
   РџРђР Рљ-РћРўР•Р›Р¬ Р’РћР—Р”Р’РР–Р•РќРЎРљРћР• вЂ” styles.css
   РўС‘РјРЅС‹Р№ СЃС‚РёР»СЊ, Р»РµСЃРѕРїР°СЂРєРѕРІР°СЏ Р·РѕРЅР° РџРѕРґРјРѕСЃРєРѕРІСЊРµ
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #2D6A4F;
    --accent-light: #3A856A;
    --accent-dark: #1E4D38;
    --bg-deep: #050f0a;
    --bg-dark: #091a10;
    --bg-mid: #0d2416;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-faint: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --accent-glow: 0 0 40px rgba(45, 106, 79, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-dark) 40%, var(--bg-mid) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* в”Ђв”Ђ Glass Card в”Ђв”Ђ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    padding: 32px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease;
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-6px);
    background: var(--glass-hover);
    box-shadow: var(--shadow-lg), var(--accent-glow);
    z-index: 2;
}

/* в”Ђв”Ђ Navigation в”Ђв”Ђ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 15, 10, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 15, 10, 0.9);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(45, 106, 79, 0.4);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.logo span {
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: var(--accent);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.5);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* в”Ђв”Ђ Hero в”Ђв”Ђ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 130px 24px 70px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(45, 106, 79, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 77, 56, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 10%, rgba(58, 133, 106, 0.1) 0%, transparent 45%);
    animation: ambientFloat 18s ease-in-out infinite;
}

@keyframes ambientFloat {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.03); }
}

.hero-content {
    text-align: center;
    max-width: 860px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(45, 106, 79, 0.3);
    border: 1px solid rgba(45, 106, 79, 0.5);
    color: #a8d5bc;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 44px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* в”Ђв”Ђ Booking Search Form в”Ђв”Ђ */
.booking-search-wrap {
    animation: fadeInUp 0.8s ease 0.35s both;
    margin-top: 10px;
    position: relative;
    z-index: 100;
}

.booking-search-form {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.5) 0%, rgba(30, 77, 56, 0.6) 100%);
    border: 1px solid rgba(45, 106, 79, 0.5);
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(45, 106, 79, 0.15);
}

.tl-search-row {
    display: flex;
    align-items: stretch;
}

.tl-search-field {
    flex: 1;
    padding: 22px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-width: 0;
    z-index: 1;
}

.tl-search-field:hover {
    background: rgba(255, 255, 255, 0.04);
    z-index: 2;
}

.tl-field-dates {
    cursor: pointer;
    transition: background 0.3s ease;
}

.tl-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(232, 180, 192, 0.9);
    margin-bottom: 8px;
}

.tl-dates-display,
.tl-guests-display {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tl-guests-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #1e0c12;
    border: 1px solid rgba(45, 106, 79, 0.4);
    border-radius: 16px;
    padding: 16px;
    z-index: 10001;
    display: none;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.tl-guests-dropdown.active {
    display: block;
    animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tl-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tl-guest-row:last-child { border-bottom: none; }

.tl-guest-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.tl-guest-hint {
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 2px;
}

.tl-guest-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tl-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(45, 106, 79, 0.5);
    background: rgba(45, 106, 79, 0.2);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-counter-btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
}

.tl-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tl-counter-value {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--text-white);
}

.tl-children-ages {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
}

.tl-children-ages.active { display: block; }

.tl-ages-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-faint);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tl-age-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tl-age-selector {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tl-age-selector label {
    font-size: 10px;
    color: var(--text-faint);
}

.tl-age-selector select {
    padding: 6px 10px;
    border: 1px solid rgba(45, 106, 79, 0.4);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background: rgba(45, 106, 79, 0.2);
    color: var(--text-white);
    cursor: pointer;
    min-width: 70px;
}

.tl-age-selector select:focus {
    outline: none;
    border-color: var(--accent);
}

.tl-field-submit {
    border-right: none;
    padding: 0;
    flex: 0 0 auto;
}

.tl-search-btn {
    height: 100%;
    padding: 22px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    border-radius: 0 18px 18px 0;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tl-search-btn:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    box-shadow: 0 0 30px rgba(45, 106, 79, 0.6);
}

/* в”Ђв”Ђ Scroll indicator в”Ђв”Ђ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
}

.mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(45, 106, 79, 0.6);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 5px;
    height: 9px;
    background: var(--accent-light);
    border-radius: 3px;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 9px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* в”Ђв”Ђ Stats Strip в”Ђв”Ђ */
.stats-strip {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 1px solid rgba(45, 106, 79, 0.25);
    border-radius: 20px;
    overflow: hidden;
}

.stat-item {
    background: rgba(45, 106, 79, 0.1);
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(45, 106, 79, 0.2);
    transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
    background: rgba(45, 106, 79, 0.2);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value span {
    color: var(--accent-light);
    font-size: 28px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* в”Ђв”Ђ Section Base в”Ђв”Ђ */
section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(45, 106, 79, 0.2);
    border: 1px solid rgba(45, 106, 79, 0.4);
    color: #a8d5bc;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* в”Ђв”Ђ About в”Ђв”Ђ */
.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 28px;
}

.about-features li {
    color: var(--text-muted);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(45, 106, 79, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.about-images {
    display: grid;
    gap: 20px;
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 220px;
    background: rgba(45, 106, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-radius: 16px;
}

/* в”Ђв”Ђ Rooms в”Ђв”Ђ */
.rooms {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.05) 0%, transparent 100%);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.room-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.room-card.featured {
    border-color: rgba(45, 106, 79, 0.5);
    box-shadow: var(--shadow-md), 0 0 30px rgba(45, 106, 79, 0.15);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.06);
}

.room-img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(45, 106, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-price-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(5, 15, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 106, 79, 0.4);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.room-price-tag span {
    color: #a8d5bc;
}

.room-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.room-meta span {
    font-size: 12px;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 4px;
}

.room-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.room-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

.room-amenities li {
    background: rgba(45, 106, 79, 0.2);
    border: 1px solid rgba(45, 106, 79, 0.3);
    color: #a8d5bc;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
}

/* в”Ђв”Ђ Buttons в”Ђв”Ђ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.6);
}

.btn-secondary {
    background: rgba(45, 106, 79, 0.15);
    color: var(--text-white);
    border: 1px solid rgba(45, 106, 79, 0.4);
}

.btn-secondary:hover {
    background: rgba(45, 106, 79, 0.3);
    transform: translateY(-2px);
    border-color: rgba(45, 106, 79, 0.7);
}

/* в”Ђв”Ђ Restaurants в”Ђв”Ђ */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.rest-card {
    text-align: center;
}

.rest-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.rest-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.rest-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.rest-tag {
    display: inline-block;
    background: rgba(45, 106, 79, 0.2);
    border: 1px solid rgba(45, 106, 79, 0.3);
    color: #a8d5bc;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

/* в”Ђв”Ђ SPA в”Ђв”Ђ */
.spa {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.06) 0%, transparent 100%);
}

.spa-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.spa-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.spa-icon {
    font-size: 52px;
    margin-bottom: 20px;
    display: block;
}

.spa-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.spa-list {
    list-style: none;
}

.spa-list li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(45, 106, 79, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.spa-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
}

.spa-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 28px 20px;
}

.feature-card h4 {
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* в”Ђв”Ђ Kids в”Ђв”Ђ */
.kids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.kids-card {
    text-align: center;
}

.kids-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.kids-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.kids-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* в”Ђв”Ђ Offers в”Ђв”Ђ */
.offers {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.06) 0%, transparent 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.offer-card {
    position: relative;
    padding: 36px;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
    margin-top: 8px;
    padding-right: 70px;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-link {
    color: #a8d5bc;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.offer-link:hover {
    color: var(--text-white);
    gap: 10px;
}

/* в”Ђв”Ђ Contact в”Ђв”Ђ */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(45, 106, 79, 0.2);
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
}

.contact-item h4 {
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item a {
    color: #a8d5bc;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: color 0.3s ease;
    display: block;
}

.contact-item a:hover { color: white; }

.contact-item p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 2px;
}

.map-block {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: rgba(45, 106, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(45, 106, 79, 0.25);
}

.map-block p {
    color: var(--text-muted);
    font-size: 15px;
    text-align: center;
    padding: 0 30px;
    line-height: 1.6;
}

/* в”Ђв”Ђ Footer в”Ђв”Ђ */
.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: 64px 24px 32px;
    border-top: 1px solid rgba(45, 106, 79, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-accent-line {
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 16px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover { color: #a8d5bc; }

.footer-column p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--text-faint);
    font-size: 12px;
}

.footer-bottom a {
    color: rgba(45, 106, 79, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--accent-light); }

/* в”Ђв”Ђ Scroll to Top в”Ђв”Ђ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.5);
}

.scroll-top:hover {
    background: var(--accent-light);
    transform: translateY(-4px);
}

.scroll-top.visible { display: flex; }

/* в”Ђв”Ђ Room Detail Pages в”Ђв”Ђ */
.room-hero {
    padding: 140px 24px 60px;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: var(--text-faint);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover { color: #a8d5bc; }

.breadcrumbs span { color: var(--text-faint); margin: 0 8px; }

.room-hero-info { max-width: 780px; }

.room-category-tag {
    display: inline-block;
    background: rgba(45, 106, 79, 0.3);
    border: 1px solid rgba(45, 106, 79, 0.5);
    color: #a8d5bc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.room-hero-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.1;
}

.room-capacity {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 18px;
}

.room-lead {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.room-gallery { padding: 50px 24px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(45, 106, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 14px;
}

.room-details {
    padding: 50px 24px 100px;
    position: relative;
    z-index: 1;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.detail-section { margin-bottom: 32px; }

.detail-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--text-white);
    margin-bottom: 18px;
}

.detail-section p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-tag {
    background: rgba(45, 106, 79, 0.15);
    border: 1px solid rgba(45, 106, 79, 0.25);
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-tag::before {
    content: 'вњ“';
    color: var(--accent-light);
    font-weight: 700;
}

.booking-card { margin-bottom: 28px; }

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.price-block {
    text-align: center;
    padding: 28px;
    background: rgba(45, 106, 79, 0.15);
    border: 1px solid rgba(45, 106, 79, 0.3);
    border-radius: 16px;
    margin-bottom: 24px;
}

.price-label {
    color: var(--text-faint);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 4px;
}

.price-note {
    color: var(--text-faint);
    font-size: 12px;
}

.info-card { margin-bottom: 24px; }

.info-card h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-list { list-style: none; }

.info-list li {
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(45, 106, 79, 0.15);
    display: flex;
    justify-content: space-between;
}

.info-list li strong { color: var(--text-white); }

/* в”Ђв”Ђ Other Rooms в”Ђв”Ђ */
.other-rooms {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.06) 0%, transparent 100%);
    position: relative;
    z-index: 5;
}

.rooms-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* в”Ђв”Ђ Responsive в”Ђв”Ђ */
@media (max-width: 1024px) {
    .nav-menu { gap: 18px; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 38px; }
    .about-content { grid-template-columns: 1fr; }
    .spa-content { grid-template-columns: 1fr; }
    .spa-features { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 15px; }

    .tl-search-row { flex-direction: column; }
    .tl-search-field {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 16px 20px;
    }
    .tl-field-submit { width: 100%; }
    .tl-search-btn {
        width: 100%;
        border-radius: 0 0 18px 18px;
        padding: 18px;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 15, 10, 0.96);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        transform: translateY(-110%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        border-bottom: 1px solid rgba(45, 106, 79, 0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn { display: flex; }
    .cta-button { display: none; }

    .section-title { font-size: 30px; }
    .section-subtitle { font-size: 15px; }
    .rooms-grid, .restaurants-grid, .kids-grid, .offers-grid { grid-template-columns: 1fr; }
    .spa-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .room-hero-info h1 { font-size: 36px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .rooms-slider { grid-template-columns: 1fr; }
    .amenities-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }
    .glass-card { padding: 20px; }
    section { padding: 70px 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-value { font-size: 34px; }
}


/* ══════════════════════════════════════════════
   ПАРК-ОТЕЛЬ ВОЗДВИЖЕНСКОЕ — Дополнительные стили
   ══════════════════════════════════════════════ */

/* ── Navbar brand (new structure) ── */
.nav-brand { display: flex; align-items: center; }
.brand-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800; color: #fff;
    font-family: 'Playfair Display', serif;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 20px; font-weight: 700; color: var(--text-white); font-family: 'Playfair Display', serif; }
.brand-sub { font-size: 11px; font-weight: 500; color: var(--accent-light); text-transform: uppercase; letter-spacing: 2px; }

.nav-btn {
    background: var(--accent); color: var(--text-white) !important;
    padding: 9px 20px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 13px; transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-btn:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ── Hero booking form ── */
.hero-booking {
    margin: 0 auto 32px; max-width: 820px;
    padding: 20px; animation: fadeInUp 0.8s ease 0.4s both;
    position: relative; z-index: 10;
}
.booking-form-row {
    display: flex; align-items: stretch;
    background: var(--glass-bg); border-radius: 16px; overflow: visible;
    flex-wrap: wrap; gap: 0;
}
.booking-field {
    flex: 1; min-width: 140px; padding: 16px 20px;
    cursor: pointer; position: relative; transition: background 0.2s;
    border-radius: 16px;
}
.booking-field:hover { background: var(--glass-hover); }
.guests-field { position: relative; }
.field-label { font-size: 11px; font-weight: 600; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.field-value { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.field-value.filled { color: var(--text-white); }
.booking-divider { width: 1px; background: var(--glass-border); margin: 10px 0; flex-shrink: 0; }
.booking-submit-btn {
    background: var(--accent); color: #fff; border: none; cursor: pointer;
    padding: 14px 28px; border-radius: 12px; margin: 8px 8px 8px 0;
    font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px;
    transition: all 0.3s ease; white-space: nowrap;
}
.booking-submit-btn:hover { background: var(--accent-light); transform: translateY(-1px); }

.guests-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 260px; background: var(--bg-mid); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 16px; z-index: 200; box-shadow: var(--shadow-md);
}
.guests-dropdown.active { display: block; }
.guest-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--glass-border); }
.guest-row:last-child { border-bottom: none; }
.guest-label { font-size: 14px; color: var(--text-muted); }
.guest-counter { display: flex; align-items: center; gap: 16px; }
.counter-btn {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--glass-border);
    background: var(--glass-bg); color: var(--text-white); cursor: pointer;
    font-size: 18px; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.counter-btn:hover { background: var(--accent); border-color: var(--accent); }
.guest-counter span { font-size: 16px; font-weight: 600; color: var(--text-white); min-width: 20px; text-align: center; }

.hero-features {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap; margin-top: 8px;
    animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-feature { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }
.feature-icon { font-size: 20px; }

.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-faint); font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
}
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── Calendar overlay ── */
.calendar-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
}
.calendar-overlay.active { display: flex; }
.calendar-container {
    background: var(--bg-mid); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 24px; min-width: 320px; box-shadow: var(--shadow-lg);
}

/* ── Stats ── */
.stats-section { padding: 60px 24px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 28px 20px; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.stat-item.animated { opacity: 1; transform: translateY(0); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--accent-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── Sections shared ── */
.about-section, .rooms-section, .spa-section, .pools-section,
.kids-section, .offers-section, .weekends-section, .contacts-section {
    padding: 90px 24px; position: relative; z-index: 5;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block; background: rgba(45, 106, 79, 0.2); border: 1px solid rgba(45, 106, 79, 0.4);
    color: var(--accent-light); padding: 5px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--text-white); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-text p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-feature { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--glass-bg); border-radius: 10px; }
.af-icon { font-size: 22px; }
.af-text { font-size: 13px; color: var(--text-muted); }
.about-img-wrapper { position: relative; padding: 0; overflow: hidden; min-height: 300px; }
.img-placeholder { background: linear-gradient(135deg, rgba(45,106,79,0.15), rgba(30,77,56,0.1)); display: flex !important; align-items: center; justify-content: center; }
.img-placeholder::after { content: '🌲'; font-size: 64px; opacity: 0.3; }
.about-img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; }
.about-img-overlay { position: absolute; bottom: 16px; left: 16px; }
.about-badge-tag { display: flex; gap: 8px; }
.about-badge-tag span {
    background: rgba(0,0,0,0.6); color: #fff; padding: 4px 12px;
    border-radius: 20px; font-size: 12px; font-weight: 500;
}
.about-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.info-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px !important; }
.ic-icon { font-size: 24px; flex-shrink: 0; }
.ic-text { display: flex; flex-direction: column; gap: 4px; }
.ic-text strong { font-size: 14px; color: var(--text-white); }
.ic-text span { font-size: 13px; color: var(--text-muted); }

/* ── Rooms ── */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.room-card { padding: 0; overflow: hidden; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.room-card.animated { opacity: 1; transform: translateY(0); }
.room-img-wrapper { position: relative; overflow: hidden; height: 200px; }
.room-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img { transform: scale(1.05); }
.room-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(45,106,79,0.85); color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.room-badge-deluxe { background: rgba(58,133,106,0.85); }
.room-badge-suite { background: rgba(30,77,56,0.9); }
.room-info { padding: 20px 24px 24px; }
.room-title { font-size: 20px; font-weight: 700; color: var(--text-white); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.room-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.room-size, .room-guests, .room-bed { font-size: 12px; color: var(--text-faint); background: var(--glass-bg); padding: 3px 10px; border-radius: 20px; }
.room-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.room-amenities { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.amenity-tag { font-size: 11px; background: rgba(45,106,79,0.2); border: 1px solid rgba(45,106,79,0.3); color: var(--accent-light); padding: 3px 10px; border-radius: 20px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 12px; color: var(--text-faint); }
.price-value { font-size: 20px; font-weight: 700; color: var(--text-white); }
.price-per { font-size: 12px; color: var(--text-faint); }
.room-btn {
    background: var(--accent); color: #fff; padding: 8px 18px;
    border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600;
    transition: all 0.3s ease;
}
.room-btn:hover { background: var(--accent-light); transform: translateY(-1px); }

.rooms-more { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.rooms-extra-link { display: flex; align-items: center; gap: 20px; text-decoration: none; padding: 20px 24px !important; transition: all 0.3s ease; }
.rooms-extra-link:hover { transform: translateY(-4px); }
.re-img-stub { width: 80px; height: 80px; border-radius: 12px; background: linear-gradient(135deg, rgba(45,106,79,0.3), rgba(30,77,56,0.5)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.re-img-stub::after { content: '🛏'; font-size: 28px; }
.re-cottage::after { content: '🏡'; }
.re-info { flex: 1; }
.re-badge { font-size: 11px; background: rgba(45,106,79,0.3); color: var(--accent-light); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 6px; }
.re-badge-cottage { background: rgba(30,77,56,0.4); }
.re-info h4 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.re-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.re-price { font-size: 14px; font-weight: 600; color: var(--accent-light); }
.rooms-cta { text-align: center; }

/* ── Buttons ── */
.btn-primary {
    display: inline-block; background: var(--accent); color: #fff;
    padding: 14px 36px; border-radius: 50px; text-decoration: none;
    font-size: 15px; font-weight: 600; transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45,106,79,0.4);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,79,0.5); }
.btn-accent {
    display: inline-block; background: var(--accent); color: #fff;
    padding: 11px 24px; border-radius: 8px; text-decoration: none;
    font-size: 14px; font-weight: 600; transition: all 0.3s ease;
}
.btn-accent:hover { background: var(--accent-light); }
.btn-outline {
    display: inline-block; background: transparent;
    border: 2px solid rgba(45,106,79,0.5); color: var(--text-white);
    padding: 12px 32px; border-radius: 50px; text-decoration: none;
    font-size: 15px; font-weight: 600; transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }

/* ── SPA ── */
.spa-section { background: linear-gradient(135deg, rgba(45,106,79,0.05) 0%, transparent 60%); }
.spa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.spa-card { text-align: center; padding: 32px 24px !important; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.spa-card.animated { opacity: 1; transform: translateY(0); }
.spa-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.spa-card h3 { font-size: 18px; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.spa-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.spa-included-banner { display: flex; align-items: center; gap: 20px; padding: 24px 32px !important; border-left: 3px solid var(--accent); }
.sib-icon { font-size: 32px; flex-shrink: 0; }
.sib-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sib-text strong { font-size: 16px; color: var(--text-white); }
.sib-text span { font-size: 14px; color: var(--text-muted); }

/* ── Pools ── */
.pools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pool-card { padding: 28px !important; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.pool-card.animated { opacity: 1; transform: translateY(0); }
.pool-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pool-icon { font-size: 36px; }
.pool-badge-tag {
    font-size: 11px; background: rgba(45,106,79,0.25); border: 1px solid rgba(45,106,79,0.4);
    color: var(--accent-light); padding: 4px 12px; border-radius: 20px; font-weight: 600;
}
.pool-badge-summer { background: rgba(255,180,50,0.15); border-color: rgba(255,180,50,0.3); color: #f5c542; }
.pool-badge-winter { background: rgba(100,180,255,0.15); border-color: rgba(100,180,255,0.3); color: #88c8ff; }
.pool-card h3 { font-size: 20px; font-weight: 700; color: var(--text-white); margin-bottom: 12px; }
.pool-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.pool-features { list-style: none; }
.pool-features li { font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; gap: 8px; }
.pool-features li::before { content: '✓'; color: var(--accent-light); font-weight: 700; }

/* ── Kids ── */
.kids-section { background: linear-gradient(135deg, transparent 40%, rgba(45,106,79,0.05) 100%); }
.kids-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kids-card { padding: 28px 24px !important; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.kids-card.animated { opacity: 1; transform: translateY(0); }
.kids-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.kids-card h3 { font-size: 17px; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.kids-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Offers ── */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer-card { padding: 28px 24px !important; position: relative; overflow: hidden; }
.offer-badge-tag {
    display: inline-block; font-size: 11px; background: rgba(45,106,79,0.2);
    border: 1px solid rgba(45,106,79,0.4); color: var(--accent-light);
    padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; font-weight: 600;
}
.offer-badge-spa { background: rgba(100,180,255,0.15); border-color: rgba(100,180,255,0.3); color: #88c8ff; }
.offer-badge-early { background: rgba(255,200,50,0.15); border-color: rgba(255,200,50,0.3); color: #f5c542; }
.offer-discount { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--accent-light); line-height: 1; margin-bottom: 10px; }
.offer-card h3 { font-size: 20px; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.offer-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.offer-code { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.code-value {
    font-size: 18px; font-weight: 700; color: var(--text-white);
    background: rgba(45,106,79,0.2); border: 1px dashed rgba(45,106,79,0.5);
    padding: 8px 16px; border-radius: 8px; letter-spacing: 2px;
}
.copy-code-btn {
    font-size: 12px; background: var(--accent); color: #fff; border: none;
    padding: 8px 14px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: background 0.2s;
}
.copy-code-btn:hover { background: var(--accent-light); }
.offer-btn { display: inline-block; margin-top: 8px; }
.offer-terms { list-style: none; margin-bottom: 16px; }
.offer-terms li { font-size: 13px; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--glass-border); }
.offer-terms li::before { content: '• '; color: var(--accent-light); }

/* ── Weekends ── */
.weekends-section { background: linear-gradient(135deg, rgba(45,106,79,0.05) 0%, transparent 100%); }
.weekends-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.weekend-card { text-align: center; padding: 28px 20px !important; }
.wc-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.weekend-card h4 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.weekend-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Contacts ── */
.contacts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px !important; gap: 12px; }
.cc-icon { font-size: 36px; }
.cc-content h4 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.cc-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.cc-link { font-size: 15px; font-weight: 600; color: var(--accent-light); text-decoration: none; display: block; margin-bottom: 4px; }
.cc-link:hover { color: var(--text-white); }
.booking-cta { display: flex; align-items: center; justify-content: space-between; padding: 32px 40px !important; gap: 24px; }
.bcta-text h3 { font-size: 22px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.bcta-text p { font-size: 15px; color: var(--text-muted); }
.bcta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--glass-border); padding: 60px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px; border-radius: 8px; background: var(--glass-bg);
    border: 1px solid var(--glass-border); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; text-decoration: none; transition: all 0.3s;
}
.social-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-nav h4, .footer-rooms h4, .footer-contacts h4 { font-size: 14px; font-weight: 700; color: var(--text-white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-nav ul, .footer-rooms ul { list-style: none; }
.footer-nav li, .footer-rooms li { margin-bottom: 8px; }
.footer-nav a, .footer-rooms a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover, .footer-rooms a:hover { color: var(--accent-light); }
.fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.fc-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.fc-item a, .fc-item span { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.fc-item a:hover { color: var(--accent-light); }
.footer-book-btn {
    display: inline-block; margin-top: 16px; background: var(--accent); color: #fff;
    padding: 10px 24px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600;
    transition: background 0.3s;
}
.footer-book-btn:hover { background: var(--accent-light); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ── Scroll-to-top ── */
.scroll-top-btn {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    width: 46px; height: 46px; border-radius: 50%; background: var(--accent);
    color: #fff; border: none; cursor: pointer; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--accent-light); }

/* ── Room page styles ── */
.room-hero {
    min-height: 55vh; display: flex; align-items: flex-end;
    padding: 120px 24px 60px; position: relative; z-index: 2;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}
.room-hero-bg { position: absolute; inset: 0; z-index: 0; }
.room-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.room-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,10,0.95) 0%, rgba(5,15,10,0.4) 60%, transparent 100%); }
.room-hero-content { position: relative; z-index: 2; max-width: 800px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.breadcrumbs a { font-size: 13px; color: var(--text-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-light); }
.breadcrumbs span { font-size: 13px; color: var(--text-faint); }
.room-hero-title { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--text-white); margin-bottom: 16px; }
.room-hero-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 8px 16px; border-radius: 20px; }
.meta-icon { font-size: 16px; }
.meta-text { font-size: 14px; color: var(--text-muted); }

.room-detail { padding: 60px 24px; position: relative; z-index: 5; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.room-gallery { margin-bottom: 32px; }
.gallery-main { border-radius: 16px; overflow: hidden; height: 340px; margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-thumb { border-radius: 10px; overflow: hidden; height: 90px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-description h2 { font-size: 24px; font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
.room-description p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.amenity-item::before { content: '✓'; color: var(--accent-light); font-weight: 700; flex-shrink: 0; }

.room-book-card { position: sticky; top: 90px; }
.room-price-block { text-align: center; padding: 24px; background: rgba(45,106,79,0.1); border: 1px solid rgba(45,106,79,0.25); border-radius: 16px; margin-bottom: 20px; }
.rp-label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.rp-value { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--text-white); }
.rp-per { font-size: 14px; color: var(--text-faint); }
.room-book-btn {
    display: block; width: 100%; text-align: center;
    background: var(--accent); color: #fff; padding: 16px;
    border-radius: 12px; text-decoration: none; font-size: 16px; font-weight: 700;
    transition: all 0.3s; margin-bottom: 12px;
}
.room-book-btn:hover { background: var(--accent-light); transform: translateY(-2px); }
.room-conditions { font-size: 13px; color: var(--text-faint); text-align: center; line-height: 1.5; }
.included-banner { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(45,106,79,0.1); border-radius: 10px; border: 1px solid rgba(45,106,79,0.2); margin-top: 16px; }
.ib-icon { font-size: 20px; flex-shrink: 0; }
.ib-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.ib-text strong { color: var(--accent-light); display: block; margin-bottom: 4px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .weekends-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-grid { grid-template-columns: 1fr; }
    .spa-grid { grid-template-columns: repeat(2, 1fr); }
    .kids-grid { grid-template-columns: repeat(2, 1fr); }
    .pools-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .room-detail-grid { grid-template-columns: 1fr; }
    .room-book-card { position: static; }
    .booking-cta { flex-direction: column; text-align: center; }
    .bcta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .section-title { font-size: 32px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .rooms-more { grid-template-columns: 1fr; }
    .kids-grid { grid-template-columns: 1fr; }
    .weekends-grid { grid-template-columns: 1fr 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .booking-form-row { flex-direction: column; }
    .booking-divider { width: auto; height: 1px; margin: 0 10px; }
    .booking-submit-btn { margin: 8px; border-radius: 12px; justify-content: center; }
    .hero-features { gap: 16px; }
    .spa-grid { grid-template-columns: 1fr; }
    .room-hero-title { font-size: 36px; }
    .amenities-list { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   LIGHT THEME OVERRIDE + NAVBAR FIX
   Accent: #ac62d3 (purple) + white/light bg
   ═══════════════════════════════════════════ */

:root {
    --accent: #ac62d3;
    --accent-light: #c27de0;
    --accent-dark: #8a4aab;
    --bg-deep: #ffffff;
    --bg-dark: #f8f4fc;
    --bg-mid: #f0e8f8;
    --text-white: #160a1e;
    --text-muted: rgba(22,10,30,0.68);
    --text-faint: rgba(22,10,30,0.42);
    --glass-bg: rgba(255,255,255,0.92);
    --glass-border: rgba(172,98,211,0.14);
    --glass-hover: rgba(255,255,255,1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
    --accent-glow: 0 0 40px rgba(172,98,211,0.18);
}

body {
    background: #f8f4fc !important;
    color: #160a1e !important;
}

/* ── Navbar light theme ── */
.navbar {
    background: rgba(255,255,255,0.96) !important;
    border-bottom: 1px solid rgba(172,98,211,0.15) !important;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.99) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    border-bottom-color: rgba(172,98,211,0.28) !important;
}

/* ── CRITICAL: Fix navbar flex layout ── */
/* The HTML uses .container directly inside .navbar (not .nav-content) */
.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 24px !important;
    gap: 20px !important;
}

/* Nav brand area */
.nav-brand {
    display: flex !important;
    align-items: center !important;
}
.brand-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
}
.brand-icon {
    background: var(--accent) !important;
    color: #fff !important;
}
.brand-name { color: #160a1e !important; }
.brand-sub { color: var(--accent) !important; }

/* Nav menu */
.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.nav-menu li { list-style: none; }
.nav-link {
    color: rgba(22,10,30,0.65) !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.nav-link::after { background: var(--accent) !important; }

/* Book button */
.nav-btn {
    background: var(--accent) !important;
    color: #fff !important;
}
.nav-btn:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
}

/* Mobile button */
.mobile-menu-btn span { background: #160a1e !important; }

/* ── Light glass cards ── */
.glass-card {
    background: #ffffff !important;
    border: 1px solid rgba(172,98,211,0.1) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
}
.glass-card:hover {
    box-shadow: 0 12px 40px rgba(172,98,211,0.14) !important;
}

/* ── Light sections ── */
.stats { background: #f8f4fc !important; }
.about { background: #ffffff !important; }
.rooms { background: #f8f4fc !important; }

/* ── Footer stays dark ── */
.footer { background: #100618 !important; }
.footer, .footer p, .footer span, .footer a { color: rgba(255,255,255,0.72) !important; }
.brand-icon-footer { background: var(--accent) !important; }

/* ── Hero: light purple gradient ── */
.hero {
    background: none !important;
}
.hero-bg {
    background: linear-gradient(135deg, #fdf9ff 0%, #f5eafd 40%, #ecdbfb 70%, #e2ccf8 100%) !important;
}
.hero-overlay {
    background: none !important;
}
.hero-badge {
    background: rgba(172,98,211,0.1) !important;
    border: 1px solid rgba(172,98,211,0.28) !important;
    color: var(--accent) !important;
}
.badge-star { color: var(--accent) !important; }
.hero-title { color: #160a1e !important; }
.hero-accent { color: var(--accent) !important; }
.hero-subtitle { color: rgba(22,10,30,0.65) !important; }

/* ── Booking form ── */
.hero-booking {
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid rgba(172,98,211,0.18) !important;
    box-shadow: 0 8px 40px rgba(172,98,211,0.12) !important;
}
.field-label { color: var(--accent) !important; }
.field-value { color: #160a1e !important; }
.booking-field:hover { background: rgba(172,98,211,0.05) !important; }
.booking-divider { background: rgba(172,98,211,0.12) !important; }
.booking-submit-btn {
    background: var(--accent) !important;
    color: #fff !important;
}
.booking-submit-btn:hover { background: var(--accent-dark) !important; }
.guests-dropdown {
    background: #ffffff !important;
    border-color: rgba(172,98,211,0.15) !important;
}
.guest-label { color: #160a1e !important; }
.counter-btn {
    background: #f8f4fc !important;
    border-color: rgba(172,98,211,0.15) !important;
    color: #160a1e !important;
}

/* ── Stats ── */
.stat-card { background: #ffffff !important; border-color: rgba(172,98,211,0.1) !important; }
.stat-value { color: var(--accent) !important; }
.stat-label { color: rgba(22,10,30,0.6) !important; }

/* ── Room cards ── */
.room-badge { background: rgba(172,98,211,0.85) !important; }
.room-badge-deluxe { background: rgba(194,125,224,0.85) !important; }
.room-badge-suite { background: rgba(138,74,171,0.9) !important; }
.room-title { color: #160a1e !important; }
.amenity-tag {
    background: rgba(172,98,211,0.12) !important;
    border-color: rgba(172,98,211,0.2) !important;
    color: var(--accent) !important;
}
.price-value { color: #160a1e !important; }

/* ── Section badges/titles ── */
.section-badge {
    background: rgba(172,98,211,0.12) !important;
    border-color: rgba(172,98,211,0.28) !important;
    color: var(--accent) !important;
}
.section-title { color: #160a1e !important; }
.section-subtitle { color: rgba(22,10,30,0.65) !important; }

/* ── Info cards ── */
.ic-text strong { color: #160a1e !important; }
.ic-text span { color: rgba(22,10,30,0.65) !important; }

/* Mobile nav */
.nav-menu-mobile {
    background: rgba(255,255,255,0.99) !important;
    border-top: 1px solid rgba(172,98,211,0.15) !important;
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: flex !important; }
}
