/* ==========================================================================
   Design tokens — change the look of the whole site from here.
   Placeholders until the band settles on a design.
   ========================================================================== */
:root {
  --color-bg: #111111;
  --color-surface: #1c1c1c;
  --color-text: #f2f2f2;
  --color-muted: #9a9a9a;
  --color-accent: #e0b04f;

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  --max-width: 60rem;
  --radius: 4px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 var(--space-md);
}

.muted {
  color: var(--color-muted);
}

/* Readable by screen readers and search engines, not shown on screen */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================================
   Coming-soon splash — full-screen looping video.
   While <body> has the "coming-soon" class, everything else is hidden.
   ========================================================================== */
.splash {
  display: none;
}

.coming-soon .splash {
  display: block;
  position: fixed;
  inset: 0;
  background: #000;
}

.coming-soon > :not(.splash) {
  display: none;
}

.splash-video {
  width: 100%;
  height: 100%;
  /* Show the whole video; black bars fill any leftover space */
  object-fit: contain;
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-surface);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: var(--space-lg);
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-muted);
  border-radius: var(--radius);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  font: inherit;
  cursor: pointer;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
}

.tagline {
  color: var(--color-muted);
  font-size: 1.25rem;
  margin: 0 0 var(--space-lg);
}

.button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

/* Shows */
.show-list,
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.show {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-surface);
}

.show-date {
  font-weight: 600;
}

.show-venue span {
  display: block;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  text-align: center;
  padding: var(--space-lg);
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Small screens
   ========================================================================== */
@media (max-width: 40rem) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-surface);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: var(--space-md) var(--space-lg);
  }

  .show {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}
