:root {
    --primary: #2C3E50;
    /* Deep Slate (Stone) */
    --secondary: #8B4513;
    /* Saddle Brown (Wood) */
    --accent: #D4AF37;
    /* Muted Gold */
    --surface: #F5F5DC;
    /* Beige/Cream (Natural) */
    --surface-alt: #E8E8E8;
    /* Light Grey (Stone) */
    --text: #3E3E3E;
    /* Charcoal */
    --text-light: #666;
    --font-heading: 'Playfair Display', serif;
    /* Elegant Serif */
    --font-body: 'Lato', sans-serif;
    /* Clean Sans */
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--surface);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 1.2s var(--transition) forwards;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

nav.scrolled .logo {
    color: var(--primary);
}

nav.scrolled .nav-links a {
    color: var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

nav.scrolled .logo {
    color: var(--primary);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

nav.scrolled .nav-links {
    background: transparent;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

nav.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-book {
    padding: 0.8rem 2rem !important;
    background-color: var(--secondary) !important;
    color: #fff !important;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

nav.scrolled .btn-book {
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.btn-book:hover {
    background-color: #6d350e !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-book::after {
    content: none;
}

/* Remove underline effect */

/* Hero Section */
header {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transform: scale(1.05);
    animation: zoomIn 25s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 400;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 4px;
}

.btn-hero:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-title::after {
    content: '~';
    display: block;
    font-size: 3rem;
    color: var(--accent);
    margin-top: 1rem;
    font-family: var(--font-heading);
}

/* About / Feature Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.about-image img {
    height: 100%;
    min-height: 600px;
    border-radius: 0;
}

.about-text {
    padding: 5rem;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.8rem;
    border: 1px solid var(--accent);
}

/* Gallery - Masonry-ish */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: var(--radius);
    cursor: block;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Custom layout for provided images to look better (some wide, some tall) */
.gallery-item:nth-child(4n+1),
.gallery-item:nth-child(4n+4) {
    grid-column: span 1;
}

@media (max-width: 768px) {
    .gallery-item:nth-child(3n+1) {
        grid-column: span 1;
    }
}

/* Testimonials Slider */
.testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0.5rem 3rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Mobile Book Now and Hamburger (Hidden on Desktop) */
.mobile-book-btn,
.hamburger {
    display: none;
}

/* Hamburger Menu Icon Styling (Applied when visible) */
.hamburger {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1100;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0E4D2D;
    /* Deep Green matching the reference */
    transition: var(--transition);
    border-radius: 2px;
}

nav.scrolled .hamburger span {
    background-color: var(--primary);
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay - Side Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    /* Start hidden */
    height: 100vh;
    background-color: #fff;
    /* White background as per request */
    z-index: 1050;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align items */
    justify-content: flex-start;
    /* Start from top */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.mobile-menu.active {
    width: 80%;
    /* Partial width drawer */
    max-width: 300px;
}

/* Mobile Menu Header (Logo + Close) */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 3rem;
    white-space: nowrap;
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary) !important;
    text-decoration: none;
}

.mobile-menu-close {
    font-size: 2.5rem;
    color: #27ae60;
    /* Green close button as per image */
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0 2rem;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.mobile-nav-links a {
    color: var(--primary);
    /* Dark text for white bg */
    font-size: 1.1rem;
    text-decoration: none;
    font-family: var(--font-body);
    /* Clean sans-serif like image */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--accent);
    /* Ensure all blocks are closed before media query */
}

/* Media Queries */
@media (max-width: 992px) {
    .desktop-nav {
        display: none !important;
    }

    /* Mobile Header Layout - Premium White Style */
    nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        padding: 0.8rem 0;
        /* Reduced padding for compact look */
    }

    .nav-container {
        display: grid;
        grid-template-columns: 40px 1fr 100px;
        align-items: center;
        width: 100%;
        padding: 0 1.2rem;
    }

    .hamburger {
        display: flex;
        grid-column: 1;
        justify-self: start;
    }

    /* Logo Styling */
    .logo {
        grid-column: 2;
        justify-self: center;
        text-align: center;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }

    /* Smaller Book Button */
    .mobile-book-btn {
        display: inline-block !important;
        grid-column: 3;
        justify-self: end;
        padding: 0.4rem 0.8rem !important;
        /* Smaller padding */
        font-size: 0.7rem !important;
        /* Smaller text */
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 1px solid var(--secondary) !important;
        /* Outlined style looks more premium sometimes */
        background-color: transparent !important;
        color: var(--secondary) !important;
        margin-right: 0 !important;
        border-radius: 4px !important;
        /* crisper edges */
        box-shadow: none !important;
    }

    .mobile-book-btn:hover {
        background-color: var(--secondary) !important;
        color: #fff !important;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        /* Slightly reduced for mobile fit */
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }


    section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .about-text {
        padding: 2rem;
        text-align: center;
    }

    .contact-grid {
        text-align: center;
        gap: 3rem;
    }

    .booking-form {
        padding: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 1rem;
    }
}

/* ======================
   Footer Styles 
   ====================== */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: left;
}

/* 1. Branding Section */
.footer-branding {
    /* Takes up space naturally */
}

/* 2. Navigation Section */
.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: var(--secondary);
}

/* 3. Contact Section */
.footer-contact .contact-block {
    margin-bottom: 1.5rem;
}

.footer-contact i {
    color: var(--secondary);
    /* Gold/Primary Accent */
    margin-right: 0.8rem;
    font-size: 1rem;
}

.footer-contact a,
.footer-contact p {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
}

/* 4. Social Section */
.footer-social h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: #666;
    font-size: 0.8rem;
}

.ssl-seal i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 992px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        text-align: center;
        gap: 2.5rem;
    }

    .footer-contact i {
        display: block;
        margin: 0 auto 0.5rem;
        /* Center icons */
    }

    .social-icons {
        justify-content: center;
    }

    .contact-block p {
        margin-left: 0 !important;
        /* Reset indentation */
    }
}