<style>
:root {
            --primary: #e54750;
            --primary-dark: #c23a42;
            --secondary: #2c3e50;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #777;
            --gold: #EC9742;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #fff;
            line-height: 1.6;
            padding-top: 100px; /* Added to prevent content from hiding behind fixed navbar */
        }
        
        /* Enhanced Navigation */
        .navbar {
            background-color: rgba(0, 0, 0, 0.9) !important;
            padding: 0;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-container {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .navbar-brand {
            padding: 0;
            margin-right: 30px;
            position: relative;
            z-index: 1001;
        }
        
        .navbar-brand img {
            height: 80px;
            width: auto;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler {
            border: none;
            font-size: 1.5rem;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 1.1rem 1rem !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--gold) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 70%;
        }
        
        .dropdown-menu {
            background-color: rgba(0, 0, 0, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            padding: 0.5rem 0;
        }
        
        .dropdown-item {
            color: white;
            padding: 0.7rem 1.5rem;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: transparent;
            color: var(--gold);
            padding-left: 2rem;
        }
        
        .btn-book {
            background: transparent;
            color: white;
            border: 2px solid var(--gold);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }
        
        .btn-book:hover {
            background: var(--gold);
            color: black;
        }
        
        /* Responsive adjustments for navbar */
        @media (max-width: 991.98px) {
            body {
                padding-top: 80px; /* Adjusted for smaller navbar on mobile */
            }
            
            .navbar-container {
                flex-wrap: wrap;
                padding: 0.5rem 15px;
            }
            
            .navbar-brand {
                margin-right: auto;
            }
            
            .navbar-brand img {
                height: 65px;
            }
            
            .navbar-collapse {
                background-color: rgba(0, 0, 0, 0.95);
                padding: 1rem;
                margin-top: 0.5rem;
                width: 100%;
            }
            
            .navbar-nav .nav-link {
                padding: 0.7rem 1rem !important;
            }
            
            .dropdown-menu {
                background-color: transparent;
                border: none;
                padding-left: 1.5rem;
            }
            
            .btn-book {
                margin: 1rem 0 0 1rem;
            }
        }
        
        @media (max-width: 575.98px) {
            body {
                padding-top: 70px; /* Further adjustment for very small screens */
            }
            
            .navbar-brand img {
                height: 55px;
            }
        }
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 767px) {
            .hotel-hero {
                height: 80vh;
                min-height: 500px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .btn-hero, .btn-hero-outline {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 575px) {
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
        }
</style>

