/* Core Design System & Global Styles */

body {
    background-color: #f9f9f9;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Menu Item Hover Effects */
.menu-item-row { 
    position: relative; 
}

.menu-item-row::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 1px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.15;
}

.menu-item-row:hover::after { 
    transform: scaleX(1); 
}

/* Status Bar & Notifications */
#opening-status-bar {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    z-index: 100;
    background: #000;
    color: #fff;
}

#opening-status-bar.status-open { background: #218838; }
#opening-status-bar.status-closed { background: #c82333; }

.newsletter-status.success { color: #218838; margin-top: 10px; }
.newsletter-status.error { color: #c82333; margin-top: 10px; }

/* Reservation Page Status */
.reservation-status { 
    margin-top: 20px; 
    text-align: center; 
    font-weight: 500; 
}

.reservation-status.success { color: #218838; }
.reservation-status.error { color: #c82333; }

/* Mobile Menu Drawer */
#mobile-menu {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#mobile-menu.active {
    transform: translateX(0);
}

.hamburger-line {
    transition: all 0.3s ease;
}

#menu-toggle.active .line-1 { transform: translateY(6px) rotate(45deg); }
#menu-toggle.active .line-2 { opacity: 0; }
#menu-toggle.active .line-3 { transform: translateY(-6px) rotate(-45deg); }
/* =========================================
   Premium Motion & Animations
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.stagger-reveal > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.stagger-reveal.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for staggered children */
.stagger-reveal.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.active > *:nth-child(4) { transition-delay: 0.4s; }

/* Image Hover Zoom */
.hover-zoom {
    overflow: hidden;
}
.hover-zoom img {
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-zoom:hover img {
    transform: scale(1.08);
}

/* Link Hover Underline */
.premium-link {
    position: relative;
    display: inline-block;
}
.premium-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.premium-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* =========================================
   Opening Status - Redesigned Mobile
   ========================================= */
#opening-status-bar {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 9999;
    transition: all 0.5s ease;
}

#opening-status-bar.status-open {
    background: #f4f4f4;
    color: #111111;
}

#opening-status-bar.status-closed {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 768px) {
    #opening-status-bar {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        backdrop-filter: blur(10px);
        padding: 16px !important;
        font-size: 11px !important;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    #opening-status-bar.status-open {
        background: rgba(255, 255, 255, 0.9);
        color: #000;
    }
    
    #opening-status-bar.status-closed {
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
    }

    .status-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    #close-status-bar {
        background: none;
        border: none;
        color: inherit;
        opacity: 0.5;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.status-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.status-badge {
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.05);
    color: inherit;
}

#opening-status-bar.status-closed .status-badge {
    background: rgba(255, 255, 255, 0.15);
}

.status-hours {
    font-weight: 500;
}
