        :root {
            --size: 46px;
            --gold: #d4af37;
            --navy: #e7ecf6;
            --navy-light: #1e3154;
            --white: #ffffff;

            --cream: #f8f5f0;
            --dark: #1a1a1a;
        }

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

        body {
            font-family: "Playfair Display", serif;
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
            color: var(--dark);
        }

        /* NAVBAR */
        .nav-wrapper {
            width: 90%;
            margin: 15px auto;
            background-color: #e7ecf6;
            padding: 5px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            top: 15px;
            z-index: 9999;
            border-radius: 100px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .logo img {
            height: 52px;
        }

        .menu-container {
            display: flex;
            align-items: center;
            background: var(--navy-light);
            padding: 12px;
            border-radius: 60px;
            gap: 14px;
        }

        .menu-item {
            width: var(--size);
            height: var(--size);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: .35s;
            overflow: hidden;
            white-space: nowrap;
        }

        .menu-item.active {
            width: 140px;
            background: var(--gold);
            color: var(--navy);
            border: none;
        }

        .menu-item.active .label {
            display: inline-block !important;
        }

        .menu-item:not(.active) .label {
            display: none !important;
        }

        .mobile-toggle {
            font-size: 32px;
            color: white;
            cursor: pointer;
            display: none;
        }

        .mobile-toggle i {
            transition: transform 0.3s ease;
        }

        .mobile-toggle i:hover {
            transform: scale(1.1);
        }

        /* Show toggle on mobile */
        @media (max-width: 900px) {
            .mobile-toggle {
                display: block;
            }

            .menu-container {
                display: none;
            }
        }

        /* MOBILE DROPDOWN — FIXED & TRANSPARENT */
        .mobile-menu {
            position: fixed;
            top: 80px;
            /* below navbar */
            left: 50%;
            transform: translateX(-50%);
            width: 85%;
            display: none;
            flex-direction: column;


            text-align: center;
            border-radius: 25px;
            z-index: 99999;

            /* GLASS EFFECT */
            background: rgba(2, 50, 133, 0.45);

            border: 1px solid rgba(255, 255, 255, 0.2);

            animation: fadeIn 0.3s ease-out;
            margin-top: 20px;
            width: 80%;
        }

        .mobile-menu a {
            color: var(--white);
            font-size: 1.4rem;
            text-decoration: none;
            padding: 10px 0;
        }

        /* Fade animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -10px);
            }

            to {
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }

        @media(max-width: 900px) {
            .menu-container {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }
        }

        .mobile-toggle {
            display: none;
            font-size: 34px;
            color: var(--gold) !important;
            /* GOLD COLOR */
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .mobile-toggle i {
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* When active → show golden X */
        .mobile-toggle.active .bi-list {
            display: none;
        }

        .mobile-toggle.active::before {
            content: "\f659";
            /* Bootstrap X icon */
            font-family: "bootstrap-icons";
            font-size: 34px;
            color: var(--gold) !important;
            font-weight: bold;
        }

        /* Hover effect */
        .mobile-toggle:hover {
            transform: scale(1.1);
        }

        @media (max-width: 900px) {
            .mobile-toggle {
                display: block;
            }
        }

        /* BOOK NOW BUTTON – LARGE SCREENS ONLY */
        .book-now-btn-desktop {
            background: var(--gold);
            color: #000;
            padding: 10px 32px;
            border-radius: 50px;
            font-family: "Cinzel", serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-decoration: none;
            margin-left: 20px;
            transition: all 0.4s ease;
            white-space: nowrap;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .book-now-btn-desktop:hover {
            background: #e6c557;
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
        }

        /* Hide on mobile */
        @media (max-width: 900px) {
            .book-now-btn-desktop {
                display: none !important;
            }
        }

        /* Mobile Book Now (already in your menu) */
        .mobile-book-now {
            background: var(--gold) !important;
            color: #000 !important;
            padding: 16px !important;
            font-family: "Cinzel", serif !important;
            font-weight: 700 !important;
            border-radius: 0 0 20px 20px !important;
            text-align: center;
            font-size: 1.2rem !important;
        }


        /* --- THEME TOGGLE --- */
        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            /* background: var(--navy-light); */
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 15px;
        }

        .theme-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
            transform: rotate(15deg);
        }

        /* --- DARK MODE VARIABLES --- */
        body.dark-mode {
            --white: #121212;
            --navy: #e7ecf6;

            /* We want dark background for body */
            --white: #1a1a1a;

            /* We want text to be light */
            --dark: #f0f0f0;
        }

        /* Dark Mode Overrides */
        body.dark-mode {
            background-color: #121212;
            color: #e0e0e0;
        }

        body.dark-mode .nav-wrapper {
            background-color: #1e1e1e;
            /* Dark navbar */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }

        body.dark-mode .menu-container {
            background: #2d2d2d;
        }

        body.dark-mode .menu-item {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .menu-item.active {
            background: var(--gold);
            color: #121212;
        }

        /* Ensure text in navbar is visible in dark mode */
        body.dark-mode .theme-toggle {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Profile Icon in dark mode */
        body.dark-mode .profile-icon-desktop i {
            color: #fff !important;
        }

        body.dark-mode #navProfileIcon i {
            color: #fff !important;
        }

        /* Card overrides */
        body.dark-mode .room-card,
        body.dark-mode .feature-box,
        body.dark-mode .info-card {
            background-color: #1e1e1e;
            color: #e0e0e0;
            border: 1px solid #333;
        }