/*
 * CONSOLIDATED STYLES v4.2.0 - Premium Design System
 * Professional restaurant design with royal blue accents
 * Enhanced animations, glassmorphism, 3D effects
 * All components perfectly aligned - CSS VARIABLES ARCHITECTURE
 * Version: 4.2.0 - Button hover fix, footer hover consistency
 */

/* ============================================
   HEADER & NAVIGATION - ELEGANT DESIGN
   ============================================ */

/* Header Container - Premium Dark with Blue Accents */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
    box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.2);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 30px rgba(var(--color-black-rgb), 0.3);
    border-bottom-color: rgba(var(--color-primary-rgb), 0.25);
}

/* Top Bar - Elegant Contact Info */
.header-top {
    background: rgba(var(--color-black-rgb), 0.3);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.1);
    padding: 0.6rem 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-phone,
.header-email,
.header-address {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(var(--color-white-rgb), 0.9);
    font-size: 0.9rem;
}

.header-phone svg,
.header-email svg,
.header-address svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

/* Google Maps icon - hidden on desktop */
.social-maps {
    display: none;
}

/* Hide menu page description */
.menu-page .page-description {
    display: none;
}

.header-contact a {
    color: rgba(var(--color-white-rgb), 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.header-contact a:hover {
    color: var(--color-accent-light);
}

.header-contact a:hover::after {
    width: 100%;
}

/* Social Icons - Elegant Circle Design */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(var(--color-white-rgb), 0.8);
    background: rgba(var(--color-white-rgb), 0.08);
    border-radius: 50%;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    transition: all 0.3s ease;
}

.header-social a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(var(--color-primary-rgb), 0.4);
}

.header-social svg {
    width: 16px;
    height: 16px;
}

/* Main Header - Logo & Navigation */
.header-main {
    padding: 1.2rem 0;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Site Branding - Elegant Logo */
.site-branding {
    flex: 0 0 auto;
}

.custom-logo {
    height: 55px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(var(--color-black-rgb), 0.2));
}

.custom-logo-link {
    display: block;
    line-height: 0;
    transition: all 0.3s ease;
}

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

.site-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.site-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: inline-block;
}

.site-title a:hover {
    transform: translateX(3px);
}

.site-description {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(var(--color-primary-rgb), 0.9);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Navigation - Premium Menu Design */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-container {
    display: flex;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
}

/* Menu Links - Elegant Blue Underline Effect */
.nav-menu > li > a {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    color: rgba(var(--color-white-rgb), 0.95);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    background: transparent !important;
    border: none !important;
}

/* Blue Underline Effect */
.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-page-ancestor > a {
    color: var(--color-accent-light);
}

.nav-menu > li > a:hover::before,
.nav-menu > li.current-menu-item > a::before {
    width: 80%;
}

.nav-menu > li.current-menu-item > a {
    color: var(--color-accent-light);
    font-weight: 600;
}

/* Dropdown Submenus - Premium Dark Design */
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    box-shadow: 0 10px 40px rgba(var(--color-black-rgb), 0.5);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: rgba(var(--color-white-rgb), 0.9);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu .sub-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.nav-menu .sub-menu a:hover {
    color: var(--color-accent-light);
    background: rgba(var(--color-primary-rgb), 0.15);
    padding-left: 2rem;
}

.nav-menu .sub-menu a:hover::before {
    width: 3px;
}

/* Dropdown Arrow - Elegant Style */
.nav-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.6rem;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.nav-menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle - Premium Blue Button */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: 1px solid rgba(var(--color-white-rgb), 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.4);
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.5);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
}

/* Hamburger Icon - Clean 3 Lines */
.menu-toggle-icon {
    display: block;
    width: 22px;
    height: 16px;
    position: relative;
}

.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle-icon span:nth-child(1) {
    top: 0;
}

.menu-toggle-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle-icon span:nth-child(3) {
    bottom: 0;
}

/* Animated X when menu is open - Perfect Center Cross */
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 150px);
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
        box-shadow: 0 10px 40px rgba(var(--color-black-rgb), 0.6);
        padding: 2rem 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        overflow-y: auto;
        border-top: 2px solid rgba(var(--color-primary-rgb), 0.3);
        z-index: 9998;
        display: none;
    }

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

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        width: 100%;
        text-align: left;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(var(--color-primary-rgb), 0.15);
        background: rgba(var(--color-white-rgb), 0.03);
    }

    .nav-menu > li > a::before {
        display: none;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li.current-menu-item > a {
        background: rgba(var(--color-primary-rgb), 0.15);
        border-color: rgba(var(--color-primary-rgb), 0.4);
    }

    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(var(--color-black-rgb), 0.3);
        margin-top: 0.75rem;
        margin-left: 1.5rem;
        border-left: 3px solid var(--color-primary);
        border-radius: 0 8px 8px 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: all 0.3s ease;
    }

    .nav-menu li.menu-item-has-children.open > .sub-menu {
        max-height: 600px;
        padding: 1rem 0;
    }

    .nav-menu .sub-menu a {
        padding: 0.85rem 1.5rem;
    }

    .nav-menu .sub-menu a::before {
        display: none;
    }

    .nav-menu .sub-menu a:hover {
        padding-left: 2rem;
        background: rgba(var(--color-primary-rgb), 0.15);
    }
}

@media (max-width: 767px) {
    .header-top {
        padding: 0.5rem 0;
    }

    .header-top-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-contact {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    /* Show maps icon in social section on mobile */
    .social-maps {
        display: inline-flex;
    }

    .header-main {
        padding: 1rem 0;
    }

    .custom-logo {
        height: 45px;
    }

    .site-title {
        font-size: 1.6rem;
    }

    .menu-toggle {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Hero Section Mobile Centering */
    .hero-section {
        min-height: 80vh;
        position: relative;
    }

    .hero-section .container {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero-content {
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
        width: auto !important;
        max-width: calc(100% - 2rem) !important;
        box-sizing: border-box !important;
        text-align: center !important;
        z-index: 10 !important;
        position: relative !important;
        pointer-events: auto !important;
    }

    .hero-content * {
        pointer-events: auto !important;
    }

    .hero-buttons {
        position: relative;
        z-index: 20;
    }

    .hero-buttons .btn {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .menu-toggle-text {
        display: none;
    }

    .custom-logo {
        height: 38px;
    }

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

/* ============================================
   PAGE DESIGN - PREMIUM COMPONENTS
   ============================================ */

/* Hero Section - Elegant with Blue Accents */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
}

.hero-section > .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(var(--color-primary-rgb), 0.2), transparent 60%),
        linear-gradient(135deg, rgba(var(--color-black-rgb), 0.7) 0%, rgba(44, 44, 44, 0.85) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(var(--color-black-rgb), 0.3) 0%,
        rgba(var(--color-black-rgb), 0.1) 50%,
        rgba(var(--color-black-rgb), 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    margin-bottom: 2rem;
    color: #fff !important;
    text-shadow: 2px 4px 16px rgba(var(--color-black-rgb), 0.5), 0 0 40px rgba(var(--color-white-rgb), 0.1);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    margin-bottom: 3rem;
    color: rgba(var(--color-white-rgb), 0.95);
    text-shadow: 1px 2px 8px rgba(var(--color-black-rgb), 0.4);
}

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

/* Buttons - Premium Blue Design */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4);
    border: 1px solid rgba(var(--color-white-rgb), 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color-white-rgb), 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(var(--color-primary-rgb), 0.5);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(var(--color-primary-rgb), 0.8);
    box-shadow: 0 8px 25px rgba(var(--color-black-rgb), 0.2);
}

.btn-secondary:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(var(--color-primary-rgb), 0.3);
}

/* Menu Cards - Elegant Design with Blue Accents */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.menu-item-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    position: relative;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-item-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(var(--color-primary-rgb), 0.3);
}

.menu-item-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

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

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.15);
}

.menu-item-content {
    padding: 2rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(var(--color-primary-rgb), 0.2);
}

.menu-item-title {
    flex: 1;
    margin: 0;
    color: var(--color-secondary);
}

.menu-item-price {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.6rem;
    white-space: nowrap;
}

/* Gallery - Premium Grid Design */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.3), rgba(0, 85, 221, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(var(--color-black-rgb), 0.25);
}

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

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

/* Gallery Item Inner */
.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item-inner a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Gallery Item Overlay - Hidden by default, visible on hover */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(var(--color-black-rgb), 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 4;
}

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

/* Gallery Item Info */
.gallery-item-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.gallery-item-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(var(--color-black-rgb), 0.3);
}

.gallery-item-excerpt {
    color: rgba(var(--color-white-rgb), 0.85);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gallery Item Icon */
.gallery-item-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: rgba(var(--color-primary-rgb), 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-item-icon svg {
    width: 20px;
    height: 20px;
}

/* Gallery Preview - Front Page (no click) */
.gallery-preview .gallery-item {
    cursor: default;
}

.gallery-preview .gallery-item:hover {
    transform: none;
}

.gallery-preview .gallery-item img {
    transition: transform 0.4s ease;
}

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

/* Gallery Load More */
.gallery-load-more-wrapper {
    text-align: center;
    margin-top: 3rem;
}

#gallery-load-more {
    min-width: 200px;
}

#gallery-load-more .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-count {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Modern Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-black-rgb), 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(var(--color-black-rgb), 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-info {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 600px;
}

#lightbox-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

#lightbox-description {
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 1rem;
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--color-primary-rgb), 0.9);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 0.9rem;
    background: rgba(var(--color-black-rgb), 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* Lightbox Responsive */
@media (max-width: 991px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    #lightbox-image {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.section-subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section - Premium Blue Design */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(var(--color-white-rgb), 0.03) 50px,
        rgba(var(--color-white-rgb), 0.03) 100px
    );
    animation: patternMove 40s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(var(--color-black-rgb), 0.2);
}

.cta-text {
    color: rgba(var(--color-white-rgb), 0.95);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   ACCESSIBILITY & UX
   ============================================ */

.nav-menu a:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    z-index: 100000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   FOOTER - PREMIUM DARK DESIGN
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-dark) 100%);
    color: #fff;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.footer-widgets {
    padding: 5rem 0 4rem;
    position: relative;
    z-index: 2;
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-widget {
    padding: 0;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(var(--color-white-rgb), 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-widget a {
    color: rgba(var(--color-white-rgb), 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.footer-widget a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-light);
    transition: width 0.3s ease;
}

.footer-widget a:hover {
    color: var(--color-accent-light);
}

.footer-widget a:hover::after {
    width: 100%;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}

.footer-widget ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.footer-widget svg {
    margin-right: 0.75rem;
    vertical-align: middle;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Footer Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-white-rgb), 0.08);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-radius: 50%;
    color: rgba(var(--color-white-rgb), 0.8);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.4);
    padding-left: 0;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(var(--color-black-rgb), 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-info {
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 0.9rem;
}

.site-info a {
    color: var(--color-primary);
}

.site-info a:hover {
    text-decoration: underline;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 0.9rem;
    padding-left: 0;
}

.footer-menu a:hover {
    color: var(--color-accent-light);
}

/* ============================================
   BACK TO TOP BUTTON - BLUE DESIGN
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(var(--color-primary-rgb), 0.5);
}

.back-to-top:hover::before {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* ============================================
   ABOUT SECTION - ELEGANT DESIGN
   ============================================ */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text .section-subtitle {
    margin-bottom: 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

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

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

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.15), rgba(var(--color-primary-rgb), 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .about-feature-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    transform: scale(1.1);
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--color-secondary);
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(var(--color-black-rgb), 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 20px;
    z-index: -1;
}

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

/* ============================================
   FEATURED MENU SECTION
   ============================================ */

.featured-menu-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */

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

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.8), rgba(0, 85, 221, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 5 Brands', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

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

.instagram-item:hover::before,
.instagram-item:hover::after {
    opacity: 1;
}

.instagram-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   RESPONSIVE - FOOTER & EXTRAS
   ============================================ */

@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .footer-widgets {
        padding: 4rem 0 3rem;
    }

    .footer-widget-area {
        gap: 2.5rem;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }
}

@media (max-width: 479px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   PREMIUM DESIGN ENHANCEMENTS v3.3
   ============================================ */

/* --- Page Load Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bluePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(var(--color-primary-rgb), 0);
    }
}

/* Animate elements on page load */
.hero-content {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.section-header {
    animation: fadeInUp 0.8s ease-out both;
}

/* Staggered animation for grid items */
.menu-item-card,
.gallery-item,
.contact-info-item {
    animation: fadeInUp 0.6s ease-out both;
}

.menu-items-grid .menu-item-card:nth-child(1) { animation-delay: 0.1s; }
.menu-items-grid .menu-item-card:nth-child(2) { animation-delay: 0.2s; }
.menu-items-grid .menu-item-card:nth-child(3) { animation-delay: 0.3s; }
.menu-items-grid .menu-item-card:nth-child(4) { animation-delay: 0.4s; }
.menu-items-grid .menu-item-card:nth-child(5) { animation-delay: 0.5s; }
.menu-items-grid .menu-item-card:nth-child(6) { animation-delay: 0.6s; }

.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.35s; }

/* --- Enhanced 3D Card Hover Effects --- */
.menu-item-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.menu-item-card:hover {
    transform: translateY(-12px) rotateX(2deg);
}

.menu-item-card .menu-item-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Card inner glow on hover */
.menu-item-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-item-card:hover::after {
    opacity: 1;
}

/* --- Glassmorphism Effects --- */
.site-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Glassmorphism for mobile menu */
@media (max-width: 991px) {
    .menu-container.active {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    }
}

/* Glassmorphism overlay for hero */
.hero-content {
    background: rgba(var(--color-black-rgb), 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(var(--color-white-rgb), 0.1);
}

/* --- Enhanced Button Micro-interactions --- */
.btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(var(--color-white-rgb), 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-size: 200% 200%;
    background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary-light) 100%);
    animation: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-position 0.4s ease;
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-4px) scale(1.02);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

/* Button shine effect on hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--color-white-rgb), 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

/* --- Subtle Background Textures --- */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--color-primary-rgb), 0.1) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* Decorative dots pattern */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(var(--color-white-rgb), 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

/* Section divider decoration */
.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.3), transparent);
}

/* --- Enhanced Typography --- */
.section-title {
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(var(--color-black-rgb), 0.05);
}

/* Elegant quote styling */
blockquote {
    position: relative;
    padding: 2rem 3rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08), transparent);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #555;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(var(--color-primary-rgb), 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* --- Blue Accent Glow Effects --- */
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    text-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.5);
}

/* Blue glow for icons on hover */
.contact-info-item:hover .contact-info-icon,
.about-feature:hover .about-feature-icon,
.footer-social a:hover {
    box-shadow: 0 0 30px rgba(var(--color-primary-rgb), 0.5);
}

/* Subtle blue glow for focused inputs */
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.15), 0 0 20px rgba(var(--color-primary-rgb), 0.1);
}

/* Price tag blue glow */
.menu-item-price {
    text-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.3);
    transition: all 0.3s ease;
}

.menu-item-card:hover .menu-item-price {
    text-shadow: 0 0 25px rgba(var(--color-primary-rgb), 0.5);
    transform: scale(1.05);
}

/* --- Enhanced Image Effects --- */
.gallery-item {
    transform-style: preserve-3d;
}

.gallery-item:hover {
    transform: translateY(-10px) rotateY(2deg);
}

/* Image shine overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--color-white-rgb), 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 3;
}

.gallery-item:hover::after {
    left: 150%;
}

/* Menu item image overlay enhancement */
.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(var(--color-black-rgb), 0.3) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-item-card:hover .menu-item-image::before {
    opacity: 1;
}

/* --- Enhanced Social Icons --- */
.header-social a,
.footer-social a {
    position: relative;
    overflow: hidden;
}

.header-social a::before,
.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.header-social a:hover::before,
.footer-social a:hover::before {
    width: 100%;
    height: 100%;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 99999;
    transition: width 0.1s ease-out;
}

/* --- Enhanced Footer --- */
.site-footer {
    position: relative;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(var(--color-primary-rgb), 0.1), transparent);
    pointer-events: none;
}

/* Widget title decorative line animation */
.widget-title::after {
    transition: width 0.4s ease;
}

.footer-widget:hover .widget-title::after {
    width: 80px;
}

/* --- Smooth Scroll Snap for Sections --- */
@media (min-width: 992px) {
    html {
        scroll-snap-type: y proximity;
    }

    .hero-section,
    .section-padding {
        scroll-snap-align: start;
    }
}

/* --- Loading State Skeleton --- */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* --- Reduced Motion Support --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --- High Contrast Mode Support --- */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #fff;
    }

    .nav-menu > li > a {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .menu-item-card {
        border-width: 2px;
    }
}

/* ============================================
   CONTACT FORM - PREMIUM DESIGN
   ============================================ */

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 3rem;
}

.contact-form-section h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    text-align: center;
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Form Container */
.contact-form {
    background: linear-gradient(145deg, rgba(var(--color-white-rgb), 0.08), rgba(var(--color-white-rgb), 0.02));
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(var(--color-black-rgb), 0.3);
}

/* Form Row - Two Columns */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Form Group */
.contact-form .form-group {
    margin-bottom: 0;
}

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

/* Labels */
.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(var(--color-white-rgb), 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.contact-form label svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-form label .required {
    color: var(--color-error);
    font-size: 1rem;
}

/* Input Fields */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(var(--color-white-rgb), 0.05);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(var(--color-white-rgb), 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

/* Select Dropdown */
.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4a574' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form select option {
    background: var(--color-secondary);
    color: #fff;
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Field Error */
.contact-form .field-error {
    display: block;
    color: var(--color-error);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    min-height: 1.2em;
}

/* Form Footer */
.contact-form .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .contact-form .form-footer {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* Privacy Note */
.contact-form .privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(var(--color-white-rgb), 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.contact-form .privacy-note svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Submit Button */
.contact-form .btn-submit {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    min-width: 200px;
}

.contact-form .btn-submit .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-form .btn-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    animation: fadeInUp 0.5s ease;
}

.form-message .message-icon {
    margin-bottom: 1.5rem;
}

.form-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-message p {
    color: rgba(var(--color-white-rgb), 0.7);
    margin-bottom: 1.5rem;
}

/* Success Message */
.form-success {
    background: linear-gradient(145deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-success .message-icon svg {
    color: var(--color-success);
}

.form-success h3 {
    color: var(--color-success);
}

.form-success p {
    color: var(--color-primary);
}

/* Error Message */
.form-error {
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.05));
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-error .message-icon svg {
    color: var(--color-error);
}

.form-error h3 {
    color: var(--color-error);
}

.form-error p {
    color: var(--color-primary);
}

/* ============================================
   ALLERGEN LEGEND - MENU PAGE
   ============================================ */

.allergen-legend {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(var(--color-white-rgb), 0.05), rgba(var(--color-white-rgb), 0.02));
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-radius: 16px;
}

.allergen-legend h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.allergen-legend h3 svg {
    color: var(--color-primary);
}

.allergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.95rem;
}

.allergen-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: rgba(var(--color-primary-rgb), 0.2);
    border: 1px solid rgba(var(--color-primary-rgb), 0.4);
    border-radius: 50%;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .allergen-grid {
        grid-template-columns: 1fr;
    }

    .allergen-legend {
        padding: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form .btn-submit {
        width: 100%;
    }
}

/* ============================================
   DAILY MENU STYLES - Compact & Elegant
   ============================================ */

.daily-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #252525 100%);
    border-radius: 12px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    box-shadow: 0 8px 32px rgba(var(--color-black-rgb), 0.2);
}

.daily-menu-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.daily-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
}

.daily-menu-phone {
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.daily-menu-note {
    color: rgba(var(--color-white-rgb), 0.5);
    font-size: 0.8rem;
    font-style: italic;
    margin: 0.25rem 0 0 0;
}

/* Tabs - Compact horizontal */
.daily-menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    background: rgba(var(--color-black-rgb), 0.2);
    padding: 0.25rem;
    border-radius: 8px;
}

.daily-menu-tab {
    background: transparent;
    border: none;
    color: rgba(var(--color-white-rgb), 0.6);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.daily-menu-tab:hover:not(:disabled) {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: #fff;
}

.daily-menu-tab.active {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 600;
}

.daily-menu-tab:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.daily-menu-tab .tab-date {
    display: none;
}

/* Day content */
.daily-menu-day {
    display: none;
}

.daily-menu-day.active {
    display: block;
}

.day-menu-content {
    padding: 0;
}

.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(var(--color-primary-rgb), 0.2);
}

.day-date {
    font-size: 0.9rem;
    color: rgba(var(--color-white-rgb), 0.5);
    font-weight: normal;
}

/* Soups - inline compact */
.day-soups {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(var(--color-primary-rgb), 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--color-primary);
}

.day-soups h4 {
    color: var(--color-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.35rem 0;
    opacity: 0.8;
}

.soup-item {
    color: rgba(var(--color-white-rgb), 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Menu items - simple list style */
.day-main-dishes h4 {
    display: none;
}

.daily-menu-container .menu-item {
    display: block;
    grid-template-columns: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.1);
    border-radius: 0;
    padding: 0.6rem 0;
    margin-bottom: 0;
}

.daily-menu-container .menu-item:hover {
    background: transparent;
}

.daily-menu-container .menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.daily-menu-container .menu-item-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.6rem;
}

.daily-menu-container .menu-item-number {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 0.1rem;
}

.daily-menu-container .menu-item-name {
    color: rgba(var(--color-white-rgb), 0.9);
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.45;
}

.daily-menu-container .menu-item-price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}

/* Extras section - compact grid */
.daily-menu-extras {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.daily-menu-special,
.daily-menu-permanent,
.daily-menu-dessert {
    background: rgba(var(--color-white-rgb), 0.02);
    border-radius: 6px;
    padding: 0.75rem;
    border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.daily-menu-special {
    border-top: 2px solid var(--color-info);
}

.daily-menu-permanent {
    border-top: 2px solid var(--color-primary);
}

.daily-menu-dessert {
    border-top: 2px solid var(--color-purple);
}

.daily-menu-special h4,
.daily-menu-permanent h4,
.daily-menu-dessert h4 {
    color: rgba(var(--color-white-rgb), 0.6);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.daily-menu-extras .menu-item {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.daily-menu-extras .menu-item:hover {
    background: none;
}

.daily-menu-extras .menu-item-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.daily-menu-extras .menu-item-name {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.daily-menu-extras .menu-item-price {
    font-size: 0.8rem;
    flex-shrink: 0;
    text-align: right;
}

/* Footer - minimal */
.daily-menu-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.1);
    text-align: center;
}

.daily-menu-footer p {
    color: rgba(var(--color-white-rgb), 0.5);
    font-size: 0.75rem;
    margin: 0.25rem 0;
}

.kitchen-hours {
    color: var(--color-primary) !important;
    font-weight: 500;
}

/* Weekend notice */
.daily-menu-weekend {
    text-align: center;
    padding: 2rem 1rem;
}

.daily-menu-weekend p {
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

/* No menu notice */
.daily-menu-notice {
    text-align: center;
    padding: 1.5rem;
    color: rgba(var(--color-white-rgb), 0.6);
    font-size: 0.9rem;
}

/* Daily Menu Section on Homepage */
.daily-menu-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

/* Daily Menu Toggle Button */
.daily-menu-toggle-wrapper {
    text-align: center;
}

.daily-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    gap: 0.5rem;
}

.daily-menu-toggle svg {
    transition: transform 0.3s ease;
}

.daily-menu-toggle.active svg {
    transform: rotate(180deg);
}

.daily-menu-content-wrapper {
    margin-top: 1.5rem;
    animation: fadeInUp 0.3s ease;
}

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

/* Menu Page Daily Menu */
.menu-page-daily-menu {
    margin-bottom: 2rem;
    animation: fadeInUp 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .daily-menu-container {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 10px;
    }

    .daily-menu-title {
        font-size: 1.5rem;
    }

    .daily-menu-tabs {
        flex-wrap: wrap;
        gap: 0.15rem;
    }

    .daily-menu-tab {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .day-name {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .daily-menu-container .menu-item-header {
        grid-template-columns: auto 1fr auto;
        gap: 0.4rem;
    }

    .daily-menu-container .menu-item-label {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .daily-menu-container .menu-item-name {
        font-size: 0.85rem;
    }

    .daily-menu-container .menu-item-price {
        font-size: 0.85rem;
    }

    .daily-menu-extras {
        grid-template-columns: 1fr;
    }

    .daily-menu-extras .menu-item-header {
        grid-template-columns: auto 1fr auto;
    }

    .daily-menu-extras .menu-item-name {
        font-size: 0.78rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .daily-menu-extras .menu-item-price {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .daily-menu-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .daily-menu-container {
        padding: 0.875rem;
    }

    .daily-menu-tabs {
        padding: 0.15rem;
    }

    .daily-menu-tab {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header-top,
    .menu-toggle,
    .nav-menu .sub-menu,
    .hero-section,
    .cta-section,
    .back-to-top,
    .footer-social {
        display: none;
    }

    .site-header {
        position: static;
        background: #fff;
        border: none;
    }

    .site-footer {
        background: #fff;
        color: #333;
    }

    .site-footer::before {
        display: none;
    }
}
