:root {
            --primaryColor: #ad8b3a;
            --secondaryColor: #2c3e50;
            --lightColor: #f8f5f0;
            --darkColor: #222;
            --fontHeading: 'Cormorant Garamond', serif;
            --fontBody: 'Montserrat', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--fontBody);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--fontHeading);
            font-weight: 700;
            color: var(--secondaryColor);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: white;
            padding: 12px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-family: var(--fontHeading);
            font-size: 28px;
            font-weight: 700;
            color: var(--lightColor);
            margin-left: 10px;
        }
        
        .navbar.scrolled .logo-text {
            color: var(--secondaryColor);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--lightColor);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .navbar.scrolled .nav-links a {
            color: var(--secondaryColor);
        }
        
        .nav-links a:hover {
            color: var(--primaryColor);
        }
        
        .book-btn {
            color: #fff !important;
            background-color: var(--primaryColor);
            padding: 10px 20px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .book-btn:hover {
            background-color: #9a7835;
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: transparent;
            border: none;
            font-size: 24px;
            color: var(--lightColor);
            z-index: 1001;
        }
        
        .navbar.scrolled .hamburger {
            color: var(--secondaryColor);
        }
        
        /* Mobile Menu */
        .mobile-menu-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: white;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-hotel-name {
            font-family: var(--fontHeading);
            font-size: 20px;
            color: var(--secondaryColor);
        }
        
        .close-menu {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--secondaryColor);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&h=900&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: #fff;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            color: var(--lightColor);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            background: var(--primaryColor);
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 1rem;
            transition: background 0.3s;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #9a7835;
        }
        
        /* Check Rates Button */
        .check-rates-btn {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99;
            display: none;
        }
        
        /* Search Form */
        .search-container {
            position: absolute;
            bottom: -70px;
            left: 50%;
            transform: translateX(-50%);
            width: 85%;
            max-width: 1000px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            padding: 25px;
            z-index: 100;
        }
        
        .search-form {
            display: flex;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .form-group {
            margin-bottom: 0;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondaryColor);
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: var(--fontBody);
            font-size: 15px;
        }
        
        .counter-controls {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .counter-btn {
            background: #f5f5f5;
            border: none;
            width: 40px;
            height: 100%;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .counter-btn:hover {
            background: #e5e5e5;
        }
        
        .counter-value {
            flex: 1;
            text-align: center;
            padding: 12px 5px;
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            font-family: var(--fontBody);
            font-size: 15px;
        }
        
        .search-btn {
            background-color: var(--primaryColor);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 12px 20px;
            cursor: pointer;
            font-family: var(--fontBody);
            font-weight: 500;
            font-size: 16px;
            align-self: end;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-btn:hover {
            background-color: #9a7835;
        }
        
        .search-btn i {
            margin-right: 8px;
        }
        
        /* Filter Options */
        .filter-options {
            display: none;
            position: absolute;
            bottom: -280px;
            left: 50%;
            transform: translateX(-50%);
            width: 85%;
            max-width: 1000px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            padding: 25px;
            z-index: 100;
        }
        
        .filter-options.active {
            display: block;
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .filter-title {
            text-align: center;
            margin-bottom: 20px;
            color: var(--secondaryColor);
            font-family: var(--fontHeading);
            font-size: 24px;
        }
        
        /* Features Section */
        .features {
            padding: 150px 0 80px;
            background-color: var(--lightColor);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background-color: var(--primaryColor);
            bottom: 0;
            left: 20%;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primaryColor);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
        }
        
        /* Rooms Preview */
        .rooms-preview {
            padding: 80px 0;
        }
        
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .room-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .room-image {
            height: 250px;
            overflow: hidden;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        
        .room-details {
            padding: 20px;
            background: white;
        }
        
        .room-details h3 {
            margin-bottom: 10px;
        }
        
        .room-price {
            color: var(--primaryColor);
            font-weight: 600;
            font-size: 1.2rem;
            margin: 10px 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondaryColor);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .footer-column p, .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--primaryColor);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primaryColor);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .search-form {
                grid-template-columns: 1fr 1fr;
            }
            
            .search-btn {
                grid-column: span 2;
            }
            
            .filter-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 0;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .mobile-menu-header {
                display: flex;
                width: 100%;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-links a {
                color: var(--secondaryColor);
                display: block;
                padding: 15px;
                font-size: 16px;
            }
            
            .search-container {
                display: none;
            }
            
            .check-rates-btn {
                display: block;
            }
            
            .filter-options {
                width: 90%;
                bottom: -300px;
            }
            
            .filter-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .features {
                padding-top: 120px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 22px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }