
        /* Base Styles */
        :root {
            --wood-dark: #3a2716;
            --wood-medium: #5e3c19;
            --wood-light: #8b5a2b;
            --parchment: #f5e8c9;
            --candlelight: #ffaa33;
            --candlelight-glow: rgba(255, 170, 51, 0.3);
            --iron: #5a5a5a;
            --text-dark: #2a1a0f;
            --text-light: #f5e8c9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant', serif;
            color: var(--text-dark);
            background-color: var(--parchment);
            line-height: 1.6;
            background-image: url('https://www.transparenttextures.com/patterns/old-map.png');
        }

        h1, h2, h3, h4 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Navigation */
        nav {
            background-color: var(--wood-dark);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--wood-light);
        }

        nav ul {
            width: 100%;
            list-style: none;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0 20px;
        }

        nav li {
            height: 60px;
        }

        nav a {
            height: 100%;
            padding: 0 25px;
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        nav a:hover {
            background-color: var(--wood-light);
            color: var(--candlelight);
        }

        .logo {
            margin-right: auto;
            font-size: 1.3rem;
        }

        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--candlelight);
        }
        .sidebar {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 250px;
            z-index: 999;
            background-color: var(--wood-dark);/* Semi-transparent deep green */
            box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            backdrop-filter: blur(5px);
        }
        
        .sidebar li {
            width: 100%;
        }
        
        .sidebar a {
            width: 100%;
        }
        
    

        .menu-button {
            display: none;
            font-size: 1.5rem;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            background-image: url('hotel1.jpg');
            background-size: cover;
            background-position: top;
            background-attachment: fixed;
            color: var(--text-light);
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(255,170,51,0.05) 0%, rgba(58,39,22,0.7) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
            animation: fadeIn 1.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #hero h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            color: var(--text-light);
        }

        .tagline {
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-style: italic;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--candlelight);
            background-color: var(--candlelight);
            color: var(--wood-dark);
            font-family: 'Cinzel', serif;
            letter-spacing: 1px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--candlelight);
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }

        /* Common Section Styles */
        section {
            padding: 80px 20px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--wood-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--wood-light);
        }

        .section-subtitle {
            font-style: italic;
            color: var(--wood-medium);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Rooms Section */
        #rooms {
            background-color: var(--parchment);
            background-image: url('https://www.transparenttextures.com/patterns/paper.png');
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .room-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--wood-light);
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .room-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .room-card:hover .room-image img {
            transform: scale(1.1);
        }

        .room-content {
            padding: 20px;
        }

        .room-content h3 {
            color: var(--wood-dark);
            margin-bottom: 10px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .room-content h3 i {
            color: var(--candlelight);
        }

        .room-description {
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .room-price {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            color: var(--wood-dark);
        }

        .coin {
            color: gold;
            font-size: 1.2rem;
        }

        .silver-coin {
            color: silver;
            font-size: 1.1rem;
        }

        /* Tavern Menu Section */
        #menu {
            background-color: var(--wood-medium);
            color: var(--text-light);
            background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
        }
        #menu p{
            color: var(--text-light);
            font-weight: 600;
        }
        #menu .section-header h2 {
            color: var(--candlelight);
        }

        #menu .section-header h2::after {
            background-color: var(--candlelight);
        }

        .menu-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-category {
            background-color: rgba(245, 232, 201, 0.1);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid var(--wood-light);
            backdrop-filter: blur(5px);
        }

        .menu-category h3 {
            color: var(--candlelight);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--candlelight);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-item {
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
        }

        .menu-item:last-child {
            margin-bottom: 0;
        }

        .item-name {
            font-weight: 600;
        }

        .item-price {
            color: var(--candlelight);
            font-family: 'Cinzel', serif;
        }

        /* Testimonials Section */
        #testimonials {
            background-color: var(--parchment);
            background-image: url('https://www.transparenttextures.com/patterns/rice-paper.png');
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--wood-light);
            position: relative;
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--candlelight-glow);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-content p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--wood-light);
        }

        .author-info h4 {
            color: var(--wood-dark);
            margin-bottom: 5px;
        }

        .author-info span {
            color: var(--wood-medium);
            font-size: 0.9rem;
        }

        /* Location Section */
        #location {
            background-color: var(--wood-dark);
            color: var(--text-light);
        }

        .location-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            gap: 50px;
            align-items: center;
        }
        #location h2{
            color: var(--text-light);
        }
        #location p{
            color: var(--text-light);
        }
        .location-map {
            flex: 1;
            min-height: 400px;
            background-color: #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 3px solid var(--wood-light);
            position: relative;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }

        .location-info {
            flex: 1;
        }

        .location-info h3 {
            color: var(--candlelight);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .location-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .location-info i {
            color: var(--candlelight);
            margin-top: 3px;
        }

        /* Booking Section */
        #booking {
            background-color: var(--parchment);
            background-image: url('https://www.transparenttextures.com/patterns/paper.png');
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--wood-light);
        }

        .booking-header {
            background-color: var(--wood-dark);
            color: var(--text-light);
            padding: 20px;
            text-align: center;
        }

        .booking-header h3 {
            font-size: 1.8rem;
            color: var(--candlelight);
        }

        .booking-form {
            padding: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--wood-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Cormorant', serif;
            font-size: 1rem;
            background-color: var(--parchment);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--wood-light);
            box-shadow: 0 0 0 2px var(--candlelight-glow);
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .booking-form .btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            background-color: var(--wood-dark);
            color: var(--candlelight);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .booking-form .btn:hover {
            background-color: var(--wood-light);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background-color: var(--wood-dark);
            color: var(--text-light);
            padding: 50px 20px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--candlelight);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--candlelight);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--candlelight);
            color: var(--wood-dark);
            transform: translateY(-3px);
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .location-container {
                flex-direction: column;
            }
            
            .location-map,
            .location-info {
                width: 100%;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                padding: 0 10px;
            }
            
            nav a {
                padding: 0 15px;
            }
            
            #hero h1 {
                font-size: 3rem;
            }
            
            .tagline {
                font-size: 1.4rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .room-content h3 {
                font-size: 1.3rem;
            }
            
            .testimonial-card {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .menu-button {
                display: block;
            }
            
            .hideOnMobile {
                display: none;
            }

            .sidebar {
                width: 100%;
            }
            
            #hero h1 {
                font-size: 2.2rem;
                margin-top: -60px;
            }
            
            .tagline {
                font-size: 1.2rem;
                margin-bottom: 30px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                
            }
            
            section {
                padding: 60px 15px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .booking-form {
                padding: 20px;
            }
            #location img{
                height: 500px;
            }
        }

        /* Animation for candle flicker */
        @keyframes flicker {
            0%, 100% { opacity: 1; }
            25% { opacity: 0.9; }
            50% { opacity: 0.8; }
            75% { opacity: 0.95; }
        }

        .candle-flicker {
            animation: flicker 3s infinite alternate;
        }
    