/* ============================================================
   MOTHER CLUCKER'S WINGS — Shared Stylesheet
   Rustic fire / food truck / dirty bird energy
   ============================================================ */

:root {
    --fire-red:     #c0392b;
    --fire-orange:  #e67e22;
    --fire-yellow:  #f1c40f;
    --char-black:   #1a1110;
    --smoke:        #2c2321;
    --bark:         #3d2c23;
    --cream:        #faf3e8;
    --parchment:    #f5e6cc;
    --rust:         #a0522d;
    --hot-sauce:    #d63031;
    --golden-crisp: #daa520;
    --sage:         #6b8f71;

    --font-display: 'Permanent Marker', cursive;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--char-black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--grain);
    pointer-events: none;
    z-index: 99;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fire-yellow); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fire-orange); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.img-placeholder {
    background: var(--smoke);
    border: 2px dashed var(--rust);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(160,82,45,0.05) 10px, rgba(160,82,45,0.05) 20px);
}
.img-placeholder i { font-size: 3rem; color: var(--rust); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.img-placeholder .caption { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--golden-crisp); text-transform: uppercase; letter-spacing: 0.05em; position: relative; z-index: 1; }
.img-placeholder .sub-caption { font-size: 0.8rem; color: rgba(250,243,232,0.5); margin-top: 0.25rem; position: relative; z-index: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,9,8,0.97);
    border-bottom: 3px solid var(--fire-red);
    transition: all 0.3s;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--fire-yellow);
    text-shadow: 2px 2px 0 var(--fire-red);
    letter-spacing: 0.02em;
}
.nav-brand span { color: var(--fire-red); }
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    position: relative;
    padding: 0.25rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--fire-orange);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--fire-yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-links .active-link { color: var(--fire-yellow); }
.nav-links .active-link::after { width: 100%; }
.nav-cta {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    background: var(--fire-red) !important;
    color: var(--fire-yellow) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 6px;
    border: 2px solid var(--fire-orange);
}
.nav-cta:hover { background: var(--fire-orange) !important; }
.nav-cta::after { display: none !important; }

.nav-close { display: none; }
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #0d0908;
        background-image: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        padding-top: 0;
        isolation: isolate;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.5rem; color: var(--cream); }
    .nav-links a:hover { color: var(--fire-yellow); }
    .nav-close {
        display: flex;
        position: absolute;
        top: 1.1rem;
        right: 1.25rem;
        background: rgba(192,57,43,0.15);
        border: 1px solid rgba(192,57,43,0.4);
        color: var(--cream);
        font-size: 1.4rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        z-index: 10000;
    }
    .nav-close:hover {
        background: var(--fire-red);
        color: #fff;
    }
}

/* ============================================================
   FIRE DIVIDER
   ============================================================ */

.fire-divider {
    height: 6px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-yellow), var(--fire-orange), var(--fire-red));
    position: relative;
    overflow: visible;
}
.fire-divider::after {
    content: '🔥';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(230,126,34,0.8));
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-fire {
    background: var(--fire-red);
    color: var(--fire-yellow);
    border-color: var(--fire-orange);
    box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
.btn-fire:hover {
    background: var(--fire-orange);
    color: var(--char-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230,126,34,0.5);
}
.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--char-black);
}

/* ============================================================
   SECTION LABELS / HEADINGS
   ============================================================ */

.section-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fire-orange);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--fire-yellow);
    text-shadow: 2px 2px 0 var(--fire-red);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* ============================================================
   HERO (index.php)
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 80%, rgba(192,57,43,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(230,126,34,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26,17,16,0.9) 0%, var(--char-black) 100%);
}
/* Branding art — fades diagonally from top-left to transparent by mid-section */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/mcw-branding.jpg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 72% auto;
    opacity: 0.09;
    /* Diagonal mask: solid top-left corner, fades to transparent toward bottom-right */
    -webkit-mask-image: linear-gradient(135deg, black 0%, black 20%, transparent 58%);
    mask-image:         linear-gradient(135deg, black 0%, black 20%, transparent 58%);
    mix-blend-mode: luminosity;
    pointer-events: none;
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--char-black), transparent);
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
.hero-content { animation: slideUp 0.8s ease both; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fire-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-tagline::before { content: ''; width: 40px; height: 2px; background: var(--fire-orange); }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    color: var(--fire-yellow);
    text-shadow: 3px 3px 0 var(--fire-red), 6px 6px 0 rgba(192,57,43,0.3);
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--cream);
    display: block;
    font-size: 0.5em;
    text-shadow: none;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
.hero-desc {
    font-size: 1.2rem;
    color: rgba(250,243,232,0.8);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* ── Carousel ───────────────────────────────────────────── */

.hero-carousel {
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--fire-red);
    animation: slideUp 0.8s ease 0.2s both;
    background: var(--char-black);
}
.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Dots below the carousel */
.carousel-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 14px 12px 10px;
    background: rgba(26,17,16,0.85);
    border-radius: 0 0 13px 13px;
    min-height: 52px;
}
.carousel-dot {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 2px;
    opacity: 0.25;
    filter: grayscale(1) brightness(0.6);
    transition: opacity 0.3s, filter 0.3s;
    line-height: 1;
}
.carousel-dot.active {
    opacity: 1;
    filter: none;
    animation: flameFlicker 0.7s infinite alternate;
}
@keyframes flameFlicker {
    0%   { transform: scale(1.0) rotate(-6deg); filter: drop-shadow(0 0 4px #ff6600); }
    33%  { transform: scale(1.2) rotate(4deg);  filter: drop-shadow(0 0 8px #ff2200); }
    66%  { transform: scale(1.1) rotate(-3deg); filter: drop-shadow(0 0 6px #ffaa00); }
    100% { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 0 10px #ff4400); }
}

.carousel-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    background: rgba(26,17,16,0.7);
    border: 2px solid var(--fire-red);
    border-radius: 50%;
    color: var(--fire-yellow);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--fire-red); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-tagline { justify-content: center; }
    .hero-tagline::before { display: none; }
    .hero-btns { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-image { order: -1; }
    .carousel-track { aspect-ratio: 4 / 3; }
    .carousel-arrow { width: 34px; height: 34px; font-size: 0.8rem; }
}

/* ============================================================
   ABOUT (index.php)
   ============================================================ */

.about {
    padding: 6rem 0;
    background: var(--smoke);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-img-main {
    grid-column: 1 / -1;
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(192,57,43,0.25);
}
.about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-small {
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    border: 1px solid rgba(192,57,43,0.2);
}
.about-img-small img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-img-small:hover img { transform: scale(1.05); }
.about-text { font-size: 1.1rem; color: rgba(250,243,232,0.8); line-height: 1.8; margin-bottom: 1.5rem; }
.about-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--fire-yellow);
    padding: 1.5rem;
    border-left: 4px solid var(--fire-red);
    background: rgba(192,57,43,0.1);
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-images { order: -1; }
}

/* ============================================================
   LOCATIONS (index.php)
   ============================================================ */

.locations {
    padding: 6rem 0;
    background: var(--char-black);
    position: relative;
}
.locations-header { text-align: center; margin-bottom: 3rem; }

/* Live Location Banner */
.live-location-banner {
    background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(230,126,34,0.1));
    border: 2px solid var(--fire-red);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.live-badge {
    background: var(--fire-red);
    color: var(--fire-yellow);
    font-family: var(--font-display);
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    animation: livePulse 1.5s infinite;
    white-space: nowrap;
    flex-shrink: 0;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.6); }
    50%       { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}
.live-location-info { flex: 1; min-width: 200px; }
.live-location-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--cream);
}
.live-location-address { font-size: 0.95rem; color: rgba(250,243,232,0.6); }
.live-location-hours {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fire-orange);
    text-transform: uppercase;
    margin-top: 0.25rem;
}
.countdown-box {
    text-align: center;
    background: rgba(26,17,16,0.6);
    border: 1px solid var(--bark);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 160px;
}
.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250,243,232,0.5);
    margin-bottom: 0.4rem;
}
.countdown-timer {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--fire-yellow);
    line-height: 1;
}

/* Next location (when not live) */
.next-location-box {
    background: rgba(44,35,33,0.6);
    border: 2px dashed var(--bark);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.next-location-box h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fire-orange);
    margin-bottom: 0.75rem;
}
.next-location-box .next-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--fire-yellow);
    margin-bottom: 0.25rem;
}
.next-location-box .next-details {
    font-size: 1rem;
    color: rgba(250,243,232,0.7);
}

/* The Leaflet map */
#truck-map-public {
    height: 380px;
    border-radius: 12px;
    border: 2px solid var(--fire-red);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 30px rgba(192,57,43,0.2);
    z-index: 1;
}

/* Upcoming schedule */
.upcoming-schedule {
    margin-bottom: 3rem;
}
.upcoming-schedule h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fire-orange);
    margin-bottom: 1rem;
}
.upcoming-list { display: flex; flex-direction: column; gap: 0.75rem; }
.upcoming-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(44,35,33,0.5);
    border: 1px solid var(--bark);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: all 0.3s;
}
.upcoming-item:hover { border-color: var(--fire-orange); }
.upcoming-date-badge {
    background: var(--bark);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}
.upcoming-date-badge .month {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fire-orange);
    letter-spacing: 0.05em;
}
.upcoming-date-badge .day {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--fire-yellow);
    line-height: 1;
}
.upcoming-info { flex: 1; }
.upcoming-info .u-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--cream);
}
.upcoming-info .u-address { font-size: 0.85rem; color: rgba(250,243,232,0.5); }
.upcoming-info .u-time {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fire-orange);
}

/* Regular spots grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.location-card {
    background: var(--smoke);
    border: 2px solid var(--bark);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.location-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
    opacity: 0;
    transition: opacity 0.3s;
}
.location-card:hover {
    border-color: var(--fire-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(192,57,43,0.2);
}
.location-card:hover::before { opacity: 1; }
.location-icon { font-size: 2rem; margin-bottom: 1rem; }
.location-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; color: var(--fire-yellow); margin-bottom: 0.5rem; }
.location-desc { font-size: 0.9rem; color: rgba(250,243,232,0.6); }
.locations-note {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--fire-orange);
    padding: 2rem;
    border: 2px dashed var(--bark);
    border-radius: 12px;
    background: rgba(44,35,33,0.5);
}
.locations-note i { margin-right: 0.5rem; }

/* ============================================================
   MENU (index.php)
   ============================================================ */

.menu {
    padding: 6rem 0;
    background: var(--smoke);
    position: relative;
}
.menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background: var(--grain);
    opacity: 0.5;
    pointer-events: none;
}
.menu-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.menu-subtitle { font-size: 1.1rem; color: rgba(250,243,232,0.6); max-width: 500px; margin: 0 auto; }
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative; z-index: 1;
}
.menu-tab {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    background: var(--bark);
    color: var(--cream);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.menu-tab:hover, .menu-tab.active {
    background: var(--fire-red);
    color: var(--fire-yellow);
    border-color: var(--fire-orange);
}
.menu-section { position: relative; z-index: 1; display: none; }
.menu-section.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.menu-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--fire-yellow);
    text-shadow: 2px 2px 0 var(--fire-red);
    margin-bottom: 2rem;
    text-align: center;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.menu-item {
    background: rgba(26,17,16,0.8);
    border: 1px solid var(--bark);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s;
    position: relative;
}
.menu-item:hover { border-color: var(--fire-orange); box-shadow: 0 4px 20px rgba(192,57,43,0.15); }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; }
.menu-item-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; color: var(--cream); line-height: 1.2; }
.menu-item-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--fire-yellow); white-space: nowrap; flex-shrink: 0; }
.menu-item-desc { font-size: 0.95rem; color: rgba(250,243,232,0.6); line-height: 1.6; }
.menu-item-badge {
    position: absolute;
    top: -8px; right: 16px;
    background: var(--fire-red);
    color: var(--fire-yellow);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    transform: rotate(2deg);
}
.menu-featured { position: relative; z-index: 1; margin-bottom: 3rem; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.featured-card {
    background: linear-gradient(145deg, rgba(192,57,43,0.15), rgba(26,17,16,0.9));
    border: 2px solid var(--fire-red);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(192,57,43,0.3); }
.featured-card .img-placeholder { border-radius: 0; border: none; min-height: 200px; border-bottom: 2px solid var(--fire-red); }
.featured-card-body { padding: 1.5rem; }
.featured-card .menu-item-header { margin-bottom: 0.5rem; }
.sauce-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.sauce-item {
    background: rgba(26,17,16,0.8);
    border: 1px solid var(--bark);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s;
}
.sauce-item:hover { border-color: var(--fire-orange); background: rgba(192,57,43,0.1); }
.sauce-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--cream); margin-bottom: 0.25rem; }
.sauce-price { font-family: var(--font-display); color: var(--fire-yellow); font-size: 1.1rem; }

/* ============================================================
   GALLERY (index.php)
   ============================================================ */

.gallery { padding: 6rem 0; background: var(--char-black); }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}
.gallery-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(192,57,43,0.2);
    background: var(--smoke);
}
.gallery-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-img:hover img { transform: scale(1.05); }
.gallery-img-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-img-hero { grid-column: 1 / -1; grid-row: auto; height: 250px; }
    .gallery-img { height: 180px; }
}

/* ============================================================
   REVIEWS — Infinite side-scroll (index.php)
   ============================================================ */

.reviews { padding: 6rem 0; background: var(--smoke); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-stats { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.reviews-score { font-family: var(--font-display); font-size: 3.5rem; color: var(--fire-yellow); }
.reviews-meta { text-align: left; }
.reviews-stars { color: var(--fire-yellow); font-size: 1.25rem; }
.reviews-count { font-size: 0.9rem; color: rgba(250,243,232,0.6); }

/* Scroll container — bleeds edge to edge */
.reviews-scroll-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    padding: 1rem 0;
}

/* Pause on hover */
.reviews-scroll-wrap:hover .reviews-scroll-track { animation-play-state: paused; }

.reviews-scroll-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: reviewsScroll 240s linear infinite;
}

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card-scroll {
    flex-shrink: 0;
    width: 320px;
    background: rgba(26,17,16,0.85);
    border: 1px solid var(--bark);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}
.review-card-scroll:hover {
    border-color: var(--fire-orange);
    box-shadow: 0 4px 24px rgba(192,57,43,0.2);
}
.review-card-scroll .review-stars { color: var(--fire-yellow); font-size: 0.9rem; letter-spacing: 2px; }
.review-card-scroll .review-text {
    font-size: 0.95rem;
    color: rgba(250,243,232,0.82);
    font-style: italic;
    line-height: 1.65;
    /* clamp long reviews to keep cards uniform */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card-scroll .review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--fire-orange);
    margin-top: auto;
}
.review-card-scroll .review-author a {
    color: var(--fire-orange);
    text-decoration: none;
    border-bottom: 1px dotted rgba(230,126,34,0.4);
    transition: color 0.2s, border-color 0.2s;
}
.review-card-scroll .review-author a:hover {
    color: var(--fire-yellow);
    border-color: var(--fire-yellow);
}
.review-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; }
.review-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(250,243,232,0.5);
    background: rgba(61,44,35,0.8);
    border: 1px solid var(--bark);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
}

/* Reduce speed on mobile for readability */
@media (max-width: 768px) {
    .review-card-scroll { width: 280px; }
    .reviews-scroll-track { animation-duration: 240s; }
}

/* ============================================================
   CTA (index.php)
   ============================================================ */

.cta {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(192,57,43,0.3) 0%, transparent 70%),
        var(--char-black);
    text-align: center;
    position: relative;
}
.cta-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--fire-yellow); text-shadow: 3px 3px 0 var(--fire-red); margin-bottom: 1rem; }
.cta-text { font-size: 1.2rem; color: rgba(250,243,232,0.8); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.cta-info { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.cta-info-item { text-align: center; }
.cta-info-item i { font-size: 2rem; color: var(--fire-orange); margin-bottom: 0.5rem; display: block; }
.cta-info-item strong { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; display: block; color: var(--cream); font-size: 0.9rem; }
.cta-info-item span { color: rgba(250,243,232,0.6); font-size: 0.9rem; }

/* ============================================================
   FOOTER (both pages — index version extended)
   ============================================================ */

.footer {
    background: var(--smoke);
    border-top: 4px solid var(--fire-red);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name { font-family: var(--font-display); font-size: 1.75rem; color: var(--fire-yellow); text-shadow: 2px 2px 0 var(--fire-red); margin-bottom: 1rem; }
.footer-desc { color: rgba(250,243,232,0.6); margin-bottom: 1.5rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 44px; height: 44px;
    background: var(--bark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
    transition: all 0.3s;
    font-size: 1.1rem;
}
.footer-social a:hover { background: var(--fire-red); color: var(--fire-yellow); }
.footer-col h4 { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fire-orange); margin-bottom: 1.25rem; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(250,243,232,0.6); font-size: 0.95rem; transition: all 0.2s; }
.footer-col a:hover { color: var(--fire-yellow); padding-left: 0.25rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--bark); flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-size: 0.85rem; color: rgba(250,243,232,0.4); }
.footer-tagline { font-family: var(--font-display); color: var(--fire-orange); font-size: 1rem; }

/* Simple footer (store.php) */
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--fire-yellow); text-shadow: 2px 2px 0 var(--fire-red); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: rgba(250,243,232,0.6); }
.footer-links a:hover { color: var(--fire-yellow); }
.footer-copy { width: 100%; text-align: center; font-size: 0.8rem; color: rgba(250,243,232,0.3); padding-top: 1.5rem; border-top: 1px solid var(--bark); margin-top: 1rem; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   STORE PAGE (store.php)
   ============================================================ */

.store-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 80%, rgba(192,57,43,0.3) 0%, transparent 60%), var(--char-black);
}
.store-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--fire-yellow);
    text-shadow: 3px 3px 0 var(--fire-red), 6px 6px 0 rgba(192,57,43,0.3);
    margin-bottom: 0.75rem;
}
.store-hero p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fire-orange);
}
.product-section { padding: 5rem 0; background: var(--smoke); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-gallery { position: relative; }
.product-img-main {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--fire-red);
    box-shadow: 0 8px 40px rgba(192,57,43,0.3);
    background: var(--char-black);
}
.product-img-main img { width: 100%; height: auto; display: block; }
.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--fire-red);
    color: var(--fire-yellow);
    font-family: var(--font-display);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transform: rotate(-3deg);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(192,57,43,0.4);
}
.product-info { position: sticky; top: 100px; }
.product-category {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fire-orange);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-category::before { content: ''; width: 30px; height: 2px; background: var(--fire-orange); }
.product-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--fire-yellow); text-shadow: 2px 2px 0 var(--fire-red); line-height: 1.1; margin-bottom: 0.5rem; }
.product-subtitle { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--cream); margin-bottom: 1.5rem; }
.product-price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--bark); }
.product-price { font-family: var(--font-display); font-size: 2.5rem; color: var(--fire-yellow); }
.product-shipping { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: rgba(250,243,232,0.5); text-transform: uppercase; }
.product-desc { font-size: 1.1rem; color: rgba(250,243,232,0.8); line-height: 1.8; margin-bottom: 1.5rem; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.product-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: rgba(250,243,232,0.8); }
.product-features li i { color: var(--fire-orange); font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
.product-warning { font-family: var(--font-display); font-size: 1.1rem; color: var(--fire-yellow); padding: 1.25rem; border-left: 4px solid var(--fire-red); background: rgba(192,57,43,0.1); border-radius: 0 8px 8px 0; margin-bottom: 2rem; }
.buy-section { background: rgba(26,17,16,0.6); border: 2px solid var(--bark); border-radius: 16px; padding: 2rem; }
.buy-section h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fire-orange); margin-bottom: 1rem; }
.quantity-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.quantity-label { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; color: var(--cream); font-size: 0.9rem; }
.quantity-control { display: flex; align-items: center; border: 2px solid var(--bark); border-radius: 8px; overflow: hidden; }
.quantity-btn { width: 42px; height: 42px; background: var(--bark); border: none; color: var(--cream); font-size: 1.2rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.quantity-btn:hover { background: var(--fire-red); color: var(--fire-yellow); }
.quantity-value { width: 50px; text-align: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--fire-yellow); background: var(--char-black); border: none; }
.paypal-container { background: rgba(26,17,16,0.5); border: 2px dashed var(--bark); border-radius: 12px; padding: 1.5rem; text-align: center; margin-bottom: 1rem; min-height: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.paypal-container .paypal-note { font-size: 0.8rem; color: rgba(250,243,232,0.4); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; }
.btn-buy { display: flex; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; padding: 1rem 2rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.05em; background: var(--fire-red); color: var(--fire-yellow); border: 3px solid var(--fire-orange); border-radius: 10px; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(192,57,43,0.4); }
.btn-buy:hover { background: var(--fire-orange); color: var(--char-black); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(230,126,34,0.5); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(250,243,232,0.4); margin-top: 0.75rem; }
.secure-note i { color: var(--sage); }
.also-section { padding: 5rem 0; background: var(--char-black); text-align: center; }
.also-section .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--fire-yellow); text-shadow: 2px 2px 0 var(--fire-red); margin-bottom: 1rem; }
.also-section p { font-size: 1.1rem; color: rgba(250,243,232,0.6); margin-bottom: 2.5rem; }
.also-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; text-align: left; }
.also-card { background: var(--smoke); border: 2px solid var(--bark); border-radius: 12px; padding: 2rem; text-align: center; transition: all 0.3s; }
.also-card:hover { border-color: var(--fire-orange); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(192,57,43,0.2); }
.also-card i { font-size: 2.5rem; color: var(--fire-orange); margin-bottom: 1rem; }
.also-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; color: var(--fire-yellow); margin-bottom: 0.5rem; }
.also-card p { font-size: 0.95rem; color: rgba(250,243,232,0.6); margin-bottom: 0; }

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-info { position: static; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .sauce-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr 1fr; }
}