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

        :root {
            --primary: #c8a97e;
            --primary-dark: #b69669;
            --secondary: #1a1a1a;
            --light: #f8f9fa;
            --dark: #333;
            --white: #fff;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--secondary);
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1.5rem;
        }

        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 60px;
            background-color: var(--primary);
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--gray);
        }

        /* Utility classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--primary-dark);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .text-center {
            text-align: center;
        }

        .section {
            padding: 8rem 0;
            position: relative;
        }

        .section-light {
            background-color: var(--light);
        }

        .section-title {
            margin-bottom: 4rem;
        }

        .section-title h2 {
            display: inline-block;
        }

        .text-center h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: var(--transition);
            background-color: var(--white);
            box-shadow: var(--shadow);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
            transition: var(--transition);
        }

        .logo span {
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2.5rem;
        }

        nav ul li a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding-bottom: 5px;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--secondary);
        }

        /* Rooms */
        .rooms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .room-card {
            background-color: var(--white);
            box-shadow: var(--shadow);
            border-radius: 5px;
            overflow: hidden;
            transition: var(--transition);
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .room-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .room-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .room-card:hover .room-img img {
            transform: scale(1.1);
        }

        .room-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border-radius: 3px;
            font-weight: 500;
        }

        .room-info {
            padding: 2rem;
        }

        .room-price {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 600;
            font-family: 'Playfair Display', serif;
        }

        .room-price span {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 400;
        }

        .room-features {
            display: flex;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }

        .room-feature {
            margin-right: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: var(--gray);
        }

        /* Room Categories */
        .room-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .category-btn {
            background: transparent;
            border: none;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .category-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .category-btn:hover,
        .category-btn.active {
            color: var(--primary);
        }

        .category-btn:hover::after,
        .category-btn.active::after {
            width: 80%;
        }

        /* Page Banner */
        .page-banner {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
        }

        .page-banner h1 {
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .page-banner p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-heading {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
            color: var(--white);
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 40px;
            background-color: var(--primary);
        }

        .footer-about p {
            color: #aaa;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-contact li {
            margin-bottom: 1rem;
            color: #aaa;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            margin-right: 1rem;
            color: var(--primary);
        }


        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .section {
                padding: 6rem 0;
            }
            
            h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background-color: var(--white);
                padding: 2rem;
                transition: var(--transition);
                z-index: 1001;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            nav ul {
                flex-direction: column;
                margin-top: 3rem;
            }
            
            nav ul li {
                margin: 1rem 0;
                margin-left: 0;
            }
            
            nav.active {
                right: 0;
            }
            
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }
            
            .overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 4rem 0;
            }
            
            .rooms {
                grid-template-columns: 1fr;
            }
            
            .page-banner {
                height: 40vh;
            }
        }