/* ==================== CSS VARIABLES & ROOT ==================== */
:root {
    /* Color Palette - Earthy, Warm Tones */
    --primary-beige: #f5f3f0;
    --warm-brown: #8b7355;
    --deep-brown: #5c4a42;
    --off-white: #faf8f6;
    --muted-olive: #8b8b7a;
    --soft-grey: #a8a8a0;
    --accent-gold: #d4af86;
    --light-grey: #e8e8e3;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--off-white);
    color: var(--deep-brown);
    line-height: 1.6;
    overflow-x: hidden;
    /* Ensure body doesn't create stacking context for fixed elements */
    position: static;
    transform: none;
    /* Android text scaling fix */
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-brown);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-olive);
    margin-bottom: var(--spacing-2xl);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ==================== NAVIGATION BAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 243, 240, 0), rgba(245, 243, 240, 0.3));
    backdrop-filter: blur(0px);
    border-bottom: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(245, 243, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(92, 74, 66, 0.08);
    height: 75px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-brown);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1001;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
    margin: 0;
    padding: 0;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--deep-brown);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0;
    margin: 0;
    letter-spacing: 1px;
    display: inline-block;
    line-height: normal;
    height: auto;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--warm-brown));
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::before {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Active Navigation Link (SPA Route Indicator) */
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::before {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* ==================== HAMBURGER BUTTON ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
    color: var(--deep-brown);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: currentColor;
    border-radius: 2px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger Animation - morph to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== NAVIGATION MENU ==================== */

/* Desktop View (1024px and above) */
@media (min-width: 1024px) {
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row;
        gap: 40px;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        width: auto !important;
        height: 100%;
        align-items: center;
    }

    .nav-menu li {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        padding: 0 !important;
        border: none !important;
        background: none !important;
        display: inline-block;
    }

    .nav-link::before {
        display: block;
    }

    .nav-menu.nav-open {
        display: flex;
    }

    body.nav-open {
        overflow: unset;
    }
}

/* Tablet + Mobile View (< 1024px) */
@media (max-width: 1023px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: calc(100dvh - 70px);
        flex-direction: column;
        gap: 0;
        background: rgba(245, 243, 240, 0.98);
        backdrop-filter: blur(12px);
        border-top: 2px solid rgba(212, 175, 134, 0.2);
        padding: 0;
        margin: 0;
        list-style: none;
        overflow-y: auto;

        /* Slide up animation */
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        display: list-item;
        flex: none;
    }

    .nav-link {
        display: block;
        padding: 1.2rem 20px;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(212, 175, 134, 0.15);
        height: auto;
        line-height: normal;
        margin: 0;
        color: var(--deep-brown);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: rgba(212, 175, 134, 0.12);
        color: var(--accent-gold);
    }

    .nav-link.active {
        background: rgba(212, 175, 134, 0.08);
        color: var(--accent-gold);
        border-left: 4px solid var(--accent-gold);
        padding-left: calc(20px - 4px);
    }

    /* Prevent scroll when menu is open */
    body.nav-open {
        overflow: hidden;
    }

    /* Mobile navbar adjustments */
    .navbar {
        height: 70px;
    }

    .navbar-container {
        padding: 0 20px;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        margin-top: 70px;
    }
}

/* Scroll-triggered hamburger collapse - Desktop ONLY */
@media (min-width: 1024px) {
    .navbar.nav-collapsed .nav-menu {
        display: flex !important;
        /* Keep menu visible on desktop when scrolled */
    }

    .navbar.nav-collapsed .hamburger {
        display: none !important;
        /* Hide hamburger - menu always shows on desktop */
    }
}

/* On mobile/tablet, keep menu visible based on nav-open class (ignore scroll state) */
@media (max-width: 1023px) {
    .navbar.nav-collapsed .nav-menu {
        /* Don't hide on scroll - let nav-open class control visibility */
    }

    .navbar.nav-collapsed .hamburger {
        display: flex;
        /* Always show hamburger on mobile */
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3) 0%, rgba(244, 200, 154, 0.25) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: var(--spacing-lg);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* ==================== BUTTONS ==================== */
.cta-button {
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--deep-brown);
    background: var(--accent-gold);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(212, 175, 134, 0.3);
    letter-spacing: 0.5px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    background: #c9a876;
    box-shadow: 0 12px 40px rgba(212, 175, 134, 0.4);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-content .cta-button {
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

/* ==================== GOOGLE REVIEW BADGE ==================== */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    background: rgba(245, 239, 230, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(92, 74, 66, 0.06),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(92, 74, 66, 0.05);
    font-family: var(--font-sans);
    color: var(--deep-brown);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px) saturate(1.1);
}

.google-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #5c4a42;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-text {
    font-weight: 600;
    color: #5c4a42;
}

.badge-stars {
    color: #000;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.badge-rating {
    color: #8b7355;
    font-weight: 500;
}

.google-review-badge:hover {
    background: rgba(245, 239, 230, 0.75);
    box-shadow: 0 16px 48px rgba(92, 74, 66, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        0 0 50px rgba(92, 74, 66, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.5);
}

.google-review-badge:hover .google-logo {
    transform: scale(1.15) rotate(-10deg);
}

.google-review-badge:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .google-review-badge {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.9rem;
        gap: var(--spacing-xs);
        margin: var(--spacing-md) 0;
    }

    .google-logo {
        width: 16px;
        height: 16px;
    }

    .badge-stars {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .google-review-badge {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.8rem;
        gap: 4px;
        margin: var(--spacing-sm) 0;
    }

    .google-logo {
        width: 14px;
        height: 14px;
    }

    .badge-stars {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
    }

    .badge-rating {
        font-size: 0.75rem;
    }
}

/* ==================== MENU SECTION ==================== */
.menu {
    padding: 0;
    background: var(--off-white);
}

.menu-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
}

/* Menu Columns */
.menu-column {
    flex: 1;
    padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-left {
    background: #3a3a3a;
    color: white;
}

.menu-right {
    background: #f5f5f5;
    color: var(--deep-brown);
}

.menu-intro {
    margin-bottom: var(--spacing-2xl);
}

.menu-intro h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.menu-intro p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Menu Category */
.menu-category {
    margin-bottom: var(--spacing-2xl);
}

.menu-category h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.menu-left .menu-category h3 {
    color: white;
}

.menu-right .menu-category h3 {
    color: var(--deep-brown);
}

/* Menu Items */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.menu-item {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-right .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--spacing-sm);
    gap: var(--spacing-lg);
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
}

.item-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
}

.item-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    font-weight: 300;
}

.menu-left .item-description {
    color: rgba(255, 255, 255, 0.85);
}

.menu-right .item-description {
    color: rgba(92, 74, 66, 0.85);
}

/* Center Image */
.menu-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e3 0%, #f5f3f0 100%);
    padding: var(--spacing-xl);
    position: relative;
}

.menu-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
    margin-bottom: var(--spacing-xl);
}

.menu-featured {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 400px;
}

.featured-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.featured-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.featured-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin: 0;
}

.featured-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 80px 0;
    background: white;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 550px;
    width: 100%;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--muted-olive);
    margin: 0 0 20px 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content p:first-child {
    font-size: 1.2rem;
    color: var(--deep-brown);
    font-weight: 400;
}

.about-image-wrapper {
    width: 320px;
    max-width: 320px;
    aspect-ratio: 9 / 12;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(92, 74, 66, 0.15);
    background: #f5f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: var(--spacing-2xl) 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 115, 85, 0.6);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-beige) 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-olive);
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: -var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    letter-spacing: 0.5px;
}

/* Main wrapper for 2-column layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    align-items: flex-start;
}

/* Card styling for contact information */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 32px rgba(92, 74, 66, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.contact-card:hover {
    box-shadow: 0 12px 40px rgba(92, 74, 66, 0.12);
    transform: translateY(-2px);
}

/* Contact details container */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

/* Individual contact items */
.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--light-grey);
}

.contact-item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-brown);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: var(--font-serif);
}

.contact-text {
    color: var(--muted-olive);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.contact-link {
    color: var(--warm-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    font-weight: 500;
    display: inline-block;
    margin-right: var(--spacing-sm);
}

.contact-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Social section styling */
.social-section {
    border-top: 2px solid var(--light-grey);
    padding-top: var(--spacing-xl);
}

.social-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-brown);
    text-align: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-lg);
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.social-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    color: var(--deep-brown);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--warm-brown);
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-button:hover {
    background: var(--warm-brown);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

/* Map card */
.map-card {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(92, 74, 66, 0.08);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.map-card:hover {
    box-shadow: 0 12px 40px rgba(92, 74, 66, 0.12);
    transform: translateY(-2px);
}

.contact-map {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

/* ==================== EVENTS / BOOKING SECTION ==================== */
.events {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-beige) 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.events::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 134, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.events-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    width: 100%;
}

.events-header .section-title {
    font-size: 2.8rem;
    color: var(--deep-brown);
    margin-bottom: var(--spacing-md);
}

.events-header .section-subtitle {
    font-size: 1.15rem;
    color: var(--muted-olive);
}

.events-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Events Info Column */
.events-info {
    animation: fadeInUp 0.8s ease-out forwards;
    width: 100%;
    max-width: 100%;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    width: 100%;
}

.info-title {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    color: var(--deep-brown);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.info-content>p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-olive);
    text-align: justify;
}

/* Event Types List */
.event-types {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(92, 74, 66, 0.06);
    border-left: 4px solid var(--accent-gold);
}

.types-title {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: var(--deep-brown);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.types-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.type-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(212, 175, 134, 0.15);
    transition: var(--transition-smooth);
}

.type-item:last-child {
    border-bottom: none;
}

.type-item:hover {
    transform: translateX(4px);
    padding-left: 4px;
}

.type-check {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.type-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    flex: 1;
}

.type-name {
    font-weight: 700;
    color: var(--deep-brown);
    font-size: 0.95rem;
}

.type-dash {
    color: var(--muted-olive);
    margin: 0 2px;
}

.type-desc {
    color: var(--muted-olive);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Notice Box */
.notice-box {
    background: linear-gradient(135deg, #fff9f0 0%, #fffaf2 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: var(--spacing-lg);
    position: relative;
}

.notice-box::before {
    content: '⏰';
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.8rem;
    background: var(--off-white);
    padding: 0 8px;
}

.notice-text {
    font-size: 0.95rem;
    color: var(--deep-brown);
    line-height: 1.8;
    margin: 0;
}

.notice-text strong {
    color: var(--warm-brown);
    display: block;
    margin-bottom: 8px;
}

/* Booking Form Column */
.events-form-container {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.booking-form {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(92, 74, 66, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    border-top: 4px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.booking-form:hover {
    box-shadow: 0 16px 48px rgba(92, 74, 66, 0.16);
}

.form-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--deep-brown);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-brown);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--deep-brown);
    background: var(--off-white);
    transition: var(--transition-smooth);
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--soft-grey);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 134, 0.1);
    transform: translateY(-2px);
}

.form-input[type="date"],
.form-input[type="time"] {
    color: var(--deep-brown);
}

.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    color: var(--warm-brown);
    filter: brightness(0.8);
}

/* Select Styling */
select.form-input {
    width: 100%;
    max-width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b7355' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    box-sizing: border-box;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Generic input and select fallback */
input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Helper Text */
.helper-text {
    font-size: 0.8rem;
    color: var(--warm-brown);
    font-style: italic;
    margin-top: -4px;
}

/* Error Messages */
.error-message {
    font-size: 0.8rem;
    color: #d97a5a;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.error-message.show {
    display: block;
}

.form-input.error,
.form-textarea.error {
    border-color: #d97a5a;
    background-color: rgba(217, 122, 90, 0.02);
}

/* Submit Button */
.submit-button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--deep-brown) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--spacing-md);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
    min-height: 48px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #f0f8f5 0%, #f5faf8 100%);
    border: 2px solid #52b394;
    border-radius: 10px;
    padding: var(--spacing-lg);
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.success-message p {
    font-size: 0.95rem;
    color: var(--deep-brown);
    margin: 8px 0;
    line-height: 1.6;
}

.success-message p:first-child {
    color: #52b394;
    font-weight: 600;
    font-size: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--deep-brown);
    color: var(--off-white);
    padding: var(--spacing-lg) 0;
    padding-bottom: calc(var(--spacing-lg) + 60px);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 300;
    /* Ensure footer doesn't interfere with fixed button positioning */
    position: static;
    z-index: auto;
}

@media (max-width: 480px) {
    .footer {
        /* Extra padding on mobile to accommodate floating button */
        padding: var(--spacing-lg) 0;
        padding-bottom: calc(var(--spacing-lg) + 80px);
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll animation classes */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    :root {
        --spacing-2xl: 3.5rem;
        --spacing-xl: 2.5rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .menu-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .menu-column {
        padding: var(--spacing-xl);
        min-height: auto;
    }

    .menu-center {
        min-height: 300px;
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .menu-image {
        max-width: 300px;
    }

    .hero {
        margin-top: 70px;
        height: 80dvh;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }

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

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        margin: 0 auto;
    }

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

    .gallery-item {
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .events-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .booking-form {
        padding: var(--spacing-xl);
    }

    .events-header .section-title {
        font-size: 2.2rem;
    }
}

/* Tablet Portrait & Large Mobile (768px and below) */
@media (max-width: 768px) {
    :root {
        --spacing-2xl: 2.5rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.5rem;
    }

    body {
        font-size: 16px;
    }

    .events-header .section-title {
        font-size: 1.8rem;
    }

    .events-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .booking-form {
        padding: var(--spacing-lg);
    }

    .info-title {
        font-size: 1.4rem;
    }

    .event-types {
        padding: var(--spacing-md);
    }

    .types-list li {
        font-size: 0.9rem;
    }

    .notice-box {
        padding: var(--spacing-md);
    }

    .submit-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.9rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .navbar {
        padding: var(--spacing-sm) 0;
    }

    .navbar-container {
        padding: 0 var(--spacing-md);
    }

    .nav-menu {
        gap: 0;
        font-size: 0.85rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        margin-top: 60px;
        height: 80dvh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .cta-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.95rem;
    }

    .menu-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .menu-column {
        padding: var(--spacing-lg);
        min-height: auto;
        width: 100%;
    }

    .menu-intro h2 {
        font-size: 1.4rem;
    }

    .menu-category h3 {
        font-size: 1.2rem;
    }

    .menu-center {
        min-height: 280px;
        padding: var(--spacing-lg);
    }

    .menu-image {
        max-width: 250px;
    }

    .about {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 var(--spacing-md);
    }

    .about-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        gap: 20px;
        max-width: 100%;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 15px;
    }

    .about-content p:last-child {
        margin-bottom: 0;
    }

    .about-image-wrapper {
        width: 320px;
        max-width: 320px;
    }

    .gallery {
        padding: var(--spacing-xl) 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }

    .gallery-item {
        height: 280px;
    }

    .contact {
        padding: var(--spacing-xl) 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-card {
        padding: var(--spacing-xl);
    }

    .contact-details {
        gap: var(--spacing-lg);
    }

    .contact-heading {
        font-size: 1rem;
    }

    .contact-text {
        font-size: 0.95rem;
    }

    .social-heading {
        font-size: 1rem;
    }

    .social-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .contact-map {
        height: 300px;
    }

    .footer {
        padding: var(--spacing-lg) 0;
    }

    .footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-2xl: 2rem;
        --spacing-xl: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    body {
        font-size: 15px;
        line-height: 1.5;
    }

    .events {
        padding: var(--spacing-xl) 0;
    }

    .events-header {
        margin-bottom: var(--spacing-lg);
    }

    .events-header .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }

    .events-header .section-subtitle {
        font-size: 0.9rem;
    }

    .events-wrapper {
        gap: var(--spacing-lg);
    }

    .info-content {
        gap: var(--spacing-md);
    }

    .info-title {
        font-size: 1.2rem;
    }

    .info-content>p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .event-types {
        padding: var(--spacing-md);
        border-left-width: 3px;
    }

    .types-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }

    .types-list {
        gap: var(--spacing-sm);
    }

    .types-list li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .notice-box {
        padding: var(--spacing-md);
        border-width: 2px;
    }

    .notice-box::before {
        top: -10px;
        left: 15px;
        font-size: 1.4rem;
    }

    .notice-text {
        font-size: 0.85rem;
    }

    .booking-form {
        padding: var(--spacing-lg);
        border-radius: 12px;
        border-top-width: 3px;
    }

    .form-title {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-textarea {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .helper-text {
        font-size: 0.75rem;
    }

    .error-message {
        font-size: 0.75rem;
    }

    .submit-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.85rem;
        min-height: 44px;
        margin-top: var(--spacing-md);
    }

    .success-message {
        padding: var(--spacing-lg);
        border-width: 2px;
    }

    .success-message p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }

    /* ========== NAVBAR ========== */
    .navbar {
        padding: var(--spacing-sm) 0;
    }

    .navbar-container {
        padding: 0 var(--spacing-sm);
    }

    .nav-menu {
        gap: var(--spacing-sm);
        font-size: 0.75rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 35px;
    }

    /* ========== HERO ========== */
    .hero {
        margin-top: 60px;
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .cta-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
        min-height: 44px;
        min-width: 120px;
    }

    /* ========== MENU ========== */
    .menu-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .menu-column {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .menu-intro h2 {
        font-size: 1.3rem;
    }

    .menu-category h3 {
        font-size: 1.1rem;
    }

    .menu-items {
        gap: var(--spacing-md);
    }

    .menu-item {
        padding-bottom: var(--spacing-md);
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .item-name,
    .item-price {
        font-size: 0.95rem;
    }

    .item-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .menu-center {
        min-height: 200px;
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .menu-image {
        max-width: 180px;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
        aspect-ratio: 1;
        margin-bottom: var(--spacing-lg);
    }

    .menu-featured {
        width: 100%;
        max-width: 100%;
        margin-top: var(--spacing-lg);
    }

    .featured-item {
        padding: var(--spacing-md) var(--spacing-sm);
        flex-wrap: wrap;
    }

    .featured-item h4 {
        font-size: 0.95rem;
    }

    /* ========== ABOUT ========== */
    .about {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 var(--spacing-sm);
    }

    .about-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content {
        gap: 15px;
        max-width: 100%;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .about-content p:first-child {
        font-size: 1rem;
    }

    .about-content p:last-child {
        margin-bottom: 0;
    }

    .about-image-wrapper {
        width: 240px;
        max-width: 100%;
        margin: 0 auto;
    }

    /* ========== GALLERY ========== */
    .gallery {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    .gallery-item {
        height: 220px;
        border-radius: 8px;
        min-height: 200px;
    }

    /* ========== CONTACT ========== */
    .contact {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-container {
        padding: 0 var(--spacing-xs);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-card {
        padding: var(--spacing-lg);
    }

    .contact-details {
        gap: var(--spacing-lg);
    }

    .contact-item {
        padding-bottom: var(--spacing-md);
    }

    .contact-item:last-of-type {
        padding-bottom: 0;
    }

    .contact-heading {
        font-size: 0.95rem;
        text-transform: uppercase;
    }

    .contact-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-link {
        font-size: 0.85rem;
    }

    .social-section {
        border-top: 1px solid var(--light-grey);
        padding-top: var(--spacing-lg);
    }

    .social-heading {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }

    .social-links-container {
        gap: var(--spacing-md);
        flex-wrap: wrap;
    }

    .social-button {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.8rem;
        min-height: 44px;
        flex: 0 1 calc(50% - var(--spacing-sm));
    }

    .contact-map {
        height: 250px;
    }

    #map-container {
        height: 250px;
    }

    /* ========== EVENTS ========== */
    .events {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .events-header {
        margin-bottom: var(--spacing-lg);
    }

    .events-header .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }

    .events-header .section-subtitle {
        font-size: 0.9rem;
    }

    .info-title {
        font-size: 1.2rem;
    }

    .info-content>p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .event-types {
        padding: var(--spacing-md);
        border-left-width: 3px;
    }

    .types-title {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }

    .types-grid {
        gap: var(--spacing-sm);
    }

    .type-item {
        padding: var(--spacing-xs) 0;
    }

    .type-check {
        font-size: 1rem;
        margin-top: 1px;
    }

    .type-name {
        font-size: 0.9rem;
    }

    .type-dash {
        margin: 0 2px;
    }

    .type-desc {
        font-size: 0.8rem;
    }

    .notice-box {
        padding: var(--spacing-md);
        border-width: 2px;
        margin-top: var(--spacing-md);
    }

    .notice-box::before {
        top: -8px;
        left: 12px;
        font-size: 1.2rem;
    }

    .notice-text {
        font-size: 0.8rem;
    }

    .booking-form {
        padding: var(--spacing-lg);
        border-radius: 12px;
        border-top-width: 3px;
    }

    .form-title {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-input,
    .form-textarea {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .form-textarea {
        min-height: 100px;
    }

    /* ========== FOOTER ========== */
    .footer {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .footer p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ==================== MAP STYLING ==================== */
#map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(92, 74, 66, 0.1);
}

/* Leaflet map custom styling */
.leaflet-container {
    font-family: var(--font-sans);
}

.leaflet-marker-icon {
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content-wrapper {
    background-color: var(--primary-beige);
    border-color: var(--accent-gold);
    border-radius: 4px;
}

.leaflet-popup-content {
    font-family: var(--font-sans);
    color: var(--deep-brown);
    margin: 10px;
}

.leaflet-popup-tip {
    background-color: var(--primary-beige);
}

/* ==================== UTILITY CLASSES ==================== */
.scroll-hidden {
    overflow: hidden;
}

/* Glass morphism effect for subtle elements */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== PREMIUM MENU SECTION ==================== */

.menu-section {
    background: #f8f5ef;
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.menu-section.in-view {
    animation: fadeInUp 0.8s ease-out;
}

.menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

/* Left Column: Menu Content */
.menu-content {
    padding: 2rem 0;
}

.menu-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.menu-subtitle {
    font-size: 1.05rem;
    color: var(--warm-brown);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Category Tabs */
.menu-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.tab-button {
    background: transparent;
    border: 2px solid transparent;
    border-bottom: 2px solid #d4c5b9;
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-brown);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-brown);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-button:hover {
    color: var(--deep-brown);
}

.tab-button.active {
    color: var(--deep-brown);
}

.tab-button.active::after {
    width: 100%;
}

.menu-description {
    font-size: 0.95rem;
    color: var(--warm-brown);
    line-height: 1.8;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Right Column: Menu Grid */
.menu-grid-wrapper {
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.menu-grid.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-out;
    pointer-events: none;
}

/* Menu Card */
.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(92, 74, 66, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: cardSlideIn 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(92, 74, 66, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .card-image {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--deep-brown);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(92, 74, 66, 0.2);
}

.card-content {
    padding: 1.5rem;
}

.card-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9rem;
    color: var(--warm-brown);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.card-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-brown);
}

/* CTA Button */
.menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
}

.menu-cta {
    position: relative;
    display: inline-block;
    background: var(--deep-brown);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(92, 74, 66, 0.2);
    overflow: hidden;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--warm-brown);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(92, 74, 66, 0.3);
    color: white;
}

.menu-cta:hover::before {
    left: 0;
}

.menu-cta-secondary {
    background: var(--accent-gold);
    color: var(--deep-brown);
    box-shadow: 0 8px 20px rgba(212, 175, 134, 0.25);
}

.menu-cta-secondary::before {
    background: #c89a6d;
}

.menu-cta-secondary:hover {
    color: var(--deep-brown);
}

/* ==================== RESPONSIVE MENU ==================== */

/* TABLET & DESKTOP OPTIMIZATION (1024px+) */
@media (min-width: 1440px) {
    .menu-section {
        padding: 5rem 0;
    }

    .menu-wrapper {
        grid-template-columns: 1fr 1.6fr;
        gap: 5rem;
    }

    .menu-title {
        font-size: 3.2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .card-image-wrapper {
        height: 220px;
    }

    .menu-content {
        padding: 1rem 0;
    }
}

/* TABLET - LANDSCAPE & FULL DESKTOP (1025px - 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
    .menu-section {
        padding: 4.5rem 0;
    }

    .menu-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .card-image-wrapper {
        height: 200px;
    }
}

/* TABLET - PORTRAIT & SMALL DESKTOP (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 2.5rem;
    }

    .menu-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 2.5rem;
    }

    .menu-content {
        padding: 0;
    }

    .menu-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .menu-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .menu-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .tab-button {
        flex: 0 1 calc(50% - 0.5rem);
        font-size: 0.95rem;
        padding: 0.7rem 0;
        text-align: center;
        border-bottom: 2px solid #d4c5b9;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .menu-grid-wrapper {
        width: 100%;
    }

    .card-image-wrapper {
        height: 180px;
    }

    .card-content {
        padding: 1.3rem;
    }

    .card-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .menu-description {
        font-size: 0.95rem;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .menu-cta {
        padding: 1rem 2.8rem;
        font-size: 0.95rem;
    }

    .menu-footer {
        gap: 1rem;
    }
}

/* MOBILE - MEDIUM (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .menu-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .menu-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .menu-content {
        padding: 0;
    }

    .menu-title {
        font-size: 1.75rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .menu-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .menu-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-bottom: 1.8rem;
    }

    .tab-button {
        flex: 0 1 calc(50% - 0.35rem);
        font-size: 0.85rem;
        padding: 0.6rem 0;
        text-align: center;
        border-bottom: 2px solid #d4c5b9;
    }

    .tab-button::after {
        display: none;
    }

    .tab-button.active {
        border-bottom-color: var(--deep-brown);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .card-image-wrapper {
        height: 160px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .card-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .card-price {
        font-size: 1.1rem;
    }

    .menu-description {
        display: none;
    }

    .menu-footer {
        margin-top: 2rem;
        gap: 1rem;
    }

    .menu-cta {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    .popular-badge {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
        top: 8px;
        right: 8px;
    }
}

/* MOBILE - SMALL (320px - 480px) */
@media (max-width: 480px) {
    .menu-section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .menu-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .menu-content {
        padding: 0;
    }

    .menu-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
        word-spacing: -0.05em;
    }

    .menu-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .menu-tabs {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.5rem 0;
        text-align: left;
        border-bottom: 2px solid #d4c5b9;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }

    .tab-button::after {
        display: none;
    }

    .tab-button.active {
        border-bottom-color: var(--deep-brown);
        color: var(--deep-brown);
        font-weight: 700;
    }

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

    .menu-card {
        border-radius: 12px;
    }

    .menu-card:active {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(92, 74, 66, 0.12);
    }

    .card-image-wrapper {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }

    .card-content {
        padding: 0.9rem;
    }

    .card-name {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
        font-weight: 700;
    }

    .card-description {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
        color: #8b7355;
    }

    .card-footer {
        padding-top: 0.8rem;
        gap: 0.5rem;
    }

    .card-price {
        font-size: 1rem;
    }

    .popular-badge {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
        top: 6px;
        right: 6px;
        font-weight: 700;
    }

    .menu-description {
        display: none;
    }

    .menu-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 1rem;
    }

    .menu-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
        min-height: 44px;
        min-width: 140px;
        border-radius: 25px;
        touch-action: manipulation;
    }

    .menu-cta:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(92, 74, 66, 0.25);
    }
}

/* EXTRA SMALL MOBILE (Below 320px) */
@media (max-width: 319px) {
    .menu-title {
        font-size: 1.3rem;
    }

    .menu-subtitle {
        font-size: 0.85rem;
    }

    .tab-button {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }

    .card-name {
        font-size: 0.9rem;
    }

    .card-description {
        font-size: 0.7rem;
    }

    .card-price {
        font-size: 0.95rem;
    }

    .menu-footer {
        gap: 0.8rem;
    }

    .menu-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        min-width: 120px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly focus states */
@media (hover: none) and (pointer: coarse) {

    .tab-button:focus,
    .menu-cta:focus {
        outline: 2px solid var(--deep-brown);
        outline-offset: 2px;
    }

    .card-image {
        transition: none;
    }

    .menu-card:active {
        transform: translateY(-4px);
    }
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   WhatsApp Widget
   Vienna Bakehouse & Kitchen
   ============================================ */

.whatsapp-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;

    display: flex;
    align-items: center;

    text-decoration: none;
    cursor: pointer;
}

/* Icon */
.whatsapp-widget img {
    width: 30px;
    height: auto;
    z-index: 2;
}

/* Hidden Text */
.wa-text {
    background: #ffffff;
    color: #333;

    padding: 8px 14px;
    border-radius: 20px;

    font-size: 13px;
    font-weight: 500;

    margin-right: 8px;

    white-space: nowrap;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: translateX(20px);

    transition: all 0.25s ease;

    pointer-events: none;
}

/* Expand on Hover */
.whatsapp-widget:hover .wa-text {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-widget img {
        width: 26px;
        height: auto;
    }
}

/* Print Styles */
@media print {
    .whatsapp-widget {
        display: none;
    }
}

/* ==================== LARGE SCREEN CONTAINER ==================== */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}