/* ============================================================
   Phantoms of the Opry — design tokens
   Honky-tonk western: blackened stage, sunset red/orange,
   gold rope accents. Bold wood-type display over stage photos.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --stage:        #150C0B;   /* near-black page background */
  --stage-deep:   #0E0808;   /* header / footer panels */
  --stage-raised: #1E1210;   /* slightly raised surface (cards) */
  --paper:        #F3E7D3;   /* warm cream ink */
  --muted:        #C9B8A3;   /* secondary text */
  --gold:         #C9A227;   /* rope-gold — primary accent */
  --gold-deep:    #A3821C;
  --gold-light:   #E0BE4E;   /* hover state */
  --red:          #A32020;   /* sunset red — emphasis */
  --red-deep:     #7A1414;
  --hairline:     #3A2A24;
  --white:        #FFFFFF;

  --hero-ink:     #F3E7D3;

  --font-display: 'Rye', 'Barlow', serif;
  --font-body:    'Barlow', -apple-system, sans-serif;

  --max-width: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--stage);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 39, 0.4);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
a:hover { color: var(--gold-light); text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--paper);
}

p { margin: 0 0 1.1em; color: var(--paper); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--stage); padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   Header / nav
   ============================================================ */

.site-header {
  background: var(--stage-deep);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark:hover { color: var(--paper); }
.wordmark span.accent { color: var(--gold); }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: var(--radius);
}
.main-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 6px 10px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .main-nav { display: none; flex-direction: column; align-items: stretch; width: 100%; padding: 8px 0 4px; }
  .main-nav.is-open { display: flex; }
  .site-header__inner { flex-wrap: wrap; }
}

/* ============================================================
   Hero — poster
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: var(--stage-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,8,8,0.05) 0%, rgba(14,8,8,0.35) 60%, rgba(14,8,8,0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 56px;
  width: 100%;
}

.hero .eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero p.lede {
  font-size: 1.2rem;
  max-width: 560px;
  color: var(--hero-ink);
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--stage-deep); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--ghost { background: transparent; color: var(--hero-ink); border-color: rgba(243,231,211,0.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 700px) {
  .hero { min-height: 72vh; }
}

/* Simple top banner — just the poster, no overlay/scrim/copy */
.hero--simple {
  min-height: 0;
  display: block;
  border-bottom: 1px solid var(--hairline);
}
.hero--simple .hero__bg { position: static; }
.hero--simple .hero__bg img { width: 100%; height: auto; object-fit: contain; }
.hero--simple .hero__bg::after { content: none; }

/* ============================================================
   Section scaffolding
   ============================================================ */

.section { padding: 72px 24px; }
.section--raised { background: var(--stage-raised); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.section__header {
  text-align: center;
  max-width: var(--max-width); margin: 0 auto 40px;
}
.section__header .eyebrow {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.8rem; color: var(--gold); display: block; margin-bottom: 10px;
}
.section__header h2 { font-size: 2.4rem; margin: 0; }

/* ============================================================
   About
   ============================================================ */

.about { max-width: 760px; margin: 0 auto; text-align: center; }
.about p { font-size: 1.08rem; color: var(--muted); }

/* ============================================================
   Events
   ============================================================ */

.event-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--hairline);
}

.event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 12px;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.event-row__date {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  min-width: 130px;
}
.event-row__date .weekday {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.event-row__details { flex: 1 1 260px; }
.event-row__venue { font-size: 1.1rem; font-weight: 600; margin: 0 0 2px; color: var(--paper); }
.event-row__place { font-size: 0.92rem; color: var(--muted); margin: 0; }

.event-row__action { margin-left: auto; }
.event-row__free {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.88rem; color: var(--gold);
}

.empty-note {
  background: var(--stage-raised); border: 1px dashed var(--hairline); border-radius: var(--radius);
  padding: 28px; color: var(--muted); font-size: 0.98rem; text-align: center; max-width: 820px; margin: 0 auto;
}

/* ============================================================
   Gallery
   ============================================================ */

.gallery-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--stage-raised); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer { background: var(--stage-deep); padding: 56px 24px 32px; border-top: 1px solid var(--hairline); text-align: center; }
.footer__brand p { color: var(--muted); margin-top: 12px; }
.footer__brand a { color: var(--paper); }
.footer__bottom {
  max-width: var(--max-width); margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid var(--hairline); font-size: 0.82rem; color: var(--muted);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
}

.social-icons { display: flex; flex-direction: row; gap: 18px; align-items: center; justify-content: center; margin: 24px 0; }
.social-icons a { display: inline-flex; color: var(--muted); text-decoration: none; }
.social-icons a:hover { color: var(--gold); }
.social-icons svg { width: 30px; height: 30px; }
