/* Zahuts Burgers — brand styles */
@font-face {
    font-family: 'Edo';
    src: url('/fonts/edo.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Norwester';
    src: url('/fonts/norwester.otf') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'League Spartan';
    src: url('/fonts/leaguespartan-bold.woff2') format('woff2'),
         url('/fonts/leaguespartan-bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

:root {
    --zh-orange: #ff7828;
    --zh-grey: #ededec;
    --zh-black: #000;
    --zh-white: #fff;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--zh-grey);
    color: var(--zh-black);
    font-family: 'Norwester', 'League Spartan', Impact, sans-serif;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
    font-family: 'Edo', 'League Spartan', Impact, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 .5rem;
}

a { color: var(--zh-orange); text-decoration: none; }
a:hover { color: var(--zh-black); }

/* ===== Splash intro ===== */
#splash {
    position: fixed;
    inset: 0;
    background: var(--zh-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#splash.go {
    animation: splashFade 0.6s ease 5.9s forwards;
}
#splash.go #splash-enter { display: none; }

#splash-enter {
    position: absolute;
    inset: 0;
    background: transparent;
    border: 0;
    color: var(--zh-black);
    cursor: pointer;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: 'Edo', Impact, sans-serif;
    animation: enterPulse 1.6s ease-in-out infinite;
}
#splash-enter .se-line {
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 3px;
}
#splash-enter .se-sub {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--zh-orange);
    text-transform: uppercase;
}
@keyframes enterPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .75; transform: scale(.97); }
}

/* Splash word animations only run after .go is added */
.splash-stage {
    position: relative;
    width: min(80vw, 600px);
    height: min(40vw, 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
#splash.go .splash-stage { opacity: 1; }
.splash-word,
.splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.85);
    opacity: 0;
    animation: none;
}
.splash-word {
    font-family: 'Edo', Impact, sans-serif;
    text-transform: uppercase;
    color: var(--zh-black);
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}
#splash.go .splash-word.w1 { animation: splashWord 0.9s ease 0.8s forwards; }
#splash.go .splash-word.w2 { animation: splashWord 0.9s ease 1.6s forwards; color: var(--zh-black); }
#splash.go .splash-word.w3 { animation: splashWord 0.9s ease 2.4s forwards; color: var(--zh-orange); }
.splash-logo {
    width: min(60vw, 420px);
    height: auto;
}
#splash.go .splash-logo {
    animation: splashLogo 1.2s ease 3.3s forwards;
}
@keyframes splashWord {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
    30%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    70%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes splashLogo {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(.6); }
    60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes splashFade {
    to { opacity: 0; visibility: hidden; }
}

body.loaded #splash { pointer-events: none; }

/* ===== Header ===== */
.zh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--zh-black);
    color: var(--zh-white);
    border-bottom: 4px solid var(--zh-orange);
}
.zh-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: .75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.zh-header img.brand {
    height: 64px;
    width: auto;
    filter: invert(1);
}
.zh-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.zh-nav a {
    color: var(--zh-white);
    font-family: 'Edo', Impact, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.zh-nav a:hover { color: var(--zh-orange); }

/* ===== Hero ===== */
.zh-hero {
    position: relative;
    background: var(--zh-grey);
    color: var(--zh-black);
    padding: 4rem 1.25rem 5rem;
    overflow: hidden;
}
.zh-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 -2px 0;
    height: 32px;
    background: var(--zh-orange);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}
.zh-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 1100px);
    max-height: 110%;
    object-fit: contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(circle at center, #000 35%, transparent 60%);
            mask-image: radial-gradient(circle at center, #000 35%, transparent 60%);
}
.zh-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2.5rem;
    align-items: center;
}
.zh-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: .95;
    color: var(--zh-black);
}
.zh-hero h1 span { color: var(--zh-orange); }
.zh-hero p {
    font-size: 1.25rem;
    max-width: 50ch;
    margin: 1.25rem 0 2rem;
    line-height: 1.5;
    font-family: 'League Spartan', sans-serif;
}
.zh-hero img.characters {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.5));
}

.btn-zh {
    display: inline-block;
    background: var(--zh-orange);
    color: var(--zh-black);
    padding: 1rem 2rem;
    font-family: 'Edo', Impact, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid var(--zh-orange);
    border-radius: 2px;
    transition: all .2s ease;
    cursor: pointer;
}
.btn-zh:hover {
    background: transparent;
    color: var(--zh-orange);
}
.btn-zh.alt {
    background: transparent;
    color: var(--zh-black);
}
.btn-zh.alt:hover { background: var(--zh-orange); color: var(--zh-black); }

/* ===== Sections ===== */
.zh-section {
    padding: 4.5rem 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}
.zh-section h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.zh-section h2 .accent { color: var(--zh-orange); }

.zh-section.dark {
    background: var(--zh-black);
    color: var(--zh-white);
    max-width: none;
}
.zh-section.dark .inner { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; position: relative; z-index: 1; }

/* Feature grid */
.zh-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.zh-card {
    background: var(--zh-white);
    border: 2px solid var(--zh-black);
    border-bottom: 6px solid var(--zh-orange);
    padding: 2rem 1.5rem;
    text-align: center;
}
.zh-card h3 {
    color: var(--zh-orange);
    font-size: 1.75rem;
    margin-bottom: .75rem;
}
.zh-card p {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Menu preview */
.zh-menu-wrap {
    background: var(--zh-black);
    padding: 1rem;
    border: 2px solid var(--zh-black);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    max-width: 1100px;
    margin: 0 auto;
}
.zh-menu-wrap img { width: 100%; height: auto; display: block; }

/* Order embed */
.zh-order-embed {
    width: 100%;
    min-height: 900px;
    background: var(--zh-white);
    display: block;
}
.zh-order-embed iframe {
    width: 100% !important;
    min-height: 900px;
    border: 0;
    display: block;
}
.zh-order-shell {
    background: var(--zh-white);
    border: 3px solid var(--zh-orange);
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* ===== Footer ===== */
.zh-footer {
    background: var(--zh-black);
    color: var(--zh-white);
    padding: 3rem 1.25rem 1.5rem;
    text-align: center;
}
.zh-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}
.zh-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--zh-orange);
    color: var(--zh-orange);
    transition: all .2s ease;
}
.zh-socials a:hover {
    background: var(--zh-orange);
    color: var(--zh-black);
    transform: translateY(-3px);
}
.zh-socials svg { width: 24px; height: 24px; fill: currentColor; }

/* ===== Find Us (footer info) ===== */
.zh-find {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 980px;
    margin: 2rem auto 0;
    text-align: left;
    font-family: 'League Spartan', sans-serif;
}
.zh-find-col h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--zh-orange);
    margin: 0 0 .75rem;
    text-transform: uppercase;
    font-size: 1.1rem;
}
.zh-find address {
    font-style: normal;
    line-height: 1.6;
    color: var(--zh-white);
}
.zh-find a { color: var(--zh-orange); text-decoration: none; }
.zh-find a:hover { text-decoration: underline; }
.zh-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .95rem;
}
.zh-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .15rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.zh-hours li:last-child { border-bottom: 0; }
.zh-hours li span:first-child {
    color: var(--zh-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@@media (max-width: 720px) {
    .zh-find {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .zh-hours li { justify-content: center; gap: .75rem; }
}

.zh-hero-sub {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .85;
    margin: 0 0 .25rem;
}

/* ===== Watermarks ===== */
.zh-section.zh-has-wm {
    position: relative;
    overflow: hidden;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}
.zh-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}
.zh-wm {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.08;
    height: 80%;
    width: auto;
    max-width: none;
    top: 50%;
}
.zh-wm-right {
    right: -10%;
    transform: translateY(-50%) rotate(-8deg);
}
.zh-wm-left {
    left: -10%;
    transform: translateY(-50%) rotate(6deg);
}
.zh-wm-center {
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
}
.zh-wm-tilt {
    transform: translateY(-50%) rotate(-12deg);
}
.zh-wm-right-alt {
    right: -8%;
    transform: translateY(-50%) rotate(8deg);
    height: 90%;
}
.zh-wm-dark {
    opacity: 0.06;
    filter: brightness(0) invert(1);
}

.zh-powered-by {
    text-align: center;
    margin: 1.5rem 0 0;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,.6);
}
.zh-powered-by a {
    color: var(--zh-orange);
    text-decoration: none;
}
.zh-powered-by a:hover { color: var(--zh-white); }

/* ===== Audio toggle ===== */
#audio-toggle {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--zh-orange);
    color: var(--zh-black);
    border: 2px solid var(--zh-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,.35);
    transition: transform .2s ease, background .2s ease;
}
#audio-toggle:hover { transform: translateY(-2px); }
#audio-toggle svg { width: 24px; height: 24px; fill: currentColor; }
#audio-toggle .ic-mute { display: none; }
#audio-toggle .ic-on   { display: block; }
#audio-toggle.is-muted .ic-mute { display: block; }
#audio-toggle.is-muted .ic-on   { display: none; }
#audio-toggle.is-muted {
    background: var(--zh-grey);
}
.zh-footer small { opacity: .6; font-family: 'League Spartan', sans-serif; }

/* ===== Responsive ===== */
#nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: .5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
#nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--zh-white);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
#nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 820px) {
    .zh-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .zh-hero img.characters { max-width: 280px; }

    #nav-toggle { display: flex; }
    .zh-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--zh-black);
        border-top: 2px solid var(--zh-orange);
        padding: 1rem 1.25rem;
    }
    .zh-nav.open { display: flex; }
    .zh-nav a {
        padding: .9rem 0;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .zh-nav a:last-child { border-bottom: 0; }
    .zh-header-inner { position: relative; }
}
