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

html, body {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0b090a;
    color: #ffffff;
}

/* Background image slideshow */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.8s ease-in-out, transform 8s ease-out;
}

.bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark atmospheric vignette overlay for contrast without darkening food too much */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.75) 100%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(1px);
}

/* Hero Content Area */
.hero-wrapper {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.card-glass {
    background: rgba(15, 12, 14, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    max-width: 620px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 
                0 0 30px rgba(245, 158, 11, 0.15);
    animation: fadeInScale 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(225, 112, 26, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
}

.heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 60%, #e1701a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #d1d5db;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Primary Online Order Button */
.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    padding: 18px 32px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #0d0a0b;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35),
                0 4px 12px rgba(0, 0, 0, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-order:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.5),
                0 6px 16px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #ea580c 100%);
}

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

.btn-order:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.order-icon {
    width: 22px;
    height: 22px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-order:hover .arrow-icon {
    transform: translateX(4px);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive fine-tuning for smaller screens */
@media (max-width: 480px) {
    .card-glass {
        padding: 2.5rem 1.5rem;
        border-radius: 22px;
    }
    .badge-pill {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    .btn-order {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* ============================================
   Live status strip / contact / hours
   (injected + populated by the SIPO API in /api)
   ============================================ */

/* Keep the fixed status strip from covering the heading — page stays single-view, no scroll */
body.has-status-strip .hero-wrapper {
    padding-top: calc(var(--strip-height, 40px) + 1.5rem);
}

.info-panel {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.info-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    color: #f0f1ec;
    max-width: 100%;
    line-height: 1.35;
}

.info-pill a {
    color: inherit;
    text-decoration: none;
}

.info-pill a:hover {
    color: #fbbf24;
}

.info-pill-address {
    text-align: left;
}

.info-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #fbbf24;
}

.info-hours-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.info-hours-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.info-hours-label .info-icon {
    width: 13px;
    height: 13px;
}

@media (max-width: 480px) {
    .info-panel {
        margin-top: 1.4rem;
        padding-top: 1.1rem;
        gap: 0.7rem;
    }
    .info-pill {
        font-size: 0.7rem;
        padding: 5px 11px;
    }
}
