@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

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

:root {
    /* Color Palette */
    --accent-color: #e05200; /* Client Orange Accent */
    --accent-hover: #ff6a00;
    --gold-color: #B38F6F;    /* Reference Gold/Bronze */
    --bg-dark: #121212;      /* Elegant Black background */
    --bg-charcoal: #1c1c1c;  /* Charcoal card background */
    --bg-light: #ffffff;
    --bg-cream: #F8F7F4;     /* Cream warm background */
    
    /* Text Colors */
    --text-light: #f5f5f5;
    --text-dark: #222222;
    --text-muted-light: #a0a0a0;
    --text-muted-dark: #666666;
    
    /* Fonts */
    --font-headings: 'Marcellus', serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Layout Variables */
    --max-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 10px 30px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

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

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

/* UTILITY CLASSES */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-color); }
.text-accent { color: var(--accent-color); }
.text-light { color: var(--text-light); }

.section-padding {
    padding: 6rem 0;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-color);
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1rem auto 0 auto;
}

.bg-dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-cream-section {
    background-color: var(--bg-cream);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.btn-outline:hover {
    background-color: var(--gold-color);
    color: var(--bg-dark);
}

.btn-white {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: transparent;
    border-color: var(--bg-light);
    color: var(--bg-light);
}

/* HEADER & NAVIGATION */
.site-header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #000000; /* Solid black background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 70px;
    background-color: #000000; /* Solid black background when sticky */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-container {
    height: 100%;
}

/* Hide mobile header on desktop */
.mobile-header {
    display: none;
}

/* Desktop Header 3-Column Layout (Restora style) */
.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-col-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.logo-wrapper {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    height: 100%;
    max-height: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-wrapper:hover .logo {
    transform: scale(1.05);
}

.nav-col-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-col-left .nav-menu li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2.25rem;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

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

/* Mobile Nav Toggle */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
    z-index: 1100;
}

/* HERO SLIDER */
.hero-slider-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px; /* offset for sticky header */
    padding-bottom: 120px; /* Push content upwards to clear bottom overlap */
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold-color);
    margin-bottom: 1rem;
    display: block;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s 0.2s ease, opacity 0.8s 0.2s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s 0.4s ease, opacity 0.8s 0.4s ease;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s 0.6s ease, opacity 0.8s 0.6s ease;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s 0.8s ease, opacity 0.8s 0.8s ease;
}

.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-btns,
.hero-slide.active .hero-logo-large-wrapper {
    transform: translateY(0);
    opacity: 1;
}

/* Slide 3 Large Logo Styles */
.hero-logo-large-wrapper {
    margin-bottom: 1rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s 0.4s ease, opacity 0.8s 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-large {
    width: 380px;
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.25));
    animation: logoPulseGlow 4s infinite ease-in-out;
}

@keyframes logoPulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
        transform: scale(1.02);
    }
}

/* Slider Controls */
.slider-arrows {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.5);
}

/* OVERLAP FEATURES & CATEGORIES SECTION */
.overlap-features-section {
    position: relative;
    background-color: var(--bg-cream); /* Light cream */
    padding: 8rem 0 6rem; /* Extra top padding to accommodate overlapping dish */
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.overlap-container {
    position: relative;
}

/* Central overlapping circular dish wrapper */
.overlap-circle-wrapper {
    position: absolute;
    top: -8rem; /* Overlap border boundary by sitting centered on the top border of the section */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    z-index: 20;
}

.overlap-dish-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid var(--bg-cream); /* Blends image border into cream section background */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    background-color: #000;
    transition: var(--transition-smooth);
}

.overlap-circle-wrapper:hover .overlap-dish-img {
    transform: scale(1.03);
}

/* Curved background thin arch lines surrounding the dish */
.overlap-circle-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 720px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Features Grid Layout surrounding the circle */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-spacer {
    height: 1px; /* Empty column block to prevent grid overlap with the circular dish */
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.feature-left {
    text-align: right;
    align-items: flex-end;
}

.feature-right {
    text-align: left;
    align-items: flex-start;
}

.feature-bottom {
    grid-column: 1 / span 3;
    max-width: 550px;
    margin: 3.5rem auto 0;
    text-align: center;
    align-items: center;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-left .feature-header {
    flex-direction: row-reverse;
}

.feature-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.feature-title {
    font-family: 'Marcellus', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted-dark);
    max-width: 380px;
}

.feature-bottom .feature-desc {
    max-width: 100%;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-single-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-single-img {
    transform: scale(1.03);
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-muted-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    font-size: 1.5rem;
    color: var(--gold-color);
}

.about-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 700;
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

/* MENU HIGHLIGHTS */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.highlight-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-img {
    transform: scale(1.08);
}

.highlight-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.highlight-info {
    padding: 2rem;
}

.highlight-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.highlight-title {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.highlight-price {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    color: var(--accent-color);
}

.highlight-desc {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
    min-height: 48px;
}

.highlight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-order-btn {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-order-btn:hover {
    color: var(--accent-hover);
}

.highlight-stars {
    color: #ffb703;
    font-size: 0.85rem;
}

/* TABBED MENU */
.tab-menu-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab-btn {
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.menu-tab-content {
    display: none;
}

.menu-tab-content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0.75rem 0;
    transition: var(--transition-smooth);
}

.menu-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.menu-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    position: relative;
}

.menu-item-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding-right: 0.75rem;
    z-index: 2;
}

.menu-item-price {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    color: var(--accent-color);
    background-color: var(--bg-light);
    padding-left: 0.75rem;
    z-index: 2;
}

.menu-item-head::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    border-bottom: 1px dashed rgba(0,0,0,0.15);
    z-index: 1;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    font-style: italic;
}

/* SPECIAL OFFERS / CTA BANNER */
.cta-section-fullwidth {
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    overflow: hidden;
}

.cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: var(--bg-charcoal);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.cta-section-fullwidth .cta-banner {
    border-radius: 0;
    box-shadow: none;
}

.cta-image-wrapper {
    height: 420px;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content-wrapper {
    padding: 4rem;
    color: var(--text-light);
}

.cta-offer-badge {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.cta-content-wrapper h2 {
    margin-bottom: 1.5rem;
}

.cta-content-wrapper p {
    color: var(--text-muted-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    height: 280px;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--box-shadow);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 82, 0, 0.85); /* Accent Orange color transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item-overlay i {
    color: var(--text-light);
    font-size: 2rem;
    transform: scale(0.7);
    transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* TESTIMONIALS SECTION */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    text-align: center;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-quote {
    font-family: var(--font-headings);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--accent-color);
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gold-color);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-arrow {
    background: none;
    border: none;
    color: var(--text-muted-light);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.testimonial-arrow:hover {
    color: var(--accent-color);
}

/* RESERVATION & CONTACT SECTION */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-form-wrapper {
    background-color: var(--bg-light);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    border: 1px solid rgba(0,0,0,0.05);
}

.booking-form-wrapper h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-muted-dark);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(224, 82, 0, 0.2);
}

.contact-info-wrapper {
    padding-top: 1rem;
}

.contact-details-list {
    list-style: none;
    margin-bottom: 3.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.contact-detail-icon {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.contact-detail-text h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
}

.opening-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.opening-hours-table td {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

.opening-hours-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.opening-hours-table tr:last-child {
    border-bottom: none;
}

.opening-hours-table td.day {
    font-weight: 700;
    color: var(--text-dark);
}

.opening-hours-table td.hours {
    text-align: right;
}

/* FOOTER */
.site-footer {
    background-color: #0d0d0d; /* very deep black/grey background */
    color: var(--text-light);
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-body);
    margin-top: auto; /* push to bottom in flex column */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3.5rem;
}

/* FOOTER SECTION BLOCKS */
.footer-block {
    text-align: left;
}

.footer-title {
    font-family: var(--font-heading); /* Marcellus font */
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* OPENING HOURS */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted-light);
}

.footer-hours li .day {
    font-weight: 700;
    color: var(--text-light);
}

/* CONTACT LIST */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    color: var(--text-muted-light);
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--accent-color); /* Brand orange color */
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 16px;
    text-align: center;
}

/* CENTER COL HIGHLIGHT BOX */
.footer-col-center {
    height: 100%;
}

.footer-highlight-box {
    background-color: var(--gold-color); /* Restora highlight background (#B38F6F) */
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: 0; /* Sharp edges to match reference kit */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 2.2rem;
    color: var(--text-light);
}

.footer-brand span {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--text-light);
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* SOCIAL CIRCLES */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.footer-socials a {
    background-color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color); /* Gold icons to contrast with white circles */
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* GOOGLE RATING BLOCK */
.footer-google-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.google-g-logo {
    background-color: #ffffff;
    color: var(--gold-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.google-rating-details {
    display: flex;
    flex-direction: column;
}

.google-rating-details .rating-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.google-rating-details .stars-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}

.google-rating-details .rating-score {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    margin-right: 0.35rem;
}

.google-rating-details .stars-row i {
    color: #ffffff; /* White stars like reference image! */
    font-size: 0.8rem;
}

.google-rating-details .reviews-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.google-rating-details .reviews-link:hover {
    color: #ffffff;
}

.google-review-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-left: 1.5rem;
    transition: var(--transition-smooth);
}

.google-review-qr-container:hover {
    transform: scale(1.05);
}

.google-review-qr {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    padding: 2px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.google-review-qr-container .qr-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* RIGHT COLUMN SPLIT LINKS */
.footer-split-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
}

.footer-split-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-split-links li i {
    font-size: 0.65rem;
    color: #ffffff; /* White caret arrows like reference */
    margin-top: 0.05rem;
}

.footer-split-links a {
    color: var(--text-muted-light);
    transition: var(--transition-smooth);
}

.footer-split-links a:hover {
    color: var(--accent-color);
    padding-left: 3px;
}

/* FOOTER BOTTOM BAR */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem 0;
    text-align: center;
    color: var(--text-muted-light);
    font-size: 0.85rem;
}

/* MODAL / RESERVATION SUCCESS */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--box-shadow-hover);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.success-modal.active .success-modal-content {
    transform: translateY(0);
}

.success-modal-icon {
    font-size: 4rem;
    color: #2a9d8f;
    margin-bottom: 1.5rem;
}

.success-modal-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-modal-desc {
    color: var(--text-muted-dark);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .site-header {
        height: 70px;
    }
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-content {
        padding-right: 0;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop header and show mobile header */
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .mobile-nav-drawer {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #121212;
        padding-top: 3rem;
        transition: 0.4s ease-in-out;
        z-index: 999;
    }
    
    .mobile-nav-drawer.active {
        left: 0;
    }
    
    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .mobile-nav-links .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--text-light);
        text-transform: uppercase;
        padding: 0.5rem 1.5rem;
        height: auto;
        display: inline-block;
        background-color: transparent;
    }
    
    .mobile-nav-links .nav-link:hover,
    .mobile-nav-links .nav-link.active {
        color: var(--accent-color);
        background-color: transparent !important;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .menu-tab-content.active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-banner {
        grid-template-columns: 1fr;
    }
    
    .cta-image-wrapper {
        height: 280px;
    }
    
    .cta-content-wrapper {
        padding: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-bar {
        padding: 1.5rem 0;
        text-align: center;
    }

    /* Overlap section mobile overrides */
    .overlap-features-section {
        padding: 5rem 0 3rem;
    }
    
    .overlap-circle-wrapper {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 3rem;
        width: 250px;
        height: 250px;
    }
    
    .overlap-circle-wrapper::before {
        display: none; /* Hide background arch on mobile */
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-spacer {
        display: none;
    }
    
    .feature-item {
        text-align: center !important;
        align-items: center !important;
    }
    
    .feature-left .feature-header {
        flex-direction: row; /* reset direction */
    }
    
    .feature-bottom {
        grid-column: 1;
        margin-top: 0;
    }

    /* Reset hero content padding on mobile */
    .hero-content {
        padding-bottom: 0;
    }

    /* Hero buttons mobile layout */
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .menu-item-img {
        width: 70px;
        height: 70px;
    }
    .menu-item-row {
        gap: 1rem;
    }
}

/* FLOATING ACTION BUTTONS */
.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-phone {
    background-color: var(--gold-color);
}

.float-phone:hover {
    background-color: #9d7857;
    box-shadow: 0 6px 20px rgba(179, 143, 111, 0.4);
}

.float-book {
    background-color: var(--bg-dark);
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.float-book:hover {
    background-color: var(--gold-color);
    color: var(--bg-dark);
    box-shadow: 0 6px 20px rgba(179, 143, 111, 0.4);
}

.float-order {
    background-color: var(--accent-color);
    animation: pulse-orange 2s infinite;
}

.float-order:hover {
    background-color: #ff6a00;
    box-shadow: 0 6px 20px rgba(224, 82, 0, 0.4);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background-color: #121212;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.floating-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 82, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(224, 82, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 82, 0, 0);
    }
}

/* Adjust layout on small mobile screens to keep FABs usable and not overlap main content */
@media (max-width: 480px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
        gap: 0.75rem;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }
    
    .float-tooltip {
        display: none; /* Hide tooltips on mobile touch screens */
    }
}

/* STEAM / SMOKE EFFECT OVER DISH */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 25;
}

.smoke-wisp {
    position: absolute;
    bottom: 30%;
    left: 50%;
    width: 60px;
    height: 120px;
    background: radial-gradient(circle, rgba(245, 245, 245, 0.55) 0%, rgba(245, 245, 245, 0.15) 50%, rgba(245, 245, 245, 0) 80%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    transform-origin: bottom center;
}

.wisp-1 {
    animation: rise-smoke-1 4.5s infinite linear;
    animation-delay: 0s;
}

.wisp-2 {
    animation: rise-smoke-2 5.5s infinite linear;
    animation-delay: 1.5s;
}

.wisp-3 {
    animation: rise-smoke-3 4s infinite linear;
    animation-delay: 2.8s;
}

@keyframes rise-smoke-1 {
    0% {
        transform: translateX(-50%) translateY(20px) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.65;
    }
    50% {
        transform: translateX(-60%) translateY(-50px) scale(1.2) rotate(-4deg);
        opacity: 0.4;
    }
    100% {
        transform: translateX(-40%) translateY(-140px) scale(1.8) rotate(4deg);
        opacity: 0;
    }
}

@keyframes rise-smoke-2 {
    0% {
        transform: translateX(-50%) translateY(20px) scale(0.7);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    60% {
        transform: translateX(-40%) translateY(-65px) scale(1.3) rotate(6deg);
        opacity: 0.35;
    }
    100% {
        transform: translateX(-60%) translateY(-150px) scale(2.0) rotate(-6deg);
        opacity: 0;
    }
}

@keyframes rise-smoke-3 {
    0% {
        transform: translateX(-50%) translateY(20px) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    40% {
        transform: translateX(-55%) translateY(-45px) scale(1.1) rotate(-2deg);
        opacity: 0.45;
    }
    100% {
        transform: translateX(-45%) translateY(-130px) scale(1.6) rotate(2deg);
        opacity: 0;
    }
}

/* SUBPAGE STYLES */
.subpage-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subpage-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Dark screen overlay */
    z-index: 1;
}

.subpage-banner-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.subpage-banner-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.breadcrumbs {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-muted-light);
}

.breadcrumbs a {
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: var(--gold-color);
    margin-left: 0.5rem;
}

/* TWO ROW GALLERY */
.gallery-2rows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-2rows .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
}

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

.gallery-2rows .gallery-item:hover img {
    transform: scale(1.08);
}

/* CONTACT & RESERVATION LAYOUT */
.contact-wrapper-main {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 2.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    background-color: rgba(224, 82, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card-details h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-card-details p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

.contact-map-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    background-color: #fafafa;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(224, 82, 0, 0.08);
}

/* BLOG LAYOUT */
.blog-wrapper-main {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

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

.blog-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* RESPONSIVE SUBPAGES */
@media (max-width: 992px) {
    .gallery-2rows {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-2rows {
        grid-template-columns: 1fr;
    }
    
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .subpage-banner-content h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   LOCAL MENU LISTING STYLES (PREMIUM TWO-COLUMN)
   ========================================================================== */
.menu-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: start;
    position: relative;
    margin-top: 2rem;
}

/* Sidebar navigation */
.menu-sidebar-wrapper {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hide scrollbar but allow scrolling */
.menu-sidebar-wrapper::-webkit-scrollbar {
    width: 4px;
}
.menu-sidebar-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.menu-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-category-link {
    display: block;
    padding: 0.65rem 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-category-link:hover,
.menu-category-link.active {
    color: var(--gold-color);
    border-left-color: var(--gold-color);
    background-color: rgba(212, 175, 55, 0.05);
    padding-left: 1.25rem;
}

/* Menu Content Area */
.menu-items-grid {
    display: flex;
    flex-direction: column;
}

.menu-category-section {
    padding-top: 1.5rem;
    margin-bottom: 3.5rem;
    scroll-margin-top: 120px; /* Smooth scroll offset */
}

.menu-category-heading {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--bg-dark);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 0.6rem;
    text-transform: capitalize;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.35rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.menu-item-row:hover {
    background-color: rgba(212, 175, 55, 0.02);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.menu-item-info {
    flex: 1;
    padding-right: 2rem;
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.35rem;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-color);
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 1.5rem;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    line-height: 1.55;
    margin: 0;
}

.menu-item-action {
    display: flex;
    align-items: center;
    align-self: center;
}

.menu-item-order-btn {
    background-color: var(--bg-charcoal);
    color: var(--text-light);
    border: 1px solid var(--gold-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
}

.menu-item-order-btn:hover {
    background-color: var(--gold-color);
    color: var(--bg-charcoal);
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* Sticky horizontally scrollable category bar on mobile */
@media (max-width: 992px) {
    .menu-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-sidebar-wrapper {
        position: sticky;
        top: 80px;
        left: 0;
        width: 100%;
        max-height: none;
        overflow-y: visible;
        overflow-x: auto;
        white-space: nowrap;
        background-color: #ffffff;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 100;
        padding: 0.6rem 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    
    .menu-sidebar-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar Webkit */
    }
    
    .menu-categories-list {
        display: flex;
        gap: 0.6rem;
    }
    
    .menu-category-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 0.5rem 0.85rem;
        font-size: 0.95rem;
    }
    
    .menu-category-link:hover,
    .menu-category-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--gold-color);
        padding-left: 0.85rem;
        background-color: rgba(212, 175, 55, 0.08);
    }
    
    .menu-category-section {
        scroll-margin-top: 155px; /* mobile scroll margin offset */
    }
}
