/* ==========================================================================
   DESIGN SYSTEM - BELLA ITALIA PIZZERIA
   ========================================================================== */

/* Design Tokens (Stitch Theme Integration) */
:root {
    /* Color Palette */
    --color-primary: #8d0008;       /* Deep Burgundy */
    --color-primary-rgb: 141, 0, 8;
    --color-primary-hover: #b52520; /* Surface Tint Burgundy */
    --color-secondary: #5d5f5f;     /* Slate Secondary */
    --color-bg: #fcf9f8;            /* Warm Linen/Parchment */
    --color-surface: #ffffff;       /* Pure White Card Background */
    --color-surface-dim: #f7eae8;   /* Warm Rose/Burgundy Parchment */
    --color-text: #1c1b1b;          /* Off-Black Text */
    --color-text-muted: #5a403d;    /* Warm Muted Text */
    --color-border: #e2beba;        /* Soft Outline Accent */
    --color-outline: #8e706c;       /* Muted Outline */
    --color-accent-gold: #d47a22;   /* Tandoori Gold Accent */
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Spacing & Layout */
    --container-width: 1280px;
    --grid-margin: 24px;
    --grid-gutter: 24px;
    --section-gap-desktop: 120px;
    --section-gap-mobile: 64px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(141, 0, 8, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 12px 32px rgba(141, 0, 8, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 48px rgba(141, 0, 8, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Natural Paper Texture Overlay */
.paper-texture {
    background-image: linear-gradient(rgba(252, 249, 248, 0.96), rgba(252, 249, 248, 0.96)), 
                      url("https://www.transparenttextures.com/patterns/natural-paper.png");
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--grid-margin);
    padding-left: var(--grid-margin);
}

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

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

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.9375rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 0, 8, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary-outline:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Icons styling */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
    vertical-align: middle;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    background-color: rgba(252, 249, 248, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 190, 186, 0.3);
    transition: var(--transition-smooth);
}

.navbar.navbar-scrolled {
    height: 70px;
    background-color: rgba(252, 249, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.brand-title-serif {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.625rem;
    color: var(--color-primary);
    line-height: 1.1;
}

.brand-subtitle-sans {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-left: 2px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   MOBILE SIDE DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0.4s;
}

.mobile-drawer.open {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 27, 27, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-lg);
    padding: 32px var(--grid-margin);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(141, 0, 8, 0.1);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.drawer-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 190, 186, 0.2);
}

.drawer-link:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.drawer-hours-summary {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: var(--color-primary);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    transform: scale(1.05);
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(141, 0, 8, 0.3) 0%,
        rgba(28, 27, 27, 0.8) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--color-border);
    margin-bottom: 48px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-cta-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 20;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   SECTIONS & GRID SYSTEM
   ========================================================================== */
.section {
    position: relative;
}

.py-section-desktop {
    padding-top: var(--section-gap-desktop);
    padding-bottom: var(--section-gap-desktop);
}

.section-alt {
    background-color: var(--color-surface-dim);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 64px;
}

.section-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.2;
}

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

.divider-accent {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 16px auto 0 auto;
    border-radius: var(--radius-full);
}

.divider-accent.text-left {
    margin-left: 0;
}

.divider-accent.bg-accent {
    background-color: var(--color-border);
}

/* ==========================================================================
   FEATURED DISHES
   ========================================================================== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gutter);
}

.featured-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 190, 186, 0.2);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(141, 0, 8, 0.15);
}

.card-img-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(141, 0, 8, 0.2);
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shadow-xl {
    box-shadow: var(--shadow-lg);
}

.about-accent-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-surface);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--color-primary);
}

.about-accent-badge .material-symbols-outlined {
    color: var(--color-primary);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.paragraph-lead {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.paragraph-body {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.feature-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* ==========================================================================
   MENU SECTION WITH DYNAMIC TABS
   ========================================================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.menu-tab {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background-color: var(--color-surface);
    color: var(--color-text-muted);
    border: 1px solid rgba(226, 190, 186, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.menu-tab.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(141, 0, 8, 0.15);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

.menu-column {
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

/* Hide animations for filterable categories */
.menu-column.hidden {
    display: none;
    opacity: 0;
}

.menu-column-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.menu-column-title .title-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.menu-column-title .title-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-border);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-item-row {
    display: flex;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.menu-item-row:hover {
    background-color: rgba(141, 0, 8, 0.03);
    border-left-color: var(--color-primary);
    transform: translateX(4px);
}

.menu-item-content {
    width: 100%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.menu-item-row:hover .menu-item-name {
    color: var(--color-primary);
}

.menu-item-dots {
    flex-grow: 1;
    margin: 0 12px;
    border-bottom: 1px dotted var(--color-outline);
    opacity: 0.4;
}

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
}

.menu-item-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Sidebar Promotion Card */
.menu-promo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-md);
}

.menu-promo-card .promo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transition: var(--transition-smooth);
}

.menu-promo-card:hover .promo-bg {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    z-index: 10;
}

.promo-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-border);
    margin-bottom: 6px;
}

.promo-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-content p {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* ==========================================================================
   GALLERY GRID (REPLACED DUPLICATES)
   ========================================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

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

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

.item-small {
    grid-column: span 4;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        to bottom,
        rgba(141, 0, 8, 0) 40%,
        rgba(141, 0, 8, 0.9) 100%
    );
    color: #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay .material-symbols-outlined {
    font-size: 2.25rem;
    margin-bottom: 12px;
    align-self: flex-start;
}

.gallery-hover-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-hover-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

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

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
    border-radius: var(--radius-md);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.25;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--color-primary);
}

.quote-author {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(141, 0, 8, 0.15);
    padding-top: 12px;
    display: inline-block;
    width: 60px;
}

/* ==========================================================================
   LOCATION & HOURS
   ========================================================================== */
.location-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.detail-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.detail-text h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-text p {
    font-size: 1.125rem;
    color: var(--color-text);
}

.location-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Hours Card Overlay */
.hours-card {
    background-color: var(--color-surface-dim);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 190, 186, 0.4);
}

.hours-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(226, 190, 186, 0.3);
    font-size: 0.9375rem;
}

.hours-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-row span {
    color: var(--color-text-muted);
}

.hours-row strong {
    color: var(--color-text);
    font-weight: 700;
}

/* Interactive Leaflet Map Wrapper & Customizations */
.map-wrapper {
    position: relative;
    aspect-ratio: 4 / 3.5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--color-surface-dim);
    border: 1px solid var(--color-border);
}

.leaflet-container {
    background: var(--color-surface-dim) !important;
    font-family: var(--font-body) !important;
}

.leaflet-bar {
    border: none !important;
    box-shadow: var(--shadow-sm) !important;
}

.leaflet-bar a {
    background-color: var(--color-surface) !important;
    color: var(--color-primary) !important;
    border-bottom: 1px solid var(--color-border) !important;
    transition: var(--transition-fast) !important;
}

.leaflet-bar a:hover {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
}

.leaflet-popup-content-wrapper {
    background: var(--color-surface) !important;
    color: var(--color-text) !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-md) !important;
    border-left: 4px solid var(--color-accent-gold) !important;
}

.leaflet-popup-tip {
    background: var(--color-surface) !important;
}

.leaflet-popup-content {
    margin: 14px 18px !important;
    line-height: 1.4 !important;
}

.leaflet-popup-content h4 {
    font-family: var(--font-heading) !important;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 1.1rem;
}

.leaflet-popup-content p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0 !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-primary);
    color: #ffffff;
    border-top: none;
    padding: 80px 0 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-logo .brand-title-serif {
    color: #ffffff;
}

.footer-logo .brand-subtitle-sans {
    color: var(--color-border);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-border);
}

.footer-link:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-border);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 32px;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--color-border);
    opacity: 0.85;
}

/* ==========================================================================
   SCROLL REVEAL & KEYFRAME ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Animation Delays */
.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-fade-in-delayed-more {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

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

@keyframes mapPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.05);
    }
}

/* ==========================================================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Breakpoint (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    :root {
        --section-gap-desktop: 80px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-img-wrapper {
        aspect-ratio: 16 / 10;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gallery-grid {
        grid-template-rows: repeat(2, 220px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .map-wrapper {
        aspect-ratio: 16 / 9;
    }
}

/* Mobile Breakpoint (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Navbar styling adjustments */
    .desktop-nav,
    .btn-nav-cta {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    /* Hamburger Active/Open State Animation */
    .mobile-drawer-open-button .bar-1 {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-drawer-open-button .bar-2 {
        opacity: 0;
    }
    
    .mobile-drawer-open-button .bar-3 {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section {
        min-height: 80vh;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .item-large,
    .item-small {
        grid-column: span 12;
    }
    
    .item-large {
        aspect-ratio: 4 / 3;
    }
    
    .item-small {
        aspect-ratio: 4 / 3;
    }
    
    .testimonials-grid {
        margin-top: 40px;
    }
    
    .footer-nav {
        gap: 20px;
    }
}

/* Small Phone Breakpoint (max-width: 480px) { */
@media screen and (max-width: 480px) {
    :root {
        --grid-margin: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-accent-badge {
        padding: 12px 16px;
        bottom: 16px;
        right: 16px;
    }
    
    .menu-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .menu-tab {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
    
    .menu-item-name {
        font-size: 1.125rem;
    }
    
    .quote-text {
        font-size: 1.125rem;
    }
    
    .hours-card {
        padding: 20px;
    }
    
    .detail-text p {
        font-size: 1rem;
    }
}
