/* ============================================================
   Real Food Hall — v1
   Dark, warm, food-hall vibe. Gold on near-black.
   ============================================================ */

:root {
  --bg:        #060605;
  --bg-2:      #0c0b0a;
  --surface:   #131210;
  --surface-2: #1b1816;
  --line:      #29241f;
  --gold:      #e23834;  /* brand red (kept var name to avoid churn) */
  --gold-deep: #b51f1c;  /* deeper red for hovers */
  --red:       #e23834;
  --cream:     #f5efe6;
  --text:      #f3ece2;
  --muted:     #b3a594;
  --muted-2:   #877a6b;
  --badge-bg:  #ffffff;

  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 18px 40px -20px rgba(0,0,0,.8);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-label: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 .8rem;
}

.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  margin: 0;
  color: var(--cream);
}
.section-sub { color: var(--muted); margin: .9rem 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .92rem;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); }
.btn-ghost { border-color: rgba(245,239,230,.4); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.link-gold { color: var(--gold); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .2s; }
.link-gold:hover { border-bottom-color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,6,5,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 74px; width: auto; display: block; }
.brand-real { color: var(--gold); }
.brand-fh { color: var(--cream); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: url('/assets/venue/foodhall_darts_bar.jpg') center 42%/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,5,.9) 0%, rgba(6,6,5,.62) 42%, rgba(6,6,5,.15) 100%),
    linear-gradient(180deg, rgba(6,6,5,.5) 0%, rgba(6,6,5,.4) 40%, rgba(6,6,5,.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero .eyebrow { color: #ff6b5e; text-shadow: 0 1px 3px rgba(0,0,0,.95), 0 2px 12px rgba(0,0,0,.8); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: .98;
  margin: 0 0 1.1rem;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.55);
}
.hero-sub { max-width: 540px; font-size: 1.12rem; color: #e7ded2; margin: 0 0 2rem; text-shadow: 0 2px 14px rgba(0,0,0,.6); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Intro ---------- */
.intro { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 64px 0; }
.intro-inner { max-width: 820px; text-align: center; }
.intro-lead { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 3.5vw, 2rem); color: var(--gold); margin: 0 0 1rem; }
.intro-body { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Vendors ---------- */
.vendors { background: var(--bg); }
.vendor-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px;
}
.vendor-card {
  flex: 0 1 332px; max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.vendor-card:hover { transform: translateY(-4px); border-color: var(--gold-deep); box-shadow: var(--shadow); }
.vendor-badge {
  width: 132px; height: 132px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.85);
  border: 3px solid var(--gold);
}
.vendor-badge img { width: 100%; height: 100%; object-fit: cover; }
.vendor-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--cream); margin: 0 0 .3rem; }
.vendor-tag { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--gold); margin: 0 0 .8rem; }
.vendor-desc { color: var(--muted); font-size: .96rem; margin: 0 0 18px; flex: 1; }
.vendor-link {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; font-weight: 600; color: var(--cream);
  border-bottom: 1.5px solid var(--gold); padding-bottom: 3px; transition: color .2s;
}
.vendor-link:hover { color: var(--gold); }

/* ---------- Menus ---------- */
.menus { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 40px;
}
.menu-tab {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: .1em;
  font-size: .82rem; font-weight: 500;
  padding: 11px 20px; border-radius: 999px;
  background: var(--surface); color: var(--muted);
  border: 1px solid var(--line); cursor: pointer;
  transition: all .2s ease;
}
.menu-tab:hover { color: var(--cream); border-color: var(--gold-deep); }
.menu-tab[aria-selected="true"] { background: var(--gold); color: #fff; border-color: var(--gold); font-weight: 600; }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.menu-panel-head { text-align: center; margin-bottom: 26px; }
.menu-panel-head .vendor-name { margin-bottom: .25rem; }
.menu-images { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.menu-images figure { margin: 0; max-width: 560px; width: 100%; }
.menu-images img {
  width: 100%; height: auto; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff;
}
.menu-images figcaption { text-align: center; color: var(--muted-2); font-size: .85rem; margin-top: 10px; font-family: var(--font-label); letter-spacing: .08em; text-transform: uppercase; }

/* ---------- Darts ---------- */
.darts { background: var(--bg); }
.darts-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.darts-text .section-title { text-align: left; }
.darts-text p { color: var(--muted); margin: 1rem 0 1.8rem; }
.darts-photo {
  border-radius: var(--radius); min-height: 340px;
  background: url('/assets/venue/foodhall_darts_bar.jpg') center/cover no-repeat;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}

/* ---------- Find Us ---------- */
.find-us { background: var(--bg-2); border-top: 1px solid var(--line); }
.find-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.find-block { margin-bottom: 30px; }
.find-block h3 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .14em; font-size: .9rem; color: var(--gold); margin: 0 0 .6rem; }
.find-block p { margin: 0 0 .5rem; color: var(--text); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 20px; max-width: 340px; padding: 6px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.find-social { margin-top: .8rem; }
.find-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; border-radius: var(--radius); filter: grayscale(.25) contrast(1.05); }

/* ---------- Newsletter ---------- */
.newsletter {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 28px 40px; padding-bottom: 38px; margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.newsletter-title { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--cream); margin: 0 0 .35rem; }
.newsletter-text p { color: var(--muted); margin: 0; font-size: 1rem; }
.newsletter-signup { flex: 1 1 320px; max-width: 460px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1 1 220px; min-width: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 13px 22px; color: var(--text);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color .2s;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--muted-2); }
.newsletter-form .btn { cursor: pointer; flex: 0 0 auto; }
.newsletter-msg { min-height: 1.3em; margin: 12px 2px 0; font-size: .92rem; }
.newsletter-msg.ok  { color: #6fcf86; }
.newsletter-msg.err { color: #ff6b5e; }

/* ---------- Footer ---------- */
.site-footer { background: #040403; border-top: 1px solid var(--line); padding: 48px 0 40px; }
.footer-inner { text-align: center; }
.footer-brand { margin-bottom: .8rem; }
.footer-logo { height: 92px; width: auto; display: block; margin: 0 auto; }
.footer-addr { color: var(--muted); margin: 0 0 1.4rem; font-size: .95rem; }
.footer-addr a { color: var(--gold); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 1.6rem; }
.footer-links a { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--muted-2); font-size: .82rem; margin: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 820px) {
  .darts-inner, .find-grid { grid-template-columns: 1fr; }
  .darts-text .section-title { text-align: center; }
  .darts-text { text-align: center; }
  .darts-photo { min-height: 260px; order: -1; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 88px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 24px 44px -14px rgba(0,0,0,.92);
    max-height: 0; overflow: hidden; transition: max-height .32s ease;
  }
  .nav-links.open { max-height: 80vh; }
  .nav-links li { width: 100%; border-top: 1px solid var(--line); }
  .nav-links li:first-child { border-top: 0; }
  .nav-links a { display: block; padding: 18px 24px; font-size: 1rem; letter-spacing: .16em; color: var(--cream); }
  .nav-links a:hover, .nav-links a:active { color: var(--gold); background: rgba(255,255,255,.03); }
  .section { padding: 64px 0; }
  body { font-size: 16px; }

  /* Mobile hero: photo as a crisp banner (near native res) + text on solid black below */
  .hero { min-height: 0; display: flex; flex-direction: column; align-items: stretch; }
  .hero-media { position: relative; inset: auto; width: 100%; height: 64vw; min-height: 230px; background-position: center 42%; }
  .hero-overlay { display: none; }
  .hero-content { background: var(--bg); padding: 30px 20px 8px; }
  .hero .eyebrow { text-shadow: none; }
  .hero-title { text-shadow: none; }
  .hero-sub { color: var(--muted); text-shadow: none; }
}
