/* PicksByEvent — Premium Dark Entertainment
   Deep near-black + marquee gold. Cinematic. Theatrical.
   Think concert venue, not property report. */

:root {
  --bg:        #0c0c10;
  --bg-2:      #13121a;
  --paper:     #1a1825;
  --paper-2:   #221f30;
  --ink:       #f0edf8;
  --ink-soft:  #b8b0d0;
  --muted:     #6e6680;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.15);
  --gold:      #f5c842;
  --gold-2:    #ffd96a;
  --gold-bg:   rgba(245,200,66,.10);
  --coral:     #f94080;
  --coral-bg:  rgba(249,64,128,.12);
  --teal:      #22d3ee;
  --teal-bg:   rgba(34,211,238,.10);
  --violet:    #a855f7;
  --violet-bg: rgba(168,85,247,.12);
  --amber:     #fb923c;
  --amber-bg:  rgba(251,146,60,.12);
  --green:     #4ade80;
  --green-bg:  rgba(74,222,128,.10);
  --film-bg:   rgba(168,85,247,.10);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.4);
  --shadow:    0 8px 32px rgba(0,0,0,.6);
  --glow-gold: 0 0 20px rgba(245,200,66,.25);
  --r:         10px;
  --display:   'Plus Jakarta Sans', system-ui, sans-serif;
  --sans:      'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-2); }
img { display: block; max-width: 100%; }
h1,h2,h3,h4,h5 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ── Layout ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
header.site {
  background: rgba(12,12,16,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.nav { display: flex; align-items: center; gap: 32px; height: 62px; }
.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.brand em { font-style: normal; color: var(--gold); }
.nav ul { display: flex; list-style: none; gap: 2px; margin-left: auto; }
.nav ul a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 5px 11px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav ul a:hover { background: var(--paper-2); color: var(--ink); }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #1a0f2e 0%, #0c0c10 60%);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,200,66,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 800;
  max-width: 14ch;
  margin-bottom: 18px;
  position: relative;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--line-2); }

/* ── Event Grid ── */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

/* Concert poster card — image fills, text overlays bottom */
.event-card {
  position: relative;
  height: 300px;
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  display: block;
}
.event-card:hover {
  box-shadow: var(--shadow), var(--glow-gold);
  transform: translateY(-4px) scale(1.01);
}

/* Image layer */
.event-card .img-wrap {
  position: absolute;
  inset: 0;
}
.event-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.event-card:hover .img-wrap img { transform: scale(1.06); }

/* Fallback gradient when no image — per-category via class */
.event-card.no-img { background: linear-gradient(160deg, #1a0f2e 0%, #0c0c10 100%); }
.event-card.no-img.seg-music    { background: linear-gradient(160deg, #3d0520 0%, #1a0f2e 100%); }
.event-card.no-img.seg-sports   { background: linear-gradient(160deg, #062a36 0%, #0c1a1e 100%); }
.event-card.no-img.seg-arts-theatre { background: linear-gradient(160deg, #2e1065 0%, #1a0f2e 100%); }
.event-card.no-img.seg-comedy   { background: linear-gradient(160deg, #451a03 0%, #1c0f04 100%); }
.event-card.no-img.seg-family   { background: linear-gradient(160deg, #052e16 0%, #0a1a10 100%); }
.event-card.no-img.seg-film     { background: linear-gradient(160deg, #1e1b4b 0%, #0c0c10 100%); }

/* Dark gradient overlay — text readable over any image */
.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
  pointer-events: none;
}

/* Text overlay */
.event-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 18px;
  z-index: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.event-meta {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.event-name {
  font-family: var(--display); font-weight: 800;
  font-size: 16px; line-height: 1.25; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.event-venue {
  font-size: 12px; color: rgba(255,255,255,.65);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.event-price {
  font-size: 12px; font-weight: 700; color: var(--gold);
  margin-top: 3px;
}

/* Ticket stub notch */
.event-card::before {
  content: '';
  position: absolute;
  left: -7px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--bg);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  z-index: 2;
}

/* ── Segment color classes ── */
.seg-music         { color: var(--coral)  !important; }
.seg-sports        { color: var(--teal)   !important; }
.seg-arts-theatre  { color: var(--violet) !important; }
.seg-comedy        { color: var(--amber)  !important; }
.seg-family        { color: var(--green)  !important; }
.seg-film          { color: var(--violet) !important; }

.badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.badge-music        { background: var(--coral-bg);  color: var(--coral);  }
.badge-sports       { background: var(--teal-bg);   color: var(--teal);   }
.badge-arts-theatre { background: var(--violet-bg); color: var(--violet); }
.badge-comedy       { background: var(--amber-bg);  color: var(--amber);  }
.badge-family       { background: var(--green-bg);  color: var(--green);  }
.badge-film         { background: var(--film-bg);   color: var(--violet); }

/* ── Pills ── */
.pill {
  display: inline-block;
  padding: 7px 18px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.pill:hover { background: var(--gold); color: #000; border-color: var(--gold); box-shadow: var(--glow-gold); }
.pill-sm { padding: 4px 13px; font-size: 12px; }

/* ── Metro ── */
.metro-pill {
  display: flex; align-items: center; justify-content: center;
  padding: 13px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  text-decoration: none; text-align: center;
  transition: background .15s, border-color .15s, color .15s;
}
.metro-pill:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.metro-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 24px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}
.metro-card:hover { box-shadow: var(--shadow), var(--glow-gold); border-color: rgba(245,200,66,.3); }
.metro-card-city { font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--ink); }
.metro-card-state { font-size: 12px; color: var(--muted); }
.metro-card-count { font-size: 12px; font-weight: 700; color: var(--gold); margin-top: 7px; }

/* ── Stat card ── */
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.stat-card strong { color: var(--ink); }

/* ── Ticket CTA ── */
.ticket-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: #000;
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .01em;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245,200,66,.35);
  transition: background .15s, box-shadow .15s, transform .15s;
}
.ticket-btn:hover {
  background: var(--gold-2);
  color: #000;
  box-shadow: 0 6px 28px rgba(245,200,66,.5);
  transform: translateY(-2px);
}

/* ── Prose ── */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.75; }
.prose h2 { font-size: 22px; margin: 28px 0 12px; color: var(--ink); }
.prose h3 { font-size: 17px; margin: 24px 0 10px; color: var(--ink-soft); }
.prose a { color: var(--gold); border-bottom: 1px solid rgba(245,200,66,.3); }
.prose a:hover { border-color: var(--gold); }

/* ── Footer ── */
footer.site {
  background: #090910;
  border-top: 1px solid var(--line);
  padding: 52px 0 30px;
  margin-top: 80px;
  font-size: 13px;
  color: var(--muted);
}
footer.site h5 {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
footer.site a { color: var(--muted); transition: color .15s; }
footer.site a:hover { color: var(--gold); }
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.foot p { color: var(--muted); line-height: 1.65; max-width: 28ch; }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 22px; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.foot-disclosure { font-size: 11px; color: var(--muted); opacity: .6; line-height: 1.5; padding-top: 12px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav ul { display: none; }
  .foot { grid-template-columns: 1fr 1fr; gap: 30px; }
  .event-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
}
@media (max-width: 480px) {
  .foot { grid-template-columns: 1fr; }
}
