/* venue-page.css — shared chrome for /venues/<slug>.html (14 venue pages)
 * Loaded by each per-venue page so individual files stay ~350 lines, not 700+.
 * Mirrors the homepage / boards.html / venues.html aesthetic.
 */

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

:root {
  --f-serif: 'Fraunces', 'Georgia', serif;
  --f-sans: 'General Sans', system-ui, -apple-system, sans-serif;
  --surface-deep: #0d0b10;
  --surface-dark: #13111a;
  --surface-mid: #1a1622;
  --amber: #e8a33d;
  --amber-light: #f4c97b;
  --amber-glow: rgba(232,163,61,0.15);
  --amber-deep: rgba(232,163,61,0.06);
  --green: #22c55e;
  --green-glow: rgba(34,197,94,0.15);
  --teal: #3aada8;
  --teal-glow: rgba(58,173,168,0.15);
  --coral: #e05e4a;
  --coral-glow: rgba(224,94,74,0.15);
  --lavender: #9b8ec4;
  --lavender-glow: rgba(155,142,196,0.15);
  --blue: #3b82f6;
  --blue-glow: rgba(59,130,246,0.15);
  --rose: #f472b6;
  --rose-glow: rgba(244,114,182,0.15);
  --sky: #38bdf8;
  --sky-glow: rgba(56,189,248,0.15);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--f-sans); background: var(--surface-deep); color: rgba(255,255,255,0.78); line-height: 1.7; -webkit-font-smoothing: antialiased; animation: pageIn 0.8s ease; overflow-x: hidden; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
.container { max-width: min(1100px, 88vw); margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: #fff; }
a { color: inherit; text-decoration: none; }

/* Reveal */
.rv { opacity: 0; transform: translateY(40px); filter: blur(4px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out); }
.rv.vis { opacity: 1; transform: translateY(0); filter: blur(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }
.rv-scale { opacity: 0; transform: scale(0.9); filter: blur(6px); transition: opacity 0.7s ease, transform 0.7s var(--ease-spring), filter 0.7s ease; }
.rv-scale.vis { opacity: 1; transform: scale(1); filter: blur(0); }

/* Skip link */
.a11y-skip { position: absolute; left: -9999px; top: 0; background: var(--amber); color: #000; padding: 0.6rem 1rem; font-weight: 700; z-index: 999; }
.a11y-skip:focus { left: 1rem; top: 1rem; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.1rem 0; transition: all 0.5s var(--ease-out); }
.nav.scrolled { background: rgba(13,11,16,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 0.65rem 0; box-shadow: 0 1px 40px rgba(0,0,0,0.4); }
.nav-inner { width: min(1100px, 88vw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; }
.nav-logo { font-family: var(--f-serif); font-size: 1.15rem; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px var(--amber-glow); display: inline-block; animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 12px var(--amber-glow); } 50% { box-shadow: 0 0 22px rgba(232,163,61,0.45); } }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.3s; }
.nav-links a:hover { color: var(--amber); }
.nav-links a.nav-active, a.nav-active { color: var(--amber) !important; font-weight: 700 !important; }
.nav-demo-btn { padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.82rem; font-weight: 700; color: #1A1A2E !important; background: var(--amber); transition: all 0.3s var(--ease-out); }
.nav-demo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(232,163,61,0.4); }
@media (max-width: 768px) { .nav-links { gap: 0.6rem; } .nav-links li:nth-child(n+5):not(:last-child) { display: none; } }

/* Hero */
.v-hero { min-height: 68vh; padding: 8.5rem 0 4rem; display: flex; align-items: center; text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.v-hero > .container { width: 100%; position: relative; z-index: 2; }
.v-hero::before { content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 120vw; height: 70vh; background: radial-gradient(ellipse 50% 50% at center, var(--theme-glow, var(--amber-glow)), transparent 70%); z-index: -1; filter: blur(40px); }
.v-hero::after { content: ''; position: absolute; bottom: -30%; left: 20%; width: 500px; height: 500px; background: radial-gradient(circle, var(--theme-glow-2, rgba(58,173,168,0.10)), transparent 60%); z-index: -1; filter: blur(60px); animation: float 12s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,-30px); } }
.v-hero-eyebrow { display: inline-block; padding: 0.45rem 1.1rem; border-radius: 100px; background: rgba(232,163,61,0.08); border: 1px solid rgba(232,163,61,0.28); color: var(--amber); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.v-hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.v-hero h1 em { font-style: italic; color: var(--amber); }
.v-hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.18rem); color: rgba(255,255,255,0.65); max-width: 720px; margin: 0 auto 2.25rem; }
.v-hero-meta { display: inline-flex; gap: 1.5rem; padding: 0.85rem 1.5rem; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
.v-hero-meta strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.v-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 0.95rem 1.8rem; border-radius: 100px; font-size: 0.95rem; font-weight: 700; transition: all 0.3s var(--ease-out); display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-primary { background: var(--amber); color: #1A1A2E; box-shadow: 0 4px 24px var(--amber-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(232,163,61,0.45); }
.btn-ghost { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--amber); color: var(--amber); }

/* Section heading helpers */
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.85rem; padding: 0.35rem 0.9rem; border: 1px solid rgba(232,163,61,0.28); border-radius: 100px; background: rgba(232,163,61,0.05); }
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 0.85rem; }
.section-title em { font-style: italic; color: var(--amber); }
.section-sub { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 720px; }

/* Real-system showcase (the live tile preview) */
.showcase { padding: 5rem 0; position: relative; isolation: isolate; }
.showcase::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012), transparent); z-index: -1; }
.showcase-frame { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 1.5rem; margin-top: 2.25rem; box-shadow: 0 24px 60px rgba(0,0,0,0.35); position: relative; overflow: hidden; }
.showcase-frame::before { content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--theme-glow, var(--amber-glow)), transparent 70%); filter: blur(40px); pointer-events: none; opacity: 0.5; }
.showcase-frame-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.85rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.25rem; }
.showcase-frame-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.showcase-frame-dot.green { background: var(--green); box-shadow: 0 0 10px var(--green-glow); }
.showcase-frame-dot.amber { background: var(--amber); box-shadow: 0 0 10px var(--amber-glow); }
.showcase-frame-dot.red { background: var(--coral); }
.showcase-frame-url { margin-left: 0.5rem; font-family: var(--f-sans); font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.showcase-frame-url strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.showcase-frame-lang { margin-left: auto; font-size: 0.72rem; color: rgba(255,255,255,0.4); padding: 0.25rem 0.7rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 100px; }
.showcase-board-title { font-family: var(--f-serif); font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85); padding: 0 0.85rem 1rem; }
.showcase-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 0.85rem; padding: 0 0.5rem 0.5rem; }
.tile { padding: 1.1rem 0.8rem 0.95rem; border-radius: 16px; background: var(--tile-bg, rgba(46,80,144,0.85)); color: #fff; text-align: center; font-size: 0.86rem; font-weight: 600; line-height: 1.25; min-height: 96px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.45rem; transition: transform 0.3s var(--ease-out), box-shadow 0.3s; cursor: default; box-shadow: 0 4px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12); }
.tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.18); }
.tile-emoji { font-size: 1.55rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.tile-label { font-size: 0.78rem; color: rgba(255,255,255,0.95); }
.tile.back { background: rgba(107,114,128,0.45); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.tile.muted { opacity: 0.85; }

/* Feature columns */
.features { padding: 5rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature { padding: 1.75rem; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(232,163,61,0.25); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.feature-glyph { font-size: 1.8rem; line-height: 1; margin-bottom: 0.85rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: #fff; }
.feature p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.feature p strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ADA compliance section */
.compliance { padding: 5rem 0; }
.compliance-card { background: linear-gradient(180deg, rgba(232,163,61,0.05), rgba(232,163,61,0.015)); border: 1px solid rgba(232,163,61,0.18); border-radius: 22px; padding: 2.5rem; position: relative; overflow: hidden; }
.compliance-card::before { content: ''; position: absolute; top: -40%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--amber-glow), transparent 70%); filter: blur(40px); pointer-events: none; }
.compliance-card > * { position: relative; z-index: 1; }
.compliance-card .label { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); padding: 0.3rem 0.85rem; background: rgba(232,163,61,0.08); border: 1px solid rgba(232,163,61,0.25); border-radius: 100px; margin-bottom: 1rem; }
.compliance-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 0.75rem; color: var(--amber); }
.compliance-card p { font-size: 0.96rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; max-width: 760px; }
.compliance-card p strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.compliance-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.5rem; }
.compliance-list li { font-size: 0.88rem; color: rgba(255,255,255,0.65); padding-left: 1.6rem; position: relative; line-height: 1.6; }
.compliance-list li::before { content: '✓'; position: absolute; left: 0.2rem; top: 0; color: var(--amber); font-weight: 700; }

/* CTA */
.v-cta { padding: 5rem 0 6rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; isolation: isolate; }
.v-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--theme-glow, var(--amber-glow)), transparent 70%); z-index: -1; }
.v-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.85rem; }
.v-cta h2 em { font-style: italic; color: var(--amber); }
.v-cta p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Footer */
.v-footer { padding: 2.5rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.04); text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.v-footer a { color: var(--amber); }
.v-footer p { margin: 0.4rem 0; }

/* Theme glow overrides — set on <body class="theme-X"> */
body.theme-amber { --theme-glow: rgba(232,163,61,0.20); --theme-glow-2: rgba(244,201,123,0.10); }
body.theme-teal { --theme-glow: rgba(58,173,168,0.20); --theme-glow-2: rgba(56,189,248,0.10); }
body.theme-lavender { --theme-glow: rgba(155,142,196,0.20); --theme-glow-2: rgba(244,114,182,0.10); }
body.theme-green { --theme-glow: rgba(34,197,94,0.20); --theme-glow-2: rgba(58,173,168,0.10); }
body.theme-sky { --theme-glow: rgba(56,189,248,0.20); --theme-glow-2: rgba(58,173,168,0.10); }
body.theme-rose { --theme-glow: rgba(244,114,182,0.20); --theme-glow-2: rgba(155,142,196,0.10); }
body.theme-coral { --theme-glow: rgba(224,94,74,0.20); --theme-glow-2: rgba(244,114,182,0.10); }
body.theme-blue { --theme-glow: rgba(59,130,246,0.20); --theme-glow-2: rgba(56,189,248,0.10); }
