        :root {
            --primary-color: #8E793E; /* Luxury gold color */
            --secondary-color: #2C3E50; /* Deep blue-gray */
            --accent-color: #D4AF37; /* Gold accent */
            --hotel-primary: #1e3a8a;
            --hotel-secondary: #d4af37;
            --hotel-light: #f8f9fa;
            --hotel-dark: #343a40;
        }
        body {
            background-color: #f5f5f5;
            overflow-x: hidden;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
        }
           /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 2rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transition: all 0.3s ease;
            z-index: 1000;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
        }
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
         .body .scrolled
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 80px;
            width: 130px;
            margin-right: 10px;
            border-radius: 90px;
        }
        .logo a {
            color: #333;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin-bottom: 0;
        }
        .nav-links li {
            position: relative;
            padding: 0 1.5rem;
            color: #f0c011;
        }
        .nav-links a {
            color: #f0c011;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 0.5rem 0;
        }
        .nav-links a:hover {
            color: blue;
        }
        /* Primary dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 1;
            list-style: none;
            padding-left: 0;
        }
        .dropdown li {
            padding: 0;
            position: relative;
        }
        .dropdown a {
            padding: 0.7rem 1rem;
            color: #333;
        }
        .dropdown a:hover {
            background-color: #f0c011;
            color: white;
        }
        /* Show primary dropdown on hover */
        .has-dropdown:hover > .dropdown {
            display: block;
        }
        /* Secondary dropdown (nested) */
        .secondary-dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            width: 200px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 2;
            list-style: none;
            padding-left: 0;
        }
        /* Show secondary dropdown on hover */
        .has-secondary-dropdown:hover > .secondary-dropdown {
            display: block;
        }
        /* Dropdown indicators */
        .has-dropdown > a::after {
            content: '▼';
            font-size: 0.6rem;
            margin-left: 5px;
        }
        .has-secondary-dropdown > a::after {
            content: '►';
            font-size: 0.6rem;
            margin-left: 5px;
            float: right;
        }
        .buttons {
            display: flex;
            gap: 1rem;
        }
        .btn {
            padding: 0.5rem 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
        }
        .btn-primary {
            background-color: #f0c011;
            color: white;
        }
        .btn-primary a:hover {
            color: white;
        }
        .btn-secondary {
            background-color: #f0c011;
            color: rgba(27, 102, 215, 0.879);
            border: 2px solid #f0c011;
        }
        .btn-secondary a {
            text-decoration: none;
            color: #333;
        }
        .btn-secondary a:hover {
            color: white;
        }
        .btn:hover {
            background-color: rgba(27, 102, 215, 0.879);
            color: white;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #f0c011;
        }

        /* Carousel Styles */
        .carousel {
            height: 100vh;
            margin-top: 0;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
        }

        .carousel-inner {
            height: 100%;
        }

        .carousel-item {
            height: 100vh;
            min-height: 300px;
            background: no-repeat center center scroll;
            background-size: cover;
        }

        .carousel-caption {
            bottom: 20%;
            z-index: 10;
            padding-top: 20px;
            padding-bottom: 20px;
            color: #fff;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .carousel-caption h2 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
            font-family: "Tinos", serif;
            font-weight: 400;
            font-style: normal;
        }

        .carousel-caption p {
            font-size: 1.5rem;
            font-weight: 400;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
            font-variation-settings:
                "wdth" 100,
                "GRAD" 0;
                    
        }
        .carousel-caption .btn {
            font-size: 1.25rem;
            padding: 10px 30px;
            border-radius: 3px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .carousel-control-prev, .carousel-control-next {
            width: 5%;
            opacity: 0.8;
        }

        .carousel-indicators {
            bottom: 30px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            background-color: rgba(255, 255, 255, 0.7);
        }

        .carousel-indicators button.active {
            background-color: #fff;
            transform: scale(1.2);
        }

        /* Booking Section Styles */
        #booking-section {
            background-color: rgb(255, 255, 255);
            padding: 2rem 0;
            box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 100;
            margin-top: -40px; /* Make it overlap with carousel */
            border-radius: 10px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
        }

        #booking-form {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .input-group {
            position: relative;
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }

        .date-picker, .guest-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: none;
            background-color: white;
            color: #333;
            font-size: 1rem;
            outline: none;
        }

        .input-group-text {
            padding: 0.75rem;
            cursor: pointer;
        }

        .dropdown-icon {
            color: #f0c011;
        }

        .check-button {
            width: 100%;
            padding: 1rem 1rem; /* Increased height */
            background-color: #f0c011;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            height: 60px; /* Explicitly setting height */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .check-button:hover {
            background-color: rgba(27, 102, 215, 0.879);
        }

        .btn-container {
            margin-top: 1.6rem;
        }

        /* Custom styling for flatpickr */
        .flatpickr-calendar {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        .flatpickr-day.selected {
            background: #f0c011;
            border-color: #f0c011;
        }

        .flatpickr-day.selected:hover {
            background: #e0b000;
            border-color: #e0b000;
        }

        /* Responsive styles */
        @media screen and (max-width: 992px) {
            #booking-section {
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
                transform: none;
            }
        }
        
        @media screen and (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
                padding: 0.5rem 1rem;
            }
            
            .logo img {
                height: 60px;
                width: 100px;
            }
            
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding-top: 1rem;
                background-color: rgba(255, 255, 255, 0.95);
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .nav-links li {
                width: 100%;
                padding: 0.5rem 0;
                text-align: center;
            }
            
            .dropdown {
                position: static;
                width: 100%;
                box-shadow: none;
                background-color: #f8f8f8;
                margin-left: 0;
                display: none;
            }
            
            .dropdown.show {
                display: block;
            }
            
            .secondary-dropdown {
                position: static;
                width: 100%;
                box-shadow: none;
                background-color: #f0f0f0;
                margin-left: 0;
            }
            
            .secondary-dropdown.show {
                display: block;
            }
            
            .buttons {
                margin: 1rem auto;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .buttons .btn {
                width: 45%;
            }

            .carousel-caption h2 {
                font-size: 2rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
            
            .carousel-caption {
                bottom: 15%;
                padding: 10px;
            }

            #booking-section {
                margin-top: -60px;
                max-width: 95%;
                padding: 1.5rem 0;
            }
            
            .form-group {
                margin-bottom: 1.5rem;
            }

            .btn-container {
                margin-top: 0;
            }
            
            .check-button {
                height: 50px;
            }
        }
        
        @media screen and (max-width: 576px) {
            .carousel-caption h2 {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .carousel-caption .btn {
                font-size: 1rem;
                padding: 8px 20px;
            }
            
            #booking-section {
                margin-top: -40px;
                border-radius: 8px;
            }
            
            .buttons .btn {
                width: 100%;
            }
        }
        /*hotel footer*/
      .hotel-footer {
            background-color: #111111;
            color: #a0a0a0;
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: normal;
            font-style: normal;
        }
        .footer-content {
            position: relative;
            z-index: 2;
        }
        .footer-heading {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links li a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .footer-links li a:hover {
            color: #ffaa00;
        }
        .background-text {
            position: absolute;
            bottom: -100px;
            left: 0;
            right: 0;
            font-size: 20rem;
            font-weight: bold;
            color: rgba(255,255,255,0.02);
            z-index: 1;
            text-align: center;
            user-select: none;
            line-height: 0.8;
        }
        .logo-container {
            margin-bottom: 1.5rem;
        }
        .logo {
            max-width: 180px;
        }
        .intro-text {
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 500px;
        }
        .email-form {
            position: relative;
            max-width: 400px;
            margin-bottom: 2rem;
        }
        .email-input {
            width: 100%;
            background-color: #222;
            border: none;
            color: white;
            padding: 0.75rem 1rem;
            padding-right: 3rem;
            font-size: 0.9rem;
        }
        .email-input:focus {
            outline: none;
            background-color: #333;
        }
        .submit-btn {
            position: absolute;
            right: 0;
            top: 0;
            background: none;
            border: none;
            color: #ffaa00;
            height: 100%;
            width: 3rem;
            font-size: 1.2rem;
            cursor: pointer;
        }
        .submit-btn:hover {
            color: white;
        }
        .social-icons {
            display: flex;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }
        .social-icons a {
            color: #a0a0a0;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: #ffaa00;
        }
        .location-heading {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            font-weight: 500;
        }
        .location-address {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        .location-contact {
            margin-bottom: 2rem;
        }
        .copyright-bar {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
        }
        @media (max-width: 767px) {
            .footer-column {
                margin-bottom: 2.5rem;
            }
            .background-text {
                font-size: 10rem;
            }
        }
        
     