:root {
  --black: #0a0a0a;
  --near-black: #121212;
  --red: #fe4a65;
  --red-bright: #ff7086;
  --white: #f2f2f2;
  --muted: #9a9a9a;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
}

.nav-brand { display: flex; align-items: center; }

.nav-logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--red-bright);
}

.nav-links a.active {
  opacity: 1;
  color: var(--red);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-red.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.hero-logo {
  width: min(520px, 82vw);
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.7));
  margin-bottom: 18px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  background: rgba(200, 30, 30, 0.12);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

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

/* Sections */
.section {
  padding: 90px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(26px, 4vw, 40px);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
}

/* Video */
.video-section {
  max-width: 1200px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--near-black);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-outline {
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  border-color: var(--red-bright);
}

/* Show */
.show-section {
  background: linear-gradient(180deg, transparent, rgba(200,30,30,0.05), transparent);
}

.show-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--near-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--red);
  padding: 36px 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 14px 10px;
  background: rgba(200,30,30,0.12);
  border: 1px solid rgba(200,30,30,0.4);
}

.show-month {
  font-family: var(--font-display);
  color: var(--red-bright);
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 700;
}

.show-day {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}

.show-venue {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.show-lineup {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 8px;
}

.show-lineup .dot {
  color: var(--red);
  margin: 0 4px;
}

.show-time {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.85;
}

/* Footer */
.footer {
  padding: 50px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 28px;
  margin: 0 auto 14px;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--red);
}

.footer p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* Bio page */
.bio-hero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 32px 40px;
}

.bio-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/band-photo.jpg');
  background-size: cover;
  background-position: center 18%;
}

.bio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 55%, var(--black) 100%);
}

.bio-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(36px, 6vw, 56px);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.bio-section {
  max-width: 760px;
}

.bio-text p {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.bio-text em {
  color: var(--white);
  font-style: italic;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.member-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 14px;
  background: var(--near-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  text-align: center;
}

.member-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.member-role {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-quote {
  border-left: 4px solid var(--red);
  padding: 6px 0 6px 24px;
  margin-top: 40px;
}

.press-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}

.press-quote cite {
  font-style: normal;
}

.press-quote cite a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.press-quote cite a:hover {
  color: var(--red);
}

/* Responsive */
@media (max-width: 600px) {
  .nav { padding: 14px 18px; flex-wrap: wrap; gap: 10px; }
  .nav-links { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { font-size: 11px; }
  .nav-logo { height: 28px; }
  .section { padding: 64px 18px; }
  .video-grid { gap: 10px; }
  .show-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-hero { padding: 0 18px 30px; }
}
