/* ============================================================
   MENUSPACE FRONT-END — BBQ SMOKEHOUSE
   FULL STANDALONE TEMPLATE
   ============================================================ */

.ms-page * { box-sizing: border-box; }

.ms-page {
    background: #120b07;
    color: #f5eee8;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Inter, Arial, sans-serif;
}

/* ============================================================
   HERO
   ============================================================ */
.ms-hero {
    position: relative;
    height: 75vh;
    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: 90vh; }
}

.ms-hero-video,
.ms-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4) contrast(1.15) saturate(1.15);
}

/* smoke + heat overlay */
.ms-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255,120,0,.25), rgba(0,0,0,.85)),
        linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.85));
    z-index: 2;
}

/* ============================================================
   HERO CONTENT
   ============================================================ */
.ms-brand-logo,
.ms-brand-title,
.ms-brand-tagline,
.ms-order-btn {
    position: relative;
    z-index: 3;
}

.ms-brand-logo {
    max-height: 160px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(255,140,0,.6));
}

.ms-brand-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffb347;
    text-shadow:
        0 0 12px rgba(255,140,0,.8),
        0 0 28px rgba(255,60,0,.5);
}

.ms-brand-tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 24px;
    color: #ffd9b0;
}

/* ============================================================
   ORDER BUTTON
   ============================================================ */
.ms-order-btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a00, #d62828);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow:
        0 0 20px rgba(255,120,0,.8),
        0 0 40px rgba(214,40,40,.6);
    transition: transform .15s ease, box-shadow .15s ease;
}

.ms-order-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 28px rgba(255,120,0,1),
        0 0 60px rgba(214,40,40,.8);
}

/* ============================================================
   SECTIONS + DIVIDERS
   ============================================================ */
.ms-section {
    padding: 50px 0;
    position: relative;
}

/* branded divider */
.ms-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 4px;
    transform: translateX(-50%);
    background: linear-gradient(
        to right,
        transparent,
        #ff7a00,
        transparent
    );
    box-shadow: 0 0 12px rgba(255,120,0,.8);
}

/* ============================================================
   CARDS
   ============================================================ */
.ms-card {
    background: rgba(30,16,10,.85);
    border: 1px solid rgba(255,140,0,.25);
    padding: 32px;
    border-radius: 18px;
    box-shadow:
        0 0 18px rgba(255,120,0,.25),
        0 12px 36px rgba(0,0,0,.7);
}

.ms-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: #ffb347;
    letter-spacing: 1px;
}

/* ============================================================
   HOURS
   ============================================================ */
.ms-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,140,0,.25);
    color: #f2d3b0;
}

/* ============================================================
   MAP
   ============================================================ */
.ms-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,140,0,.35);
    box-shadow:
        0 0 22px rgba(255,120,0,.35),
        0 12px 36px rgba(0,0,0,.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ms-footer {
    text-align: center;
    padding: 32px 0;
    color: #e2b98c;
    font-size: 0.95rem;
}

/* ============================================================
   FLOATING
   ============================================================ */
.ms-float-group {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.ms-status-open {
    background: linear-gradient(135deg, #ffb347, #ff7a00);
    color: #000;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(255,120,0,.8);
}

.ms-status-closed {
    background: #2b1a12;
    color: #f2d3b0;
    padding: 12px 26px;
    border-radius: 999px;
}

.ms-call-btn {
    background: linear-gradient(135deg, #ff7a00, #d62828);
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 22px rgba(255,120,0,.8);
}
