/* Global Styles */
:root {
    /* Use brand colors from variables.css - no overrides needed */
    --primary-color-rgb: 15, 38, 86; /* RGB values for Navy Blue */
    --text-secondary: rgba(15, 38, 86, 0.85); /* Secondary text using Navy Blue */
    
    /* Additional shadow variables using brand colors */
    --shadow-ambient: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 8px 20px rgba(0, 0, 0, 0.12);
    
    /* Surface variations for cards and elevated elements */
    --surface-overlay: rgba(255, 255, 255, 0.95); /* Overlays */
    --surface-accent: rgba(15, 38, 86, 0.1); /* Accent surface using Navy Blue */
    
    /* Input field variables using brand colors */
    --input-background: #FFFFFF;
    --input-border: rgba(15, 38, 86, 0.15);
    --input-text: var(--text-dark);
    --input-placeholder: rgba(15, 38, 86, 0.5);
    --input-focus-border: var(--secondary-color);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    /* Base font sizes */
    --font-size-base: 16px;
    --font-size-h1: 3rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.5rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    
    /* Font families */
    --font-family-primary: 'Inter', sans-serif;
    --font-family-heading: 'Inter', sans-serif;
}

/* Single-theme mode: removed Christmas theme and theme-option UI */

/* Single-theme mode: removed theme-option variations */

/* Legacy evening/dark overrides removed */

/* Single-theme mode: removed theme-option state overrides */

/* Update the appearance of the evening theme option */
/* Single-theme mode: removed theme-option variation */

/* Single-theme mode: removed evening/dark lightbox background overrides */

/* Single-theme mode: removed evening/dark close-lightbox and submit overrides */

/* Single-theme mode: removed evening contact/link/selection overrides */

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

body {
    font-family: var(--font-family-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

main section {
    scroll-margin-top: 110px;
}

main section.has-divider {
    position: relative;
}

main section.has-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--color-navy-rgb), 0.18) 18%, rgba(var(--color-terracotta-rgb), 0.55) 50%, rgba(var(--color-navy-rgb), 0.18) 82%, transparent 100%);
    transform: translateX(-50%);
    opacity: 0.85;
    display: none;
    pointer-events: none;
    z-index: 5;
}

main section + section.has-divider::before {
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-family-heading);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--brand-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Header styles are handled in layout.css to avoid conflicts */

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu a {
    padding: 0.75rem 1rem;
    display: block;
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--hover-color);
    color: var(--primary-color);
}

/* Mobile navigation styles are handled in hamburger-menu.css */

/* Dark theme support - Nav menu styles moved to layout.css */

/* ========================================
   MENU PAGE STYLES
======================================== */

/* Menu Categories */
.menu-categories {
    padding: 4rem 0 3rem;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-family-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
}

.filter-btn {
    background-color: rgba(var(--color-cream-rgb), 0.95);
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    color: var(--color-primary);
    padding: 0.7rem 1.3rem;
    border-radius: var(--border-radius-full);
    min-height: 44px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-btn:hover,
.filter-btn:focus-visible {
    background-color: rgba(var(--color-cream-rgb), 1);
    border-color: rgba(var(--color-primary-rgb), 0.3);
    color: var(--color-primary);
    box-shadow: 0 8px 16px rgba(var(--color-navy-rgb), 0.08);
    transform: translateY(-1px);
    outline: 3px solid rgba(var(--color-primary-rgb), 0.12);
    outline-offset: 2px;
}

.filter-btn.active {
    background-color: var(--brand-red);
    color: #FFFFFF;
    border-color: var(--brand-red);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.filter-btn.active:hover,
.filter-btn.active:focus-visible {
    background-color: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
}

.filter-btn:focus-visible {
    outline: none;
}

.filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(12, 35, 64, 0.15);
}

/* Menu Items - Complete Reset */
.menu-items {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.menu-items .container {
    max-width: 900px;
}

.menu-category {
    margin-bottom: 3rem;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    border-bottom: 3px solid var(--color-terracotta);
    padding-bottom: 0.75rem;
    font-family: var(--font-family-primary);
    position: relative;
}

.category-title:first-of-type {
    margin-top: 0;
}

.menu-grid {
    display: block;
}

.menu-item {
    padding: 1.25rem 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(12, 35, 64, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.menu-item:hover {
    background-color: rgba(12, 35, 64, 0.02);
    transform: translateX(4px);
    border-bottom-color: rgba(12, 35, 64, 0.12);
}

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

.menu-item-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    grid-column: 1;
    grid-row: 1;
    font-family: var(--font-family-primary);
    line-height: 1.4;
}

.item-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0 0 !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1.6;
    grid-column: 1;
    grid-row: 2;
}

.item-details {
    display: flex;
    align-items: center;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    text-align: right;
    white-space: nowrap;
    font-family: var(--font-family-primary);
}

/* Mobile */
@media (max-width: 768px) {
    .menu-items {
        padding: 2rem 0;
    }
    
    .menu-category {
        margin-bottom: 2.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin: 2rem 0 1.25rem 0;
    }
    
    .menu-item {
        padding: 1rem 0;
    }
    
    .menu-item:hover {
        transform: translateX(2px);
    }
    
    .menu-item-content {
        grid-template-columns: 1fr auto;
        gap: 0.5rem 1rem;
    }
    
    .item-name {
        font-size: 1.15rem;
    }
    
    .item-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .item-price {
        font-size: 1.15rem;
    }
    
    .menu-note {
        margin: 2rem 0;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}


.item-availability {
    font-size: 0.85rem;
    color: var(--success-color);
    background-color: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

/* Special Offers */
.special-offers {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.special-offers .section-header h2,
.special-offers .section-header p {
    color: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.offer-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.offer-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.offer-valid {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* ========================================
   GALLERY PAGE STYLES
======================================== */

/* Gallery page uses the same styles as homepage gallery section */

/* Menu Notes and Subsections */
.menu-note {
    background: rgba(171, 77, 66, 0.08);
    border-left: 4px solid var(--color-terracotta);
    padding: 1.25rem 1.5rem;
    margin: 2.5rem 0;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-note p {
    margin: 0;
}

.menu-subsection {
    margin: 2rem 0;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Footer Logo Styling */
.footer-logo-img {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: none;
    transition: none;
}

.footer-logo-img:hover { filter: none; transform: none; }

/* Dark theme footer logo */
/* legacy dark/evening filters removed */

/* Light theme footer logo */
.footer-logo-img { filter: none; }

/* Responsive Design */
@media (max-width: 768px) {
    .menu-categories {
        padding: 3rem 0 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .category-filters {
        gap: 0.6rem;
        padding: 0;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
        min-height: 40px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .item-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .photo-item img {
        height: 200px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-categories {
        padding: 2.5rem 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
        min-height: 38px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .menu-item {
        padding: 1.25rem;
    }
    
    .item-name {
        font-size: 1.25rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Single-theme mode: removed evening submenu/hamburger overrides */

/* Hero Section */
.hero {
    height: 90vh;
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero h1 {
    font-family: var(--font-family-primary);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Menu Section Styles */
.menu-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
    border-radius: 16px;
    margin: 2rem 0;
}

.menu-section .section-title {
    margin-bottom: var(--spacing-lg);
}

.menu-card {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-distinct);
}

.menu-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md); /* more breathing room */
}

.menu-icon {
    font-size: 2.5rem;
    color: var(--color-primary); /* match active theme */
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-icon {
    transform: scale(1.1);
}

.menu-card h3 {
    font-family: var(--font-family-primary);
    font-size: 1.55rem;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.menu-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.menu-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

/* Prevent hover jank on menu buttons and keep brand contrast */
.menu-buttons .btn {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.menu-buttons .btn:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

@media (max-width: 576px) {
    .menu-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-buttons .btn {
        width: 100%;
    }
}

/* Single-theme mode: removed evening/dark menu-card overrides */

/* Coffee Bar Section */
.coffee-section {
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-xl);
}

.coffee-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.coffee-intro p {
    line-height: 1.8;
    color: var(--text-dark);
}

.coffee-menu {
    max-width: 1000px;
    margin: 0 auto;
}

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

.coffee-item {
    background-color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.coffee-item h3 {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.coffee-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Best Sellers Section */
#best-sellers {
    margin: 2rem 0;
    background-color: var(--color-cream);
    padding: 3rem 0;
}

#best-sellers .menu-section {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

/* Remove inherited white strip and padding from generic menu-items within Best Sellers */
#best-sellers .menu-items {
    background-color: transparent !important;
    padding: 0 !important;
}

/* Remove extra border/background around images so only the card remains white */
#best-sellers .menu-item-image {
    background-color: transparent !important;
    border: none !important;
}

/* Avoid subtle hover wash from generic menu-item rules inside Best Sellers */
#best-sellers .menu-item:hover {
    background-color: transparent !important;
    transform: none;
}

.best-seller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.best-seller-card {
    background-color: #FFFFFF !important;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    isolation: isolate;
    position: relative;
    border: none !important;
    margin: 0 !important;
}

/* Ensure menu-item styles don't interfere with best-seller-card */
#best-sellers .menu-item.best-seller-card {
    background-color: #FFFFFF !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-bottom: none !important;
    cursor: default;
}

/* Desktop hover effect only */
@media (hover: hover) and (pointer: fine) {
    #best-sellers .best-seller-card:hover {
        transform: scale(1.02) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        background-color: #FFFFFF !important;
    }
}

/* Override any menu-item hover styles for best-seller-cards */
#best-sellers .menu-item.best-seller-card:hover {
    background-color: #FFFFFF !important;
    transform: scale(1.02) !important;
}

.best-seller-card .menu-item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background-color: #f5f5f5;
    flex-shrink: 0;
    margin: 0;
}

.best-seller-card .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.best-seller-card .menu-item-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80px;
    background-color: #FFFFFF;
}

.best-seller-card .menu-item-title {
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--color-primary);
    line-height: 1.4;
    text-align: center;
}

/* Tablet: 2 columns */
@media (max-width: 1023px) {
    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile: 1 column, centered */
@media (max-width: 767px) {
    #best-sellers {
        padding: 2rem 0;
    }
    
    .best-seller-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .best-seller-card .menu-item-title {
        font-size: 16px;
    }
}

.branch-details h3 {
    color: var(--text-dark);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius-md);
    background-color: var(--input-background);
    color: var(--input-text);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--input-focus-border);
    box-shadow: 0 0 0 3px rgba(217, 166, 80, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spinner {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.spinner.hidden {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

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

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }
}

/* Single-theme mode: removed evening contact form overrides */

[data-theme="evening"] .form-group input:focus,
[data-theme="evening"] .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(var(--accent-color-rgb), 0.2);
}

[data-theme="evening"] .form-group input::placeholder,
[data-theme="evening"] .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Styles - specific overrides */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    align-items: start; /* align columns consistently on tablet/mobile */
}


/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-cream);
    padding: 4rem 0 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

footer a:hover,
footer a:focus-visible {
    color: var(--brand-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--brand-gold);
    letter-spacing: 0.02em;
}

.footer-logo-link {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
    background-color: var(--brand-gold);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-hours-group h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--brand-gold);
}

.footer-hours-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours-group li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    gap: 0.75rem;
}

.footer-hours-group .day {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.footer-hours-group .time {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-align: right;
}

.footer-hours-group .time.closed {
    color: var(--brand-gold);
    font-weight: 600;
}

.footer-nav,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--brand-gold);
}

.footer-contact-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    line-height: 1.5;
}

.footer-contact-list i {
    font-size: 1rem;
    line-height: 1;
    min-width: 18px;
    text-align: center;
    color: var(--brand-gold);
    margin-top: 0.15rem;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
    color: var(--brand-gold);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    margin-top: 1.2rem;
    font-size: 0.92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.footer-meta a {
    font-weight: 600;
    color: var(--brand-gold);
    transition: color 0.2s ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
    color: var(--color-cream);
    text-decoration: underline;
}

.footer-meta-left,
.footer-meta-right {
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-column {
        align-items: flex-start;
    }

    .footer-logo-link {
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        height: 70px;
        max-width: 160px;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-meta-left,
    .footer-meta-right {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-meta {
        font-size: 0.85rem;
    }
}

/* Purged legacy dark theme overrides */

/* Loading Screen Styles - specific overrides */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    gap: 3rem;
    transition: opacity 0.5s ease-out;
}

.loading-logo {
    max-width: 220px;
    width: 100%;
    margin-bottom: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.loading-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.loading-text {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: var(--primary-color);
    text-align: center;
    margin: 0.5rem 0 1.5rem;
    animation: fadeIn 0.5s ease-out 0.4s both;
}

.loading-progress {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out 0.6s both;
}

.loading-progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    width: 0;
    transition: width 0.3s ease-in-out;
}

.loading-screen.hidden,
.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .loading-screen {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }

    .loading-logo {
        max-width: 180px;
    }

    .loading-text {
        font-size: 1.1rem;
    }

    .loading-progress {
        max-width: 280px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .loading-screen {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }

    .loading-logo {
        max-width: 150px;
    }

    .loading-text {
        font-size: 1rem;
        margin: 0.5rem 0 1rem;
    }

    .loading-progress {
        max-width: 240px;
        height: 5px;
    }
}

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

@keyframes roll {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Dark Theme Support */
[data-theme="evening"] .loading-screen {
    background-color: var(--background-dark);
}

[data-theme="evening"] .loading-text {
    color: var(--accent-color);
}

/* Single-theme mode: removed evening loading progress overrides */

@media (max-width: 768px) {
    .contact-form-container {
        padding: 0 var(--spacing-sm);
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }
}

/* Mobile Responsive Styles for Gallery - Consolidated in components.css */

/* Lightbox styling - Enhanced and Mobile-First */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
    height: 100%;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    object-fit: contain;
    transition: transform 200ms ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.close-lightbox {
    position: fixed;
    top: 30px;
    right: 30px;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 300ms ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.close-lightbox:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Single-theme mode: removed evening/dark lightbox overrides */

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .lightbox-image {
        max-height: 85vh;
        border-radius: 8px;
    }
    
    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 1.25rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100%;
        max-height: 100%;
        padding: 10px;
    }
    
    .lightbox-image {
        max-height: 80vh;
        border-radius: 6px;
    }
    
    .close-lightbox {
        top: 15px;
        right: 15px;
        font-size: 1.1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: #FFFFFF;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

[data-theme="evening"] .contact-form,
.dark-theme .contact-form {
    background-color: var(--surface-overlay);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-ambient);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 300ms ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1;
    z-index: 10001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

[data-theme="evening"] .lightbox-nav,
.dark-theme .lightbox-nav {
    color: var(--text-light);
}

[data-theme="evening"] .lightbox-nav:hover,
.dark-theme .lightbox-nav:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0; /* 96px top/bottom */
    background-color: var(--background-light);
}

.about-section .section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 2.5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* 32px tablet/mobile default */
}

.about-text {
    flex: 1;
}

/* Quote styles moved to brand-system.css for consistency */

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

.timeline-item h3 {
    color: var(--primary-color);
    font-family: var(--font-family-heading);
    margin-bottom: 1rem;
}

/* About: heading underline accent (theme-aware) */
.about-section .section-title::after {
    width: 64px;
    height: 4px;
    background: var(--color-secondary);
}

/* Single-theme mode: terracotta about underline override removed */

/* Community focus styles moved to brand-system.css for consistency */

.about-image {
    width: 100%;
    border-radius: var(--border-radius-xl); /* 16px */
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (min-width: 992px) {
    .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem; /* 48px desktop */
    }
    
    .about-text {
        padding-right: 2.5rem;
    }
    
    .about-image {
        flex: 0 0 45%;
    }
}

/* Gallery styles moved to gallery.css */

.dark-theme .lightbox {
    background-color: rgba(0, 0, 0, 0.95);
}

.dark-theme .close-lightbox:hover {
    color: var(--accent-color);
}

[data-theme="evening"] .footer-credit a,
.dark-theme .footer-credit a {
    color: var(--accent-gold);
    opacity: 1;
    transition: all 0.2s ease;
}

[data-theme="evening"] .footer-credit a:hover,
.dark-theme .footer-credit a:hover {
    color: var(--accent-gold);
    opacity: 1;
    text-decoration: underline;
}

[data-theme="evening"] .footer-credit i,
.dark-theme .footer-credit i {
    color: var(--accent-gold);
}

[data-theme="evening"] .footer-bottom,
.dark-theme .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="evening"] .copyright,
[data-theme="evening"] .footer-credit,
.dark-theme .copyright,
.dark-theme .footer-credit {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="evening"] p,
[data-theme="evening"] .card-content p,
[data-theme="evening"] .menu-item-description,
[data-theme="evening"] .coffee-item p,
.dark-theme p,
.dark-theme .card-content p,
.dark-theme .menu-item-description,
.dark-theme .coffee-item p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact .whatsapp-contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-contact .whatsapp-contact i {
    margin-right: 8px;
    flex-shrink: 0;
}

.footer-contact .country-code {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 4px;
}

[data-theme="evening"] .footer-contact .country-code {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.3rem;
}

.footer-contact .location-city {
    margin-right: 0.3em;
    font-weight: 500;
    white-space: nowrap;
}

.footer-contact .tel-number {
    margin-left: 0.2em;
    font-weight: 500;
    color: var(--accent-gold);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-contact .whatsapp-contact {
        justify-content: center;
        width: 100%;
    }
    
    .footer-contact li a {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Contact form elements in dark theme */
[data-theme="evening"] .contact-form,
.dark-theme .contact-form {
    background-color: var(--background-card);
    border: none;
    box-shadow: var(--shadow-md);
}

[data-theme="evening"] .form-group label,
.dark-theme .form-group label {
    color: var(--text-dark);
}

[data-theme="evening"] .form-group input,
[data-theme="evening"] .form-group textarea,
.dark-theme .form-group input,
.dark-theme .form-group textarea {
    background-color: var(--input-background);
    border-color: var(--input-border);
    color: var(--input-text);
}

[data-theme="evening"] .form-group input::placeholder,
[data-theme="evening"] .form-group textarea::placeholder,
.dark-theme .form-group input::placeholder,
.dark-theme .form-group textarea::placeholder {
    color: var(--input-placeholder);
}

[data-theme="evening"] .form-group input:focus,
[data-theme="evening"] .form-group textarea:focus,
.dark-theme .form-group input:focus,
.dark-theme .form-group textarea:focus {
    border-color: var(--input-focus-border);
    box-shadow: 0 0 0 2px rgba(164, 124, 72, 0.2);
}

/* Card elements in dark theme */
[data-theme="evening"] .menu-item,
[data-theme="evening"] .branch-card,
.dark-theme .menu-item,
.dark-theme .branch-card {
    background-color: var(--surface-overlay);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-ambient);
}

[data-theme="evening"] .menu-item:hover,
[data-theme="evening"] .branch-card:hover,
.dark-theme .menu-item:hover,
.dark-theme .branch-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: var(--border-distinct);
}

[data-theme="evening"] .menu-item-title,
.dark-theme .menu-item-title {
    color: var(--text-primary);
}

[data-theme="evening"] .menu-item-description,
.dark-theme .menu-item-description {
    color: var(--text-secondary);
}

/* Improve best seller images in dark mode */
[data-theme="evening"] .menu-item-image img,
.dark-theme .menu-item-image img {
    filter: brightness(0.95);
    border-bottom: 1px solid var(--border-distinct);
}

[data-theme="evening"] .menu-item:hover .menu-item-image img,
.dark-theme .menu-item:hover .menu-item-image img {
    filter: brightness(1.05);
}

/* Gallery - Moved to components.css for consistency */

/* Gallery Grid - Moved to components.css for consistency */

/* Gallery item styles moved to components.css for consistency */

/* Gallery item styles moved to components.css for consistency */

/* Gallery styles moved to gallery.css */

/* Responsive adjustments for gallery - Consolidated in components.css */


/* =====================================================
   Section Dividers and Clean Styling
   ===================================================== */
/* Section Dividers - Brand Colored Lines */
.hero {
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-navy));
    border-radius: 2px;
}

.about-section,
#best-sellers,
.menu-section,
.gallery-section,
.locations-section,
.contact-section {
    position: relative;
}

/* Bottom separators with subtle inner shadow between homepage sections */
.about-section::after,
#best-sellers::after,
.menu-section::after,
.gallery-section::after,
.locations-section::after,
.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 -8px 12px -12px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-navy);
    border-radius: 2px;
}

#best-sellers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: var(--color-navy);
    border-radius: 2px;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 3px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-navy);
    border-radius: 2px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-navy), var(--color-terracotta));
    border-radius: 2px;
}

footer {
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-navy), var(--color-terracotta));
}


/* Remove hover lift/scale and shadows on image-bearing components */
.image-container:hover,
.gallery-item:hover,
.menu-item:hover,
.branch-card:hover,
.card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Prevent image scale on hover */
.image-container:hover .about-staff-image,
.menu-item:hover .menu-item-image img,
.branch-card:hover .branch-image img,
.card:hover .card-image img,
.gallery-item:hover img {
    transform: none !important;
}

/* Enhanced Mobile Digital Menu */
@media (max-width: 768px) {
    .menu-items {
        padding: 0.5rem 0 1rem;
    }
    
    .menu-category {
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .category-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .menu-item {
        padding: 0.75rem 0;
    }
    
    .menu-item-content {
        gap: 0.75rem;
    }
    
    .item-name {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .item-description {
        font-size: 0.8rem;
        margin-right: 0.75rem;
    }
    
    .item-price {
        font-size: 1rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .menu-item {
        padding: 0.6rem 0;
    }
    
    .item-name {
        font-size: 0.95rem;
    }
    
    .item-description {
        font-size: 0.75rem;
    }
    
    .item-price {
        font-size: 0.9rem;
        padding: 0.15rem 0.5rem;
    }
}

/* Remove image overlays/captions that appear on hover */
.image-overlay,
.gallery-item .gallery-caption {
    display: none !important;
}
