@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@900&family=Raleway:wght@200;300;400&display=swap');

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

:root {
  --dark:    #0e0d0c;
  --card:    #1a1715;
  --cream:   #f0ebe0;
  --muted:   rgba(240, 235, 224, 0.52);
  --dim:     rgba(240, 235, 224, 0.15);
  --accent:  rgba(240, 235, 224, 0.08);
  --display: 'Big Shoulders Display', sans-serif;
  --body:    'Raleway', sans-serif;
  --nav-h:   64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
}

a { color: var(--cream); text-decoration: none; }
a:hover { opacity: 0.72; }

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

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14, 13, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-text {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--cream);
  line-height: 1;
}

.nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--body);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

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

/* ── Page wrapper ─────────────────────────────────────────── */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center 25% / cover no-repeat;
  filter: grayscale(25%);
  transform: scale(1.03);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(14,13,12,0.68) 0%,
      rgba(14,13,12,0.32) 35%,
      rgba(14,13,12,0.50) 65%,
      rgba(14,13,12,0.90) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 48px 60px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  margin-bottom: 32px;
}

.hero-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 14vw, 160px);
  letter-spacing: .08em;
  line-height: 1;
  color: var(--cream);
}

.hero-dot {
  width: clamp(14px, 2.4vw, 28px);
  height: clamp(14px, 2.4vw, 28px);
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
}

.hero-tagline {
  font-family: var(--body);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

.hero-bio-short {
  max-width: 520px;
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: var(--body);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--dim);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.btn:hover { border-color: rgba(240,235,224,.45); background: var(--accent); opacity: 1; }
.btn-fill { background: var(--cream); color: var(--card); border-color: var(--cream); }
.btn-fill:hover { background: rgba(240,235,224,.88); opacity: 1; }

/* ── Section ──────────────────────────────────────────────── */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dim);
}

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Bio page ─────────────────────────────────────────────── */
.bio-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,235,224,.82);
  max-width: 640px;
}

.bio-body p + p { margin-top: 28px; }

/* ── Music page ───────────────────────────────────────────── */
.track-list { display: flex; flex-direction: column; gap: 2px; }

.track {
  background: var(--card);
  padding: 28px 32px;
  border-left: 2px solid transparent;
  transition: border-color .2s;
}

.track:hover { border-color: var(--cream); }

.track-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 20px;
}

.track-info { flex: 1; }

.track-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 6px;
}

.track-detail {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.track-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Custom audio player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240,235,224,.3);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}

.play-btn:hover { border-color: var(--cream); background: var(--accent); }

.play-btn svg { width: 12px; height: 12px; fill: var(--cream); margin-left: 2px; }
.play-btn.playing svg { margin-left: 0; }

.progress-wrap {
  flex: 1;
  position: relative;
  height: 2px;
  background: rgba(240,235,224,.15);
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: var(--cream);
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}

.time-label {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: .1em;
  color: var(--muted);
  white-space: nowrap;
  min-width: 56px;
  text-align: right;
}

/* ── Shows page ───────────────────────────────────────────── */
.show-list { display: flex; flex-direction: column; gap: 2px; }

.show {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--card);
  padding: 24px 32px;
  border-left: 2px solid transparent;
  transition: border-color .2s;
}

.show:hover { border-color: var(--cream); }

.show-date {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--cream);
}

.show-month {
  font-family: var(--body);
  font-weight: 200;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.show-time {
  font-family: var(--body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  margin-top: 6px;
}

.show-venue {
  font-family: var(--display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .05em;
  color: var(--cream);
  margin-bottom: 4px;
}

.show-location {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-description {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 42em;
}

.show-ticket { font-size: 13px; }

.no-shows {
  color: var(--muted);
  font-style: italic;
  font-size: 15px;
  padding: 20px 0;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-links { display: flex; flex-direction: column; gap: 20px; }

.contact-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-link-label {
  font-size: 9px;
  font-weight: 200;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-link-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  transition: opacity .2s;
}

.contact-link-value:hover { opacity: 0.65; }

/* Contact form */
.form { display: flex; flex-direction: column; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 9px;
  font-weight: 200;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  background: var(--card);
  border: 1px solid var(--dim);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(240,235,224,.4); }

.field textarea { resize: vertical; min-height: 120px; }

.field select option { background: var(--card); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--dim);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links a:hover { color: var(--cream); opacity: 1; }

/* ── Utilities ────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .section { padding: 72px 24px; }
  .hero { padding: 60px 24px 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .show { grid-template-columns: 80px 1fr; }
  .show-ticket { display: none; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
}
