
        :root {
            --gold: #C5A059;
            --dark: #0F0F0F;
            --light: #FFFFFF;
            --grey: #F8F8F8;
            --border: #eeeeee;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Inter', sans-serif; background: var(--light); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3, .brand { font-family: 'Playfair Display', serif; }
        a { text-decoration: none; color: inherit; }

        /* --- NAVIGATION --- */
        nav {
            position: fixed; top: 0; width: 100%; padding: 15px 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 2000; background: rgba(15, 15, 15, 0.98); border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .brand { color: var(--gold); font-size: 1.4rem; font-weight: bold; letter-spacing: 2px; }
        .hamburger { cursor: pointer; color: white; z-index: 2001; }
        .nav-menu {
            position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
            background: var(--dark); padding: 100px 10%; display: flex; flex-direction: column;
            gap: 25px; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1999;
        }
        .nav-menu.active { right: 0; }
        .nav-menu a { color: white; font-size: 2rem; border-bottom: 1px solid #222; padding-bottom: 10px; }

        /* --- HERO --- */
        .hero {
            height: 90vh; position: relative; display: flex; align-items: center;
            justify-content: center; color: white; text-align: center; overflow: hidden;
        }
        .hero-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; z-index: -1; object-fit: cover; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
        .hero-content { z-index: 10; padding: 0 20px; }
        .hero h1 { font-size: 3.2rem; margin-bottom: 20px; }
        .btn { display: inline-block; padding: 18px 35px; background: var(--gold); color: var(--dark); font-weight: bold; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; margin-top: 20px; border: none; cursor: pointer; }

        /* --- SECTIONS --- */
        section { padding: 80px 7%; }
        .label { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 10px; display: block; }
        h2 { font-size: 2.4rem; margin-bottom: 30px; }

        /* --- AMENITIES GRID --- */
        .amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; background: var(--grey); }
        .amenity-card { background: white; padding: 30px 20px; text-align: center; border: 1px solid var(--border); }
        .amenity-card i { color: var(--gold); margin-bottom: 15px; }

        /* --- ROOMS --- */
        .room-card { margin-bottom: 40px; background: white; border: 1px solid var(--border); }
        .room-img { width: 100%; height: 300px; background-size: cover; background-position: center; position: relative; }
        .room-price { position: absolute; bottom: 0; right: 0; background: var(--dark); color: var(--gold); padding: 10px 20px; font-weight: bold; }
        .room-info { padding: 25px; }

        /* --- LOUNGE SECTION (DARK) --- */
        .lounge-dark { background: var(--dark); color: white; text-align: center; }
        .lounge-grid { display: grid; gap: 20px; margin-top: 40px; }
        .lounge-box { height: 250px; background-size: cover; background-position: center; border: 1px solid #333; }

        /* --- FAQ (ACCORDION) --- */
        .faq-container { margin-top: 30px; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-header { width: 100%; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1.1rem; }
        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #666; font-size: 0.95rem; }
        .faq-item.active .faq-content { max-height: 200px; padding-bottom: 20px; }
        .faq-item.active i { transform: rotate(45deg); color: var(--gold); }

        /* --- FOOTER --- */
        footer { padding: 60px 7%; background: #050505; color: white; text-align: center; }
        .social-links { display: flex; justify-content: center; gap: 20px; margin: 30px 0; }
        .social-links i { color: var(--gold); }

        @media (min-width: 1024px) {
            .amenities { grid-template-columns: repeat(4, 1fr); }
            .room-flex { display: flex; gap: 20px; }
            .hero h1 { font-size: 5rem; }
        }

        /* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 2000; background: rgba(15, 15, 15, 0.98); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand { color: var(--gold); font-size: 1.4rem; font-weight: bold; letter-spacing: 2px; }
.hamburger { cursor: pointer; color: white; z-index: 2001; }

/* Desktop Navigation - Hidden by default, shown on larger screens */
.desktop-nav {
    display: none;
}

.nav-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--dark); padding: 100px 10%; display: flex; flex-direction: column;
    gap: 25px; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1999;
}
.nav-menu.active { right: 0; }
.nav-menu a { color: white; font-size: 2rem; border-bottom: 1px solid #222; padding-bottom: 10px; }

/* Desktop styles - hide mobile menu, show desktop nav */
@media (min-width: 900px) {
    .hamburger {
        display: none; /* Hide hamburger on desktop */
    }
    
    .nav-menu {
        display: none; /* Hide mobile menu on desktop */
    }
    
    .desktop-nav {
        display: flex; /* Show desktop navigation */
        gap: 40px;
        align-items: center;
    }
    
    .desktop-nav a {
        color: white;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s;
    }
    
    .desktop-nav a:hover {
        color: var(--gold);
    }
    
    .amenities { grid-template-columns: repeat(4, 1fr); }
    .room-flex { display: flex; gap: 20px; }
    .hero h1 { font-size: 5rem; }
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* The clickable/hoverable link */
.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Hidden Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark);
    min-width: 200px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
    z-index: 2100;
    top: 100%;
    left: 0;
    border: 1px solid #333;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show on Hover */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Links */
.dropdown-content a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none !important; /* Remove the mobile underline style */
}

.dropdown-content a:hover {
    background-color: #1a1a1a;
    color: var(--gold);
    }

        /* --- TOP BAR STYLE --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3000; /* Must be higher than nav */
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.top-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: var(--gold);
}

.sign-in-btn {
    font-weight: 600;
}

/* --- ADJUSTING THE MAIN NAV --- */
nav {
    top: 40px !important; /* This matches the height of the top-bar */
}

/* Move mobile menu down too */
.nav-menu {
    padding-top: 140px; /* Adjusted to account for both bars */
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0 20px;
    }
    }

    /* --- HERO BUTTONS LAYOUT --- */
.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

/* Secondary "Ghost" Button */
.btn-outline {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold) !important;
    color: var(--dark) !important;
}

/* Tertiary Link */
.hero-links {
    margin-top: 10px;
}

.link-gold {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Desktop Alignment */
@media (min-width: 900px) {
    .hero-btns {
        flex-direction: row; /* Side by side on desktop */
        justify-content: center;
        gap: 20px;
    }
    
    .hero-links {
        margin-top: 0;
        margin-left: 10px;
    }
    }
    /* --- GALLERY PREVIEW --- */
.gallery-preview {
    padding: 60px 0;
    background: var(--light);
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust based on preference */
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 15px;
    padding: 0 5%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item {
    min-width: 80%; /* Shows partial next image */
    height: 450px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.gallery-nav:hover {
    background: var(--gold);
    color: var(--dark);
}

.prev { left: 20px; }
.next { right: 20px; }

.gallery-footer {
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .gallery-item {
        min-width: 60%; /* Three images partially visible */
    }
}

/* --- LOCATION SECTION (DARK) --- */
.location-section {
    padding: 100px 7%;
    background: var(--dark); /* Dark background */
    color: white;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.location-content h2 {
    margin-bottom: 20px;
    color: white; /* Ensure heading is visible */
}

.location-content p {
    color: rgba(255,255,255,0.7); /* Softer white for readability */
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--gold); /* Gold subheaders for a premium look */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.9rem;
    color: #ccc; /* Light grey text */
}

/* Map Styling */
.map-wrapper {
    height: 450px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1); /* Subtle border */
    position: relative;
    background: #111;
}

/* Dark Map Filter */
.map-wrapper iframe {
    filter: grayscale(1) invert(0.92) contrast(1.2); /* Makes the map dark/gold-friendly */
}

/* Desktop Layout */
@media (min-width: 900px) {
    .location-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-wrapper {
        height: 550px;
    }
}

/* --- ROOM CARD ENHANCEMENTS --- */
.room-card {
    display: block; /* Makes the entire anchor area clickable */
    text-decoration: none;
    color: inherit;
    background: white;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Clips the scaling image */
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-10px); /* Lifts the card up */
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.room-img {
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.05); /* Subtle zoom effect on the photo */
}

.room-info h3 {
    transition: color 0.3s;
}

.room-card:hover h3 {
    color: var(--gold); /* Title turns gold on hover */
}

/* Added a "Book Now" text indicator */
.book-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
}

/* Ensure images don't break flex on desktop */
@media (min-width: 1024px) {
    .room-card {
        flex: 1;
        margin-bottom: 0;
    }
}

.booking-benefits {
    display: flex;
    justify-content: space-around;
    padding: 30px 7%;
    background: var(--dark);
    border-top: 1px solid #222;
    flex-wrap: wrap;
    gap: 20px;
}
.benefit-item {
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefit-item i { color: var(--gold); }

.top-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 3px;
    align-items: center;
}

/* This makes the gold really pop against the black bar */
.stars i {
    display: block;
    filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.2));
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobile Tweak: Ensure it doesn't get squashed */
@media (max-width: 600px) {
    .rating-text {
        font-size: 0.6rem;
    }
    .stars {
        gap: 1px;
    }
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--grey);
    padding: 100px 7%;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.quote-icon {
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-info strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
}

.guest-info span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

/* Desktop Layout */
@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
                
        body {zoom: 0.8;}
