/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
   :root {
    /* Sophisticated Color Palette based on brand identity */
    --clr-bg-main: #FAFAF7; /* Warm, off-white background */
    --clr-bg-light: #F2EFE8; /* Slightly darker beige for contrast sections */
    --clr-text-main: #2A2A28; /* Charcoal black for softer contrast */
    --clr-text-muted: #66645E;
    
    /* Muted Rose/Terracotta accents */
    --clr-primary: #AD6D64; 
    --clr-primary-hover: #915951;
    --clr-primary-light: #DFBDB8;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography & Basics
   ========================================================================== */
h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--clr-text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding) 0;
}

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

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

.mt-2 {
    margin-top: 2rem;
}

.section-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.heading-divider {
    width: 60px;
    height: 2px;
    background-color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.heading-divider.center {
    margin: 0 auto 1.5rem auto;
}

.text-link {
    color: var(--clr-primary);
    position: relative;
    font-weight: 700;
}

.text-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
}

.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--clr-primary-hover);
    border-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 109, 100, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text-main);
    border-color: var(--clr-text-main);
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--clr-text-main);
    color: #fff;
}

.icon-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.navbar.scrolled .brand-logo {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--clr-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--clr-text-main);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-bg-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-text-main);
}

.mobile-btn {
    margin-top: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* Avoid white edges during subtle load animation */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(43, 37, 35, 0.4) 0%, rgba(43, 37, 35, 0.7) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 1.5rem;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #E5E5E5;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero .btn-outline {
    color: #fff;
    border-color: #fff;
}

.hero .btn-outline:hover {
    background-color: #fff;
    color: var(--clr-text-main);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px 20px 20px -20px;
    border: 1px solid var(--clr-primary-light);
    z-index: -1;
    border-radius: 4px;
}

/* ==========================================================================
   Highlights Section
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background-color: var(--clr-bg-main);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.highlight-card i {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Menu Discovery
   ========================================================================== */
.menu-container {
    max-width: 700px;
}

.menu-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(43, 37, 35, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    border: 1px solid #fff;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   Visit Section (Location)
   ========================================================================== */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
}

.contact-item p {
    color: var(--clr-text-muted);
}

.visit-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.visit-map {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform var(--transition-smooth);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(173, 109, 100, 0.85); /* Primary color with opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1;
}

.map-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.map-link:hover img {
    transform: scale(1.05);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
    background-color: var(--clr-text-main);
    color: #fff;
}

.cta-title {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.final-cta .btn-outline {
    color: #fff;
    border-color: #fff;
}

.final-cta .btn-outline:hover {
    background-color: #fff;
    color: var(--clr-text-main);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #1F1B1A;
    color: #A39E99;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 300px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links nav a {
    display: block;
    margin-bottom: 0.8rem;
}

.footer-links nav a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-text-link {
    color: #A39E99;
}

.footer-text-link:hover {
    color: #fff;
}

.footer-map-link {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-map-link:hover {
    color: var(--clr-primary-hover);
}

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

/* ==========================================================================
   Animations (Intersection Observer)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

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

    .nav-links, .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001; /* Above mobile menu */
    }

    .hamburger.menu-open {
        color: var(--clr-text-main);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-grid, .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1; 
    }
    
    .about-image::before {
        inset: -10px 10px 10px -10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .visit-buttons {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}