/* ============================================================
   MENUSPACE FRONT-END — DARK CLASSIC (CALM MINIMAL)
   FULL STANDALONE TEMPLATE
   ============================================================ */

.ms-page * { box-sizing: border-box; }

.ms-page {
    background: #0b0e13;
    color: #e9edf2;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
}

/* HERO */
.ms-hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ms-hero { height: 92vh; }
}

.ms-hero-video,
.ms-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.ms-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

/* HERO CONTENT */
.ms-brand-logo,
.ms-brand-title,
.ms-brand-tagline,
.ms-order-btn {
    position: relative;
    z-index: 2;
}

.ms-brand-logo {
    max-height: 160px;
    margin-bottom: 14px;
}

.ms-brand-title {
    font-size: 2.9rem;
    font-weight: 800;
    color: #f8fafc;
}

.ms-brand-tagline {
    font-size: 1.1rem;
    color: #aab2bf;
    margin-bottom: 22px;
}

/* ORDER BUTTON — BLUE NEON FLASH */
.ms-order-btn {
    padding: 14px 42px;
    border-radius: 50px;
    background: #0ff;
    color: #001018;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;

    box-shadow:
        0 0 6px rgba(0, 255, 255, 0.6),
        0 0 14px rgba(0, 255, 255, 0.8),
        0 0 28px rgba(0, 180, 255, 0.9);

    animation: neonPulse 1.6s infinite;
    transition: transform 0.15s ease-in-out;
}

/* Hover boost */
.ms-order-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 10px rgba(0, 255, 255, 0.9),
        0 0 24px rgba(0, 255, 255, 1),
        0 0 48px rgba(0, 180, 255, 1);
}

/* Neon pulse animation */
@keyframes neonPulse {
    0% {
        box-shadow:
            0 0 4px rgba(0, 255, 255, 0.4),
            0 0 10px rgba(0, 180, 255, 0.5),
            0 0 18px rgba(0, 140, 255, 0.6);
    }
    50% {
        box-shadow:
            0 0 12px rgba(0, 255, 255, 1),
            0 0 28px rgba(0, 200, 255, 1),
            0 0 60px rgba(0, 160, 255, 1);
    }
    100% {
        box-shadow:
            0 0 4px rgba(0, 255, 255, 0.4),
            0 0 10px rgba(0, 180, 255, 0.5),
            0 0 18px rgba(0, 140, 255, 0.6);
    }
}


/* SECTIONS */
.ms-section { padding: 42px 0; }

.ms-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    padding: 32px;
    border-radius: 22px;
}

.ms-card h3 {
    color: #e9edf2;
}

/* FOOTER */
.ms-footer {
    text-align: center;
    padding: 32px 0;
    color: #9aa3af;
}

/* FLOATING */
/* FLOAT GROUP */
.ms-float-group {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

/* =========================
   STATUS — OPEN (NEON GREEN)
========================= */
.ms-status-open {
    background: #00ff9c;
    color: #002015;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow:
        0 0 6px rgba(0, 255, 156, 0.6),
        0 0 16px rgba(0, 255, 156, 0.9),
        0 0 36px rgba(0, 255, 156, 1);

    animation: openPulse 1.8s infinite;
}

/* OPEN pulse */
@keyframes openPulse {
    0% {
        box-shadow:
            0 0 4px rgba(0, 255, 156, 0.4),
            0 0 12px rgba(0, 255, 156, 0.6);
    }
    50% {
        box-shadow:
            0 0 12px rgba(0, 255, 156, 1),
            0 0 32px rgba(0, 255, 156, 1),
            0 0 64px rgba(0, 255, 156, 1);
    }
    100% {
        box-shadow:
            0 0 4px rgba(0, 255, 156, 0.4),
            0 0 12px rgba(0, 255, 156, 0.6);
    }
}

/* =========================
   STATUS — CLOSED (NEON RED)
========================= */
.ms-status-closed {
    background: #ff3b3b;
    color: #200000;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow:
        0 0 6px rgba(255, 59, 59, 0.6),
        0 0 16px rgba(255, 59, 59, 0.9),
        0 0 36px rgba(255, 59, 59, 1);

    animation: closedPulse 2.2s infinite;
}

@keyframes closedPulse {
    0% {
        box-shadow:
            0 0 4px rgba(255, 59, 59, 0.4),
            0 0 12px rgba(255, 59, 59, 0.6);
    }
    50% {
        box-shadow:
            0 0 10px rgba(255, 59, 59, 1),
            0 0 28px rgba(255, 59, 59, 1);
    }
    100% {
        box-shadow:
            0 0 4px rgba(255, 59, 59, 0.4),
            0 0 12px rgba(255, 59, 59, 0.6);
    }
}

/* =========================
   CALL BUTTON — NEON BLUE
========================= */
.ms-call-btn {
    background: #0ff;
    color: #001018 !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow:
        0 0 6px rgba(0, 255, 255, 0.6),
        0 0 16px rgba(0, 200, 255, 0.9),
        0 0 36px rgba(0, 160, 255, 1);

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover kick */
.ms-call-btn:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 12px rgba(0, 255, 255, 1),
        0 0 32px rgba(0, 200, 255, 1),
        0 0 64px rgba(0, 160, 255, 1);
}

/* ================================
   HOURS — FORCE VISIBILITY
   ================================ */

.ms-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #e9edf2;
    border-bottom: 1px solid rgba(255,255,255,.15);
    font-size: 1rem;
}

.ms-hours-list li strong {
    font-weight: 700;
}
/* HERO CONTAINER */
.ms-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* HERO VIDEO */
.ms-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* HERO IMAGE FALLBACK */
.ms-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* HERO CONTENT LAYER */
.ms-hero > *:not(video):not(img) {
    position: relative;
    z-index: 2;
}
