
        /* Reset & base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: 'Quicksand', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #faf7f3;
}


        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(150, 61, 61, 0.95);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #bdb6b1; /* warm brown */
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 1.8rem;
            color: #0b0b0b;
        }

        nav ul li a {
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #e1dedc; /* warmer accent */
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1rem;
        }

        .hero h1 {
            font-size: 3rem;
            color: #5cc902;
            text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            color: #000000;
            text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
            background: #90a6b3;
        }

        .hero .btn {
            background-color: #A16A49;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .hero .btn:hover {
            background-color: #6B4226;
        }
        
        /* Desktop */
.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {

    header {
        padding: 1rem 1.5rem;
    }

    .nav-links ul {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #6B4226;
        width: 100%;
        max-width: 300px;
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: -2px 0 15px rgba(0,0,0,0.2);
        border-radius: 0 0 0 15px;
    }

    .nav-links.show ul {
        display: flex;
    }

    .mobile-menu-icon {
        display: block;
    }
}

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            nav ul {
                gap: 1rem;
            }
        }
  
        


    /* Rooms Section */
    .rooms {
        padding: 5rem 2rem;
        background-color: #fdf6f0;
        text-align: center;
    }

    .rooms h2 {
        font-size: 2.5rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .rooms p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 3rem;
    }

    .room-cards {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .room-card {
        background-color: #fff;
        border-radius: 12px;
        overflow: hidden;
        max-width: 300px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .room-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .room-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .room-info {
        padding: 1.5rem;
        text-align: left;
    }

    .room-info h3 {
        font-size: 1.4rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .room-info p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 1rem;
    }

    .room-info .price {
        display: block;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #A16A49;
    }

    .room-info .btn {
        display: inline-block;
        background-color: #A16A49;
        color: #fff;
        padding: 0.6rem 1.5rem;
        border-radius: 20px;
        font-weight: 500;
        transition: background 0.3s;
        text-align: center;
    }

    .room-info .btn:hover {
        background-color: #6B4226;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .room-cards {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
    }


  /* Services Section */
    .services {
        padding: 5rem 2rem;
        background-color: #fff6f0;
        text-align: center;
    }

    .services h2 {
        font-size: 2.5rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .services p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 3rem;
    }

    .service-cards {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 2rem 1.5rem;
        max-width: 250px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .service-card .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #A16A49;
    }

    .service-card h3 {
        font-size: 1.2rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.95rem;
        color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .service-cards {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
    }

    @media (max-width: 768px) {
    .room-card,
    .service-card {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }

    .room-grid,
    .service-grid {
        display: block;
    }
}


    /* Gallery Section */
    .gallery {
        padding: 5rem 2rem;
        background-color: #fdf6f0;
        text-align: center;
    }

    .gallery h2 {
        font-size: 2.5rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .gallery p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 3rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-grid img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .gallery-grid img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 480px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
    }

    img {
    width: 100%;
    height: auto;
    display: block;
}


        /* Lightbox Styles */
    .lightbox {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    .lightbox-img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
    }

    .close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

        .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in.appear {
        opacity: 1;
        transform: translateY(0);
    }





    /* Testimonials Section */
    .testimonials {
        padding: 5rem 2rem;
        background-color: #fff6f0;
        text-align: center;
    }

    .testimonials h2 {
        font-size: 2.5rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .testimonials p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 3rem;
    }

    .testimonial-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .testimonial-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 2rem 1.5rem;
        max-width: 300px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .testimonial-card p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .testimonial-card h4 {
        font-size: 1rem;
        color: #A16A49;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .testimonial-cards {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
    }

    @media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .testimonial-grid {
        display: block;
    }
}

    /* Booking / Contact Section */
    .contact {
        padding: 5rem 2rem;
        background-color: #fff6f0;
        text-align: center;
    }

    .contact h2 {
        font-size: 2.5rem;
        color: #6B4226;
        margin-bottom: 0.5rem;
    }

    .contact p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 3rem;
    }

    .contact-grid {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Contact Form */
    .contact-form {
        background-color: #fff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        max-width: 400px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 0.95rem;
        width: 100%;
    }

    .contact-form button {
        background-color: #A16A49;
        color: #fff;
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .contact-form button:hover {
        background-color: #6B4226;
    }

    /* Map */
    .map {
        width: 400px;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .contact-grid {
            flex-direction: column;
            align-items: center;
        }

        .map {
            width: 100%;
            height: 300px;
        }
    }

     .sticky-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background-color: #2005f3;
        color: #fff;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        transition: background 0.3s, transform 0.3s;
        z-index: 1000;
    }

    .sticky-btn:hover {
        background-color: #6B4226;
        transform: translateY(-2px);
    }

    /* Footer Section */
    .footer {
        background-color: #6B4226;
        color: #fff;
        padding: 4rem 2rem 2rem 2rem;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1200px;
        margin: auto;
    }

    .footer h3, .footer h4 {
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-about p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 300px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

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

    .footer-links ul li a {
        color: #fff;
        transition: color 0.3s;
    }

    .footer-links ul li a:hover {
        color: #A16A49;
    }

    .footer-social .social-icons a {
        font-size: 1.5rem;
        margin-right: 1rem;
        transition: color 0.3s;
    }

    .footer-social .social-icons a:hover {
        color: #A16A49;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
        font-size: 0.9rem;
        color: #fff;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-about p {
            max-width: 100%;
        }
    }

    /* Footer Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

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

    .footer-social .social-icons a {
        margin-right: 0.8rem;
        font-size: 1.8rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

section {
    padding: 4rem 2rem;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.2rem;
    }
}


/* Style for the new Social Links section */
/* Update the existing CSS for the social icons */
.footer-section.social-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Ensure Font Awesome brand font is used */
.social-icon i.fab {
    font-family: "Font Awesome 6 Brands";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
/* Social Media Icon Colors */
.social-icon .fa-x-twitter {
    color: #000; /* X.com is black */
}

.social-icon .fa-facebook-f {
    color: #1877f2; /* Facebook is blue */
}

.social-icon .fa-tiktok {
    color: #000; /* TikTok's brand color is black */
}