/* ============================================================
   HILL CREST BANGALOW — DESIGN SYSTEM
   Colonial Sri Lankan "Wallawa" aesthetic: verdigris jungle green,
   whitewashed stucco, brass hardware, terracotta roof tile.
   Signature motif: carved-fretwork lattice, referenced directly
   in the site's own "Discover" copy.
   ============================================================ */

:root {
    /* Color tokens */
    --ink: #1b201a;
    --jungle: #1f3b2e;
    --jungle-deep: #162a21;
    --stucco: #f4efe1;
    --ivory: #fffdf8;
    --brass: #b8924f;
    --brass-light: #d8b877;
    --terracotta: #a85c3d;
    --teal: #3c6e71;
    --muted: #6b6b60;
    --line: rgba(27, 32, 26, 0.1);

    /* Type tokens */
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Work Sans', 'Segoe UI', sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --speed: 0.45s;

    /* Layout */
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(22, 42, 33, 0.1);
    --shadow-lift: 0 20px 45px rgba(22, 42, 33, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

::selection { background: var(--brass); color: var(--ivory); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}

/* ============================================================
   FRETWORK SIGNATURE MOTIF
   ============================================================ */
.fretwork-divider {
    height: 26px;
    width: 100%;
    background-image:
        linear-gradient(45deg, var(--brass) 25%, transparent 25%, transparent 75%, var(--brass) 75%),
        linear-gradient(45deg, var(--brass) 25%, transparent 25%, transparent 75%, var(--brass) 75%);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 35%, black 65%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 35%, black 65%, transparent);
}
.fretwork-divider.dark { opacity: 0.22; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(31, 59, 46, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 50px;
    color: var(--ivory);
    position: sticky;
    top: 0;
    z-index: 500;
    transition: box-shadow var(--speed) var(--ease), padding var(--speed) var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 8px 50px;
}

.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img {
    height: 60px;
    width: auto;
    cursor: pointer;
    transition: transform var(--speed) var(--ease);
}
.navbar.scrolled .logo img { height: 46px; }
.logo a:hover img { transform: scale(1.05); }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 34px; }
.nav-links a {
    position: relative;
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 6px;
    transition: color var(--speed) var(--ease);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brass-light);
    transition: width var(--speed) var(--ease);
}
.nav-links a:hover, .active-link { color: var(--brass-light) !important; }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 600;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ivory);
    border-radius: 2px;
    transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

footer {
    text-align: center;
    padding: 26px 20px;
    background-color: var(--jungle-deep);
    color: rgba(255, 253, 248, 0.75);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

/* ============================================================
   SCROLL-REVEAL UTILITY
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.4s; }

/* ============================================================
   HOME PAGE — HERO SLIDER
   ============================================================ */
/* HOME PAGE STYLES */
.slider-container { 
    position: relative; 
    width: 100%; 
    height: 80vh; 
    overflow: hidden; 
}

.slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

.slide.active { 
    opacity: 1; 
    z-index: 1; 
}

/* අලුතින් එකතු කළ <img> ටැග් එක සඳහා */
.slide-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* පින්තූරය පිටිපස්සට යැවීම */
}

/* අලුතින් එකතු කළ ශේඩ් එක සඳහා (Gradient Overlay) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(22,42,33,0.55), rgba(22,42,33,0.55));
    z-index: -1; /* පින්තූරයට උඩින්, අකුරු වලට යටින් */
}

.slide-content { 
    position: relative; /* අකුරු උඩින්ම පෙනෙන්න */
    z-index: 1;
    color: white; 
    max-width: 800px; 
    padding: 20px; 
}

.slide-content h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

.slide-content p { 
    font-size: 1.1rem; 
    line-height: 1.6; 
    font-weight: 300; 
    margin-bottom: 30px; /* Added spacing for the button */
}

/* Slide Button */
.slide-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brass-light), var(--brass));
    color: var(--jungle-deep);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(184, 146, 79, 0.4);
}

/* DISCOVER SECTION */
.discover-section {
    display: flex;
    width: 100%;
    min-height: 440px;
    flex-wrap: wrap;
}
.discover-content {
    flex: 1 1 420px;
    padding: 80px 70px;
    background-color: var(--stucco);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.discover-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--jungle);
    margin-bottom: 18px;
}
.discover-content .fretwork-divider { width: 90px; margin-bottom: 22px; }
.discover-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}
.discover-image {
    flex: 1 1 420px;
    overflow: hidden;
    position: relative;
}
.discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease);
}
.discover-image:hover img { transform: scale(1.06); }

/* ============================================================
   PAGE HEADER (Areas / Rooms)
   ============================================================ */
.page-header {
    background: linear-gradient(rgba(22, 42, 33, 0.82), rgba(22, 42, 33, 0.88)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/></svg>');
    background-color: var(--jungle);
    color: var(--ivory);
    text-align: center;
    padding: 90px 20px 70px;
    position: relative;
}
.page-header h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.page-header p { font-size: 1.05rem; color: rgba(255,253,248,0.75); }

/* ============================================================
   AREAS INFORMATION PAGE
   ============================================================ */
.areas-section { padding: 70px 50px 90px; background-color: var(--ivory); }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-card {
    background-color: var(--ivory);
    padding: 32px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brass), var(--terracotta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--speed) var(--ease);
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-color: transparent;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--jungle);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
}
.category-card ul { list-style: none; }
.category-card ul li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.95rem;
    transition: padding-left var(--speed) var(--ease), color var(--speed) var(--ease);
}
.category-card ul li:hover { padding-left: 6px; color: var(--ink); }
.category-card ul li:last-child { border-bottom: none; }
.category-card ul li span:last-child {
    font-weight: 600;
    color: var(--brass);
    white-space: nowrap;
}

/* ============================================================
   CONTACT DETAILS PAGE
   ============================================================ */
.contact-section { padding: 80px 50px; background-color: var(--stucco); }
.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--ivory);
    box-shadow: var(--shadow-lift);
    border-radius: var(--radius);
    overflow: hidden;
}
.map-box { flex: 1 1 400px; min-height: 420px; filter: saturate(0.9); }
.info-box { flex: 1 1 400px; padding: 56px 50px; }
.info-box h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: 2.1rem;
    color: var(--jungle);
    margin-bottom: 18px;
}
.info-box p { color: var(--muted); line-height: 1.85; margin-bottom: 30px; text-align: justify; }
.contact-list { list-style: none; }
.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.02rem;
    color: var(--ink);
    transition: transform var(--speed) var(--ease);
}
.contact-list li:hover { transform: translateX(6px); }
.contact-icon {
    width: 22px;
    height: 22px;
    margin-right: 16px;
    padding: 9px;
    background: var(--stucco);
    border-radius: 50%;
    box-sizing: content-box;
}
.whatsapp-link { color: var(--teal); text-decoration: none; font-weight: 700; border-bottom: 1px solid transparent; transition: border-color var(--speed); }
.whatsapp-link:hover { border-color: var(--teal); }

.feedback-section { padding: 80px 50px; background-color: var(--ivory); text-align: center; }
.feedback-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--jungle);
    margin-bottom: 34px;
    font-size: 2rem;
}
.feedback-box {
    max-width: 620px;
    margin: 0 auto;
    background: var(--stucco);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: left;
}
.input-group { margin-bottom: 22px; width: 100%; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--jungle); font-size: 0.92rem; letter-spacing: 0.02em; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--ink);
    transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 4px rgba(184, 146, 79, 0.16);
}

.submit-btn, .book-btn {
    background: linear-gradient(135deg, var(--teal), #2f5a5d);
    color: var(--ivory);
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.submit-btn:hover, .book-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(60, 110, 113, 0.35); }
.submit-btn:active, .book-btn:active { transform: translateY(-1px); }

/* Ripple effect (JS adds .ripple span) */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: ripple-anim 0.6s var(--ease);
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(3); opacity: 0; }
}

/* ============================================================
   ROOMS & BOOKING PAGE
   ============================================================ */
.gallery-section { padding: 80px 50px 30px; background-color: var(--ivory); text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    max-width: 1050px;
    margin: 0 auto 36px auto;
}
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.5s var(--ease), box-shadow var(--speed) var(--ease), filter var(--speed) var(--ease);
    box-shadow: var(--shadow-soft);
}
.gallery-img:hover { transform: scale(1.045) translateY(-4px); box-shadow: var(--shadow-lift); filter: brightness(1.04); }

.room-info {
    background: linear-gradient(135deg, var(--brass-light), var(--brass));
    color: var(--jungle-deep);
    display: inline-flex;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.02rem;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 90px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(15, 24, 19, 0.93);
    animation: fade-in 0.3s var(--ease);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
    margin: auto;
    display: block;
    max-width: 82%;
    max-height: 78vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: modal-zoom 0.35s var(--ease);
}
@keyframes modal-zoom { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.close-modal {
    position: absolute;
    top: 26px; right: 44px;
    color: var(--ivory);
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
    transition: transform var(--speed) var(--ease), color var(--speed) var(--ease);
}
.close-modal:hover { transform: rotate(90deg); color: var(--brass-light); }

.facilities-section { padding: 70px 20px 90px; background-color: var(--stucco); text-align: center; }
.facilities-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--jungle);
    margin-bottom: 46px;
}
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.fac-card {
    background: var(--ivory);
    padding: 32px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.fac-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.fac-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--stucco);
    border-radius: 50%;
    box-sizing: content-box;
    transition: transform var(--speed) var(--ease);
}
.fac-card:hover .fac-icon { transform: rotate(-8deg) scale(1.08); }
.fac-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--jungle);
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 1.15rem;
}
.fac-card ul { list-style: none; padding-left: 2px; }
.fac-card ul li { padding: 6px 0; color: var(--muted); font-size: 0.95rem; }
.fac-card ul li::before { content: "◆"; color: var(--brass); font-size: 0.6rem; margin-right: 12px; vertical-align: middle; }

/* Booking Section */
/* Added an ID to scroll to this specific section */
#booking-form-section {
    scroll-margin-top: 80px; /* Offset for sticky navbar */
}
.booking-section { padding: 80px 20px 90px; background: var(--ivory); text-align: center; }
.booking-section h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--jungle);
    margin-bottom: 36px;
}
.booking-container {
    display: flex;
    max-width: 1050px;
    margin: 0 auto;
    gap: 36px;
    text-align: left;
    flex-wrap: wrap;
}
.booking-form {
    flex: 2 1 420px;
    background: var(--stucco);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.booking-form h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--jungle) !important;
    margin-bottom: 15px;
}
.form-row { display: flex; gap: 20px; margin-bottom: 6px; flex-wrap: wrap; }
.form-row .input-group { flex: 1 1 200px; }
.occupancy-section { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); }
.occupancy-section > label { font-weight: 700; color: var(--jungle); display: block; margin-bottom: 15px; }
.occupancy-inputs { display: flex; gap: 20px; flex-wrap: wrap; }
.occ-box { flex: 1 1 100px; }
.occ-box label { font-size: 0.88rem; color: var(--muted); display: block; margin-bottom: 6px; }
.occ-box input {
    width: 100%; padding: 11px; border: 1.5px solid var(--line);
    border-radius: var(--radius-sm); font-size: 1rem; background: var(--ivory);
    transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.occ-box input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(184, 146, 79, 0.16); }

.booking-summary {
    flex: 1 1 300px;
    background: linear-gradient(160deg, var(--jungle), var(--jungle-deep));
    color: var(--ivory);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lift);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 280px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.booking-summary h3 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--brass-light);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 12px;
}
.summary-details p { margin-bottom: 11px; font-size: 0.95rem; }
.summary-details hr { border: 0; border-top: 1px solid rgba(255,255,255,0.15); margin: 15px 0; }
.highlight { font-size: 1.1rem; color: var(--brass-light); }
.action-buttons { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.clear-btn {
    background: transparent;
    color: var(--ivory);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.clear-btn:hover { background: rgba(168, 92, 61, 0.25); border-color: var(--terracotta); }
.book-btn { background: linear-gradient(135deg, var(--brass-light), var(--brass)); color: var(--jungle-deep); }
.book-btn:hover { box-shadow: 0 12px 24px rgba(184, 146, 79, 0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .navbar { padding: 14px 22px; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: var(--jungle-deep);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        transform: translateX(100%);
        transition: transform var(--speed) var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { margin: 16px 0; }

    .discover-content, .info-box { padding: 50px 30px; }
    .contact-section, .areas-section, .feedback-section, .gallery-section, .facilities-section, .booking-section { padding-left: 22px; padding-right: 22px; }
    .booking-summary { position: static; }
}

@media (max-width: 560px) {
    .slider-container { height: 78vh; }
    .slide-content h1 { font-size: 2rem; letter-spacing: 0.03em; }
    .scroll-cue { display: none; }
    .room-info { gap: 12px; padding: 14px 20px; font-size: 0.9rem; }
    .close-modal { top: 14px; right: 20px; font-size: 30px; }
}
