  :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;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/c1.jpeg') 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;

            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;
        }