﻿:root {
    --bg: #0b0b0f;
    --bg-elev: #12121a;
    --bg-alt: #181820; /* NEW: mid tone variation for alternating rows */
    --ink: #e9ecf1;
    --muted: #a9b0bd;
    --brand: #ff3b7a;
    --brand-2: #00e0b8;
    --ring: rgba(255,59,122,.45);
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 18px;
    --radius-sm: 12px;
}


* { box-sizing: border-box }
html, body { margin: 0; height: 100% }

body {
    background: radial-gradient(1200px 800px at 80% -10%, rgba(255,59,122,.12), transparent 60%), radial-gradient(1000px 700px at -10% 100%, rgba(0,224,184,.10), transparent 60%), var(--bg);
    color: var(--ink);
    font-family: "Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
    line-height: 1.6;
}

a {color: inherit; text-decoration: none }

img { max-width: 100%; display: block }
input[type=file] { border: 1px solid #888 !important; border-radius: 6px; padding: .5rem; }


/* HERO video */
.hero-video { max-width: 560px; border-radius: 12px; overflow: hidden }
.video-wrapper {position: relative; padding-bottom: 56.25%; height: 0 }
.video-wrapper iframe {  position: absolute; inset: 0; width: 100%;  height: 100% }

/* MENU (no borders, upscale) */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; /* space between items */
}

/* Menu item container */
.menu-item {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
}

    /* Variation 1 */
    .menu-item.alt1 {
        background: var(--bg-elev);
    }

    /* Variation 2 */
    .menu-item.alt2 {
        background: var(--bg-alt);
    }


/* First row: name + price */
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .6rem;
}

/* Dish name */
.menu-item h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--ink);
    letter-spacing: .2px;
    font-family: 'Montserrat', sans-serif;
}

/* Price */
.menu-item .price { font-weight: 700; white-space: nowrap; font-family: 'Montserrat',sans-serif; color: #d9d9d9; }
.menu-item .price:hover { background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text;  color: transparent; -webkit-text-fill-color: transparent; }


/* Description (full width, wraps naturally) */
.menu-item .muted {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.25rem;
    line-height: 1.4;
    white-space: normal; /* allow wrapping */
    overflow: visible;
    text-overflow: unset;
}

/* Vegetarian / tag labels */
.tag {
    font-size: .7rem;
    background: linear-gradient(135deg, #ff9d76, #ff6b6b);
    color: #fff;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: .2px;
    text-transform: uppercase;
}


/* MENU (no borders, upscale) */





/* NAVBAR */
.nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: saturate(180%) blur(10px);
    background: rgba(20,20,28,.25);
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: .9rem 1rem }
.brand { font-family: "Shrikhand",cursive; font-size: 1.6rem; display: flex; align-items: center; gap: .6rem; padding: .4rem .8rem; border-radius: 999px; transition: background .2s }
.brand-badge { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow: 0 6px 14px rgba(0,0,0,.35) }
.brand-logo { height: 80px; width: auto; display: block; transition: transform .2s }
.brand:hover { background: rgba(255,255,255,.06); cursor: pointer }
.brand:hover .brand-logo { transform: scale(1.05) }
.tabs { display: flex;  gap: .6rem; align-items: center }
.tabs a { padding: .55rem .85rem; border-radius: 999px; color: var(--ink); opacity: .9 }
.tabs a:hover, .tabs a.active { opacity: 1; background: rgba(255,255,255,.06) }

/* Base: keep it clickable and above everything */
/* NAV LAYERING */
.nav {
    position: sticky;
    top: 0;
    z-index: 2000; /* below overlay (3000) */
}

/* HAMBURGER */
.hamburger {
    display: none; /* shown via media query */
    position: relative; /* keeps z-index valid */
    z-index: 2001; /* above nav content; below overlay */
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: .5rem;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        margin: 4px 0;
        pointer-events: none; /* click lands on button */
        transition: transform .2s ease, opacity .2s ease;
    }
    /* optional X morph */
    .hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Show hamburger & hide tabs on small screens */
@media (max-width: 800px) { .tabs { display: none; } .hamburger { display: block; } }


/* DRAWER (overlay + panel) */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0); /* closed: transparent/inert */
    backdrop-filter: blur(0);
    pointer-events: none; /* ignore clicks when closed */
    transition: background 220ms ease, backdrop-filter 220ms ease;
}

.mobile-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 320px;
    max-width: 86vw;
    background: var(--bg-elev, #111);
    border-left: 1px solid rgba(255,255,255,.08);
    transform: translateX(100%); /* off-canvas when closed */
    transition: transform 220ms ease;
}
/* OPEN state */
.mobile-drawer.open {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(4px);
    pointer-events: auto; /* clickable when open */
}

    .mobile-drawer.open .mobile-panel {
        transform: translateX(0);
    }

/* LINKS IN DRAWER */
.mobile-list a {
    display: block;
    padding: 1rem;
    border-radius: 12px;
    color: var(--ink, #eee);
    transition: background .2s ease;
}

    .mobile-list a:hover {
        background: rgba(255,255,255,.06);
    }






/* HERO */
.hero { max-width: 1200px; margin: 0 auto; padding: clamp(2rem,4vw,3rem) 1rem 2rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center }
.hero h1 { font-family: "Shrikhand", cursive; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.1; margin: .2rem 0 .6rem;}


.eyebrow { display: inline-flex; gap: .5rem; align-items: center; font-size: .9rem; color: var(--muted)}
.eyebrow .dot { width: 8px; height: 8px; background: linear-gradient(135deg,var(--brand),var(--brand-2)); border-radius: 99px }
.hero p { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.2rem }

.cta {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.btn {
    appearance: none;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: .9rem 1.1rem;
    font-weight: 700
}

.btn-primary {
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    color: #0b0b0f;
    box-shadow: 0 6px 18px rgba(255,59,122,.25)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.14)
}

.card {
    background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.hero .card {
    padding: 1rem
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr
    }
}

/* SECTIONS */
/* keep your offset for sticky header when using #anchors */
section {
    scroll-margin-top: 80px;
}

/* tighten section padding */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem; /* was 3rem 1rem */
}

/* title: remove top padding, tighten margins */
.section-title {
    font-family: "Shrikhand", cursive;
    font-size: 1.8rem;
    margin: .25rem 0 .75rem; /* tighter, replaces margin: 0 0 1rem */
    /* padding-top: 1em;  ← remove this */
    text-align: center;
    color: #d6d6d6;
    background: linear-gradient(180deg, #f0f0f0, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        margin: .4rem auto 0; /* was 0.6rem */
        height: 3px;
        background: linear-gradient(90deg, #eee, #999, #eee);
        border-radius: 3px;
        box-shadow: 0 1px 4px rgba(255,255,255,0.3);
    }

/* subhead: a bit tighter above/below */
.section-sub {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: #cfcfcf;
    text-align: center;
    max-width: 700px;
    margin: .25rem auto 1.25rem; /* was 0.5rem auto 2rem */
    line-height: 1.6;
    letter-spacing: .5px;
    font-style: italic;
    position: relative;
    padding: .25rem 1rem; /* was 0.5rem 1rem */
}

    .section-sub::before,
    .section-sub::after {
        content: "❖";
        color: #999;
        font-size: .9rem;
        margin: 0 8px;
        vertical-align: middle;
    }

/* optional: even tighter on small screens */
@media (max-width: 600px) {
    .wrap {
        padding: 1rem .75rem;
    }

    .section-title {
        margin: .25rem 0 .6rem;
    }

    .section-sub {
        margin: .2rem auto 1rem;
    }
}
/* Section */

/* CONTACT + HOURS */
.grid-2 { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; place-items: center; }
@media(max-width:900px) { .grid-2 { grid-template-columns: 1fr } }

.hours { padding: 1rem; border-radius: var(--radius-sm) }
.hours table { width: 100%; border-collapse: separate; border-spacing: 0 .5rem }
.hours td { padding: .6rem .8rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08) }
.hours td:first-child { border-radius: 10px 0 0 10px; color: var(--muted) }
.hours td:last-child {  border-radius: 0 10px 10px 0; text-align: right; font-weight: 700 }

/* FOOTER */
footer { padding: 2rem 1rem; background: transparent; border-top: 1px solid rgba(255,255,255,.06); margin-top: 2rem }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 1rem; justify-content: space-between; flex-wrap: wrap; color: var(--muted) }

/* Admin Login Styles */
/** Forms **/
.form-group, .input-group { margin-bottom: 0.7em !important; clear: both !important }
.form-group label { font-size: 14px !important; margin-bottom: 1px !important; text-align: left !important }
.input-group label { font-size: 13px !important;  margin-bottom: 1px !important; text-align: left !important; width: 100% !important; }
.input-group .required:before, .form-group .required:before { content: "\2605"; padding: 0 2px 0 0 !important; color: #c00 !important; }
/** Forms **/

/* Dark Box */
.dark-box { background-color: #1a1a1a; border: 1px solid #333; border-radius: 8px; padding: 30px; color: #e0e0e0; box-shadow: 0 0 15px rgba(0, 255, 153, 0.05); transition: all 0.2s ease-in-out;}
.dark-box label { color: #cccccc; font-weight: 500; }
.dark-box input.form-control, .dark-box select.form-select, .dark-box textarea.form-control { background-color: #111; border: 1px solid #444; color: #e0e0e0; }
.dark-box input.form-control:focus, .dark-box textarea.form-control:focus, .dark-box select.form-select:focus { background-color: #111; border-color: #00ff99; box-shadow: 0 0 0 0.15rem rgba(0, 255, 153, 0.25); }
.dark-box .btn-submit { background-color: #00ff99;color: #000; border: none; padding: 10px 20px; font-weight: bold; margin-top: 15px; border-radius: 4px; }
.dark-box .btn-submit:hover { background-color: #00cc7a; }
/* Dark Box */

.tablex { width: 100%; border-collapse: collapse; color: #ccc; box-shadow: var(--shadow); overflow: hidden; }
.tablex th { background-color: #444 !important; color: #ccc; text-align: center !important; padding: 10px; font-weight: 600; border: 1px solid #555; }
.tablex td { background-color: transparent !important; color: #ccc; text-align: center !important; padding: 10px; border: 1px solid #555; }
.tablex tbody tr:nth-child(odd) { background-color: rgba(255, 255, 255, 0.05) !important; color: #ccc !important; }
.tablex tbody tr:hover { background-color: rgba(255, 255, 255, 0.10) !important; color: #ccc !important; transition: background 0.2s ease-in-out; }

/* GAPLESS MASONRY (no JS) */
/* Masonry container */
.masonry { column-width: 260px; column-gap: 10px; line-height: 0; }

.m { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 10px; }
.m img { width: 100%; height: auto; display: block; border: 0; margin: 0; padding: 0; border-radius: 6px; box-shadow: 0 1px 6px rgba(0,0,0,.25); }
@media (min-width: 1400px) {.masonry { column-width: 300px; }}
@media (max-width: 1200px) {.masonry { column-width: 240px; }}
@media (max-width: 900px) { .masonry { column-width: 200px; }}
@media (max-width: 600px) { .masonry { column-count: 1 !important; -webkit-column-count: 1 !important; column-width: auto !important;  column-gap: 0;  line-height: 0;} .m { margin: 0 0 10px; } }
@media (prefers-reduced-motion: reduce) { .m img { transition: none; }}
