@font-face {
  font-family: 'Printer';
  src: url('/fonts/F25_Bank_Printer.ttf') format('truetype'),
    url('/fonts/F25_Bank_Printer.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --dark-red: #970300;
  --red: #ff0000;
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1c1c1c;
  --light: #f0ece4;
  --muted: #888888;

  --font-display: 'Printer', sans-serif;
  --font-ui: 'Printer', sans-serif;
  --font-body: 'Printer', sans-serif;

  --container: 1100px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-red);
}

/* ─── UTILITIES ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #333, transparent);
}

.section-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dark-red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

/* ─── BUTTONS ─── */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 44px;
  cursor: pointer;
  border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-primary {
  background: var(--dark-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 1px solid #444;
  padding: 14px 40px;
}

.btn-secondary:hover {
  border-color: var(--light);
}

.btn-full {
  width: 100%;
  text-align: center;
}


/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: var(--header-h);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
  transition: background 0.3s, border-color 0.3s;
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid #1e1e1e;
}

/* Logo */
.logo-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s, background 0.3s;
}

.logo-btn:hover .logo-icon {
  transform: rotate(30deg);
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark-red);
  transition: width 0.25s;
}

nav a:hover {
  color: var(--light);
}

nav a:hover::after {
  width: 100%;
}

nav a.nav-cta {
  color: var(--dark-red);
  border: 1px solid var(--dark-red);
  padding: 7px 20px;
  border-radius: 1px;
  transition: background 0.2s, color 0.2s;
}

nav a.nav-cta:hover {
  background: var(--dark-red);
  color: #fff;
}

nav a.nav-cta::after {
  display: none;
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}

.hero-logo {
  display: flex;
  justify-content: center;
  width: 100vw;
  padding: 0 2rem;
  margin-bottom: 2rem;

  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-logo svg {
  width: min(1400px, 96vw);
  max-width: none;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-weight: 300;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #555;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #555, transparent);
  animation: scrollPulse 2s 2s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}


/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.section-about {
  background: var(--dark);
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.about-card {
  background: var(--mid);
  border: 1px solid #2a2a2a;
  padding: 2.5rem;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--dark-red), var(--red));
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid #222;
  z-index: -1;
}

.pull-quote p {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: #bbb;
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-style: italic;
}

.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-red);
  font-style: normal;
}

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat {
  flex: 1;
  border-top: 2px solid var(--dark-red);
  padding-top: 1rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── About split layout ── */
.about-split {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.about-text-col p {
  color: #bbb;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

/* ── Members grid ── */
.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.member-card {
  flex: 0 0 calc(33.333% - 0.67rem);
}

.member-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  position: relative;
}

.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: filter 0.3s, transform 0.4s;
}

/* Remove all the nth-child column overrides */
.member-card:nth-child(4),
.member-card:nth-child(5) {
  grid-column: unset;
  margin: 0;
}

.member-name {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 0.5rem;
}

.member-role {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-red);
}

@media (max-width: 900px) {
  .members-grid {
    flex-wrap: nowrap;
  }

  .member-card {
    flex: 0 0 calc(20% - 0.8rem);
  }
}

@media (max-width: 600px) {
  .members-grid {
    flex-wrap: wrap;
  }

  .member-card {
    flex: 0 0 calc(33.333% - 0.67rem); /* back to 3+2 */
  }
}
/* ════════════════════════════════════════
   DATES
════════════════════════════════════════ */



.dates-list {
  display: flex;
  flex-direction: column;
}

.date-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #1e1e1e;
  transition: background 0.2s;
}

.date-item:first-child {
  border-top: 1px solid #1e1e1e;
}

.date-item:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 1rem;
}

.date-cal {
  text-align: center;
}

.date-month {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark-red);
}

.date-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--light);
}

.date-venue {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  min-width: 0; /* needed for text to break inside a grid cell */
}

.date-location {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 3px;
}

.date-ticket a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border: 1px solid rgba(255, 106, 0, 0.4);
  padding: 9px 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.date-ticket a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.dates-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #444;
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  font-size: 1rem;
  text-transform: uppercase;
}



/* ════════════════════════════════════════
   SECTION HIGHLIGHTS
════════════════════════════════════════ */
.section-booking {
  background: var(--dark);
  padding: 7rem 0;
}

.section-dates {
  background: var(--black);
  padding: 7rem 0;
}

.section-dates .section-title {
  margin-bottom: 3rem;
}

.section-dates p {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

.footer-nav ul {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 0.7rem;
  break-inside: avoid;
  /* prevents a link being split across columns */
}

.footer-nav ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: var(--light);
}


.social-media-icon {
  width: 38px;
  height: 38px;
  fill: rgb(255, 255, 255);
  stroke: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}

#site-footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-bottom {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}


.footer-bottom p {
  color: #333;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {

  .about-grid,

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  #site-header {
    padding: 0 1.25rem;
  }

  .date-item {
    grid-template-columns: 70px 1fr;
  }

  .date-ticket {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}