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

:root {
  --bg: #0e0e0e;
  --bg-alt: #161616;
  --text: #f2f2f2;
  --text-dim: #b8b8b8;
  --red: #a11d1d;
  --gold: #c9942f;
  --border: #2a2a2a;
  --max-width: 900px;
  --font-body: 'Space Mono', 'Courier New', monospace;
  --font-display: 'Baloo 2', 'Arial', sans-serif;
  --site-width: 1200px;
}

html {
  scroll-behavior: smooth;
  background: #000;
  font-size: 18px;
}

body {
  max-width: var(--site-width);
  margin: 0 auto;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

a { color: inherit; }

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: normal;
  text-align: center;
  text-transform: none;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* ---- Back to top ---- */
.fixed-frame {
  position: fixed;
  top: 0; left: 50%;
  width: 100%;
  max-width: var(--site-width);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 100;
}
#back-to-top {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: #2a0808;
  min-height: 480px;
  display: flex;
}

.hero-socials {
  position: absolute;
  top: 1.5rem; right: 25%;
  display: flex;
  gap: 1rem;
  z-index: 5;
}
.icon-btn {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
}
.icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  flex-wrap: wrap;
  padding: 2rem;
}
.hero-content .logo { width: 64px; height: 64px; }
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: #fff;
  letter-spacing: 0.01em;
}

/* ---- Nav ---- */
.navbar {
  background: #000;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
}
.nav-links {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.nav-link {
  flex: 1;
  text-align: center;
  padding: 1.15rem 0.5rem;
  text-decoration: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-link:last-child { border-right: none; }
.nav-link:hover, .nav-link.active { color: #fff; background: #1a1a1a; }

/* ---- Wij zijn... ---- */
.band-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}
.band-photo { width: 100%; height: 100%; min-height: 240px; object-fit: cover; border-radius: 6px; }
.member-list { list-style: none; }
.member-list li { padding: 0.3rem 0; font-size: 1.05rem; }
.member-list .name { font-weight: 700; }
.band-description { color: var(--text-dim); font-size: 1.05rem; }

/* ---- Testimonial ---- */
.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.testimonial blockquote {
  font-style: italic;
  font-size: 1.05rem;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--text-dim);
}
.testimonial-photo { width: 100%; min-height: 200px; object-fit: cover; border-radius: 6px; }

/* ---- Muziek ---- */
.player-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.1rem;
  align-items: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  grid-row: span 2;
}
.play-btn .icon-pause { display: none; }
.play-btn.is-playing .icon-play { display: none; }
.play-btn.is-playing .icon-pause { display: block; }
.player-info { display: flex; flex-direction: column; }
.player-label { color: var(--text-dim); font-size: 0.9rem; }
.player-title { font-weight: 700; font-size: 1.2rem; }
.player-artist { color: var(--text-dim); font-size: 1rem; }
.player-controls {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.player-controls input[type="range"] { flex: 1; accent-color: var(--gold); }

.track-list { list-style: none; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.track-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s;
}
.track-list li:hover { color: var(--gold); }
.track-list li.active { color: var(--gold); font-weight: 700; }
.track-time { color: var(--text-dim); }

/* ---- Video grid ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.video-item video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
}

/* ---- Foto grid: masonry met wisselende hoogtes ---- */
.photo-grid {
  column-count: 3;
  column-gap: 1rem;
}
.photo-item {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  border-radius: 4px;
  break-inside: avoid;
}
.video-item p { text-align: center; margin-top: 0.5rem; font-weight: 700; }
.video-item[hidden], .photo-item[hidden] { display: none; }

.load-more-btn, .ghost-btn {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 1px solid var(--red);
  color: #fff;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s;
}
.load-more-btn:hover, .ghost-btn:hover { background: rgba(161,29,29,0.15); }

.playlist-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.playlist-links .ghost-btn { flex: 1; min-width: 220px; margin: 0; font-size: 1.15rem; }

/* ---- Contact ---- */
.contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.contact-row p { font-size: 1.15rem; line-height: 1.8; }
.contact-row a[href^="mailto"]:not(.mail-icon) { color: var(--gold); }
.mail-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  align-items: center; justify-content: center;
}

/* ---- Footer ---- */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}
footer .socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; }
footer .icon-btn { width: 56px; height: 56px; }

/* ---- Document viewer pages (playlist.html / rider.html) ---- */
.doc-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.doc-bar a {
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
}
.doc-bar a:hover { background: rgba(201,148,47,0.15); }
.doc-bar span { font-family: var(--font-display); font-weight: 600; }
.doc-frame {
  width: 100%;
  height: calc(100vh - 68px);
  border: none;
}

/* ---- Desktop: groter logo en menu ---- */
@media (min-width: 701px) {
  .hero { aspect-ratio: 16 / 9; min-height: 0; }
  .hero-content {
    position: absolute;
    left: 0; right: 0;
    top: 66.66%;
    transform: translateY(-50%);
    flex: none;
  }
  .hero-content .logo { width: 96px; height: 96px; }
  .nav-link { font-size: 1.2rem; padding: 1.25rem 0.5rem; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .photo-grid { column-count: 2; }
}
@media (max-width: 700px) {
  .band-row, .testimonial { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { column-count: 1; }

  .navbar { border-bottom: none; }

  #back-to-top { display: none; }

  .nav-toggle {
    display: flex;
    position: fixed;
    top: 1.25rem; right: 1.25rem;
    width: 60px; height: 60px;
    background: #fff;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 60;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }
  .nav-toggle span { background: #000; width: 28px; height: 3px; }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0; left: 0;
    background: rgba(0,0,0,0.97);
    z-index: 55;
  }
  .nav-links.open { display: flex; }
  .nav-link { border: none; font-size: 1.5rem; padding: 0.5rem 1rem; flex: none; }
  .nav-inner { position: relative; }

  .hero-content { flex-direction: column; gap: 0.75rem; }
  .hero-content .logo { width: 90px; height: 90px; }
  .hero-content h1 { font-size: 2.4rem; }
}
