/* Blind Bob's — static site styles
   Dark tavern theme, amber accent. Mobile-first, high-contrast, no framework. */

:root {
  --bg:        #14100d;   /* near-black warm */
  --bg-2:      #1e1815;   /* card */
  --ink:       #f4ece2;   /* body text (high contrast on dark) */
  --ink-dim:   #b9ab9b;   /* secondary text */
  --amber:     #f5a623;   /* Blind Bob's gold */
  --amber-2:   #ffbe4d;
  --line:      #322a24;
  --maxw:      1040px;
  --radius:    12px;
  --font:      "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink);
  background:
    linear-gradient(rgba(12,8,5,0.55), rgba(12,8,5,0.72)),
    url("../assets/hero.jpg?r=1") center center / cover no-repeat fixed,
    var(--bg);
  font-family: var(--font); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--ink-dim); }

/* ---- anniversary promo bar (auto-hides after 2026-08-30 via js/anniv.js) ---- */
.anniv-banner { position: relative; background: var(--amber); color: #1a1209;
  text-align: center; padding: 10px 42px; font-weight: 700; font-size: 0.95rem;
  line-height: 1.35; }
.anniv-banner a { color: #1a1209; text-decoration: none; }
.anniv-banner a u { text-decoration: underline; text-underline-offset: 2px; }
.anniv-banner a:hover u { text-decoration: none; }
.anniv-x { position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #1a1209; font-size: 1.4rem; line-height: 1;
  font-weight: 800; cursor: pointer; padding: 0 4px; }

/* ---- anniversary feature card (events page; hidden after 8/30 by anniv.js) ---- */
.anniv-feature { background: rgba(30,24,21,0.55); border: 1px solid var(--amber);
  border-left: 5px solid var(--amber); border-radius: var(--radius); padding: 20px 22px;
  margin: 0 0 28px; backdrop-filter: blur(2px); }
.anniv-tag { display: inline-block; background: var(--amber); color: #1a1209;
  font-weight: 800; font-size: 0.8rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.anniv-feature h3 { margin: 0 0 8px; color: var(--amber-2); font-size: 1.3rem; }
.anniv-feature .anniv-bills { margin: 0 0 6px; line-height: 1.7; }

/* ---- header / nav ---- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 0;
}
.nav { display: flex; align-items: center; gap: 18px; padding: 20px 20px; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.brand { font-weight: 800; font-size: 1.35rem; color: var(--amber); letter-spacing: -0.02em; margin-right: auto; }
.brand span { font-style: italic; }
.nav a.navlink { color: var(--ink); font-size: 0.98rem; font-weight: 600; }
/* three-zone balance: logo left, links centered as a group, CTA right */
.nav .btn { margin-left: auto; }
.nav a.navlink:hover { color: var(--amber-2); text-decoration: none; }
.btn {
  display: inline-block; background: var(--amber); color: #1a1209 !important;
  font-weight: 800; padding: 10px 18px; border-radius: 999px; border: 0;
  cursor: pointer; letter-spacing: 0.01em;
}
.btn:hover { background: var(--amber-2); text-decoration: none !important; }
.btn.ghost { background: transparent; color: var(--ink) !important; border: 1.5px solid var(--ink-dim); }
.btn.ghost:hover { border-color: var(--amber-2); color: var(--amber-2) !important; }

/* ---- hero ---- */
.hero {
  position: relative; min-height: 74vh; display: grid; place-items: center; text-align: center;
  padding: 80px 20px;
  background-image:
    linear-gradient(rgba(10,7,5,0.50), rgba(12,8,5,0.78)),
    url("../assets/hero.jpg?r=1");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  background-color: #14100d;
}
.hero-logo { font-size: clamp(2.8rem, 9vw, 5.5rem); color: var(--amber); font-style: italic; font-weight: 800; margin: 0 0 8px; text-shadow: 0 2px 18px rgba(0,0,0,.6); }
.hero p.tag { max-width: 640px; margin: 0 auto 26px; font-size: clamp(1rem, 2.4vw, 1.25rem); color: var(--ink); }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- sections ---- */
section.block { padding: 56px 0; border-bottom: 1px solid var(--line); background: rgba(20,16,13,0.25); backdrop-filter: blur(2px); }
section.block h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--amber); margin: 0 0 6px; }
section.block .lead { color: var(--ink-dim); margin: 0 0 28px; font-size: 1.05rem; }

.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.card { background: rgba(30,24,21,0.35); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card h3 { margin: 0 0 6px; font-size: 1.2rem; }
.card .when { color: var(--amber-2); font-weight: 700; font-size: 0.95rem; }

/* weeknight badges */
.week { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.week .day { background: rgba(30,24,21,0.35); border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 18px 20px; }
.week .day b { color: var(--amber-2); display:block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; }
.week .day .name { font-weight: 800; font-size: 1.15rem; margin: 2px 0; }

/* menu lists */
.menu-list { display: grid; gap: 10px; }
.menu-item { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.menu-item .desc { color: var(--ink-dim); font-size: 0.92rem; }
.needs { background: #2a1d0e; border: 1px dashed var(--amber); border-radius: 8px; padding: 10px 14px; color: var(--amber-2); font-size: 0.9rem; }

/* calendar embed */
.calendar-embed { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.calendar-embed iframe { width: 100%; height: 620px; border: 0; display: block; }

/* ---- footer ---- */
.site-foot { padding: 40px 0; color: var(--ink-dim); font-size: 0.92rem; background: rgba(20,16,13,0.5); backdrop-filter: blur(4px); }
.site-foot .wrap { display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.site-foot a { color: var(--ink-dim); }
.site-foot a:hover { color: var(--amber-2); }

.info-line { display:flex; flex-wrap:wrap; gap: 6px 22px; margin: 10px 0 0; color: var(--ink-dim); }
@media (max-width: 560px){ .brand{ margin-right: 12px; } .nav{ gap:12px; } }

/* ---- brand logo + crowd art (added) ---- */
.brand-img { height: 62px; width: auto; display: block; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.hero-logo-img { width: min(460px, 84%); height:auto; margin: 0 auto 18px; filter: drop-shadow(0 3px 18px rgba(0,0,0,.55)); }
.crowd-strip { display:block; line-height:0; background: var(--amber); }
.crowd-strip img { width:100%; max-width:var(--maxw); margin:0 auto; display:block; }
.menu-cat { margin: 34px 0 10px; color: var(--amber); font-size: 1.35rem; border-bottom:1px solid var(--line); padding-bottom:6px; }
.menu-cat:first-of-type { margin-top: 8px; }
.mprice { color: var(--amber-2); font-weight:700; white-space:nowrap; }

/* ---- mobile: portrait hero (the lit-sign shot) ---- */
@media (max-width: 700px){
  /* NB: kept `fixed` (parallax) on mobile by Andy's preference, 2026-07-28.
     On Chrome/Android the URL bar hiding on scroll rescales a fixed background,
     so the photo does a slight one-time zoom-jump — accepted trade for the
     parallax look. Switch these two to `scroll` if that ever needs to stop. */
  body{
    background:
      linear-gradient(rgba(12,8,5,0.45), rgba(12,8,5,0.75)),
      url("../assets/hero-mobile.jpg?r=1") center top / cover no-repeat fixed,
      var(--bg);
  }
  .hero{
    min-height: 86vh;
    background:
      linear-gradient(rgba(10,7,5,0.30), rgba(12,8,5,0.72)),
      url("../assets/hero-mobile.jpg?r=1") center center / cover no-repeat fixed,
      #14100d;
  }
}
