:root {
  --kleur-achtergrond: #0d0d0d;
  --kleur-tekst: #e8e8e8;
  --kleur-primair: #3d9fa0;
  --kleur-primair-contrast: #ffffff;
  --kleur-zacht: #1a1a1a;
  --font-koppen: Georgia, 'Times New Roman', serif;
  --font-tekst: 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  line-height: 1.7;
  min-width: 360px;
}

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

a { color: var(--kleur-primair); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-koppen);
  color: var(--kleur-tekst);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61,159,160,0.2);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-family: var(--font-koppen);
  font-size: 1.35rem;
  font-weight: normal;
  color: var(--kleur-tekst);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo:hover { color: var(--kleur-primair); text-decoration: none; }

nav[data-pagira-menu] ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

nav[data-pagira-menu] ul li a {
  font-family: var(--font-tekst);
  font-size: 15px;
  color: var(--kleur-tekst);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
}
nav[data-pagira-menu] ul li a:hover {
  color: var(--kleur-primair);
  background: rgba(61,159,160,0.08);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  font-family: var(--font-tekst);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--kleur-primair);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
}
.btn:hover {
  background: transparent;
  color: var(--kleur-primair);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--kleur-primair-contrast);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--kleur-primair);
  color: var(--kleur-primair);
  background: transparent;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 13px;
}

.btn-full { width: 100%; }

/* LABEL */
.label {
  display: inline-block;
  font-family: var(--font-tekst);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kleur-primair);
  margin-bottom: 0.75rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  overflow: hidden;
  text-align: center;
  padding: 7rem 1.25rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(61,159,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-koppen);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--kleur-tekst);
  margin-bottom: 1rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.6);
}

.hero-sub {
  font-family: var(--font-tekst);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(232,232,232,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: var(--kleur-primair);
  font-size: 1.4rem;
  opacity: 0.7;
  line-height: 0.7;
}

/* INTRO SECTION */
.intro-section {
  padding: 5rem 0;
  background: var(--kleur-achtergrond);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.intro-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.intro-text p {
  color: rgba(232,232,232,0.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.accent-box {
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.2);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.accent-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-koppen);
  font-size: 2.5rem;
  color: var(--kleur-primair);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-tekst);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.5);
}

/* HIGHLIGHTS */
.highlights-section {
  padding: 5rem 0;
  background: var(--kleur-zacht);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 2.5rem;
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-card {
  background: var(--kleur-achtergrond);
  border: 1px solid rgba(61,159,160,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--kleur-tekst);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.highlight-card:hover {
  border-color: var(--kleur-primair);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--kleur-tekst);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--kleur-primair);
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: rgba(232,232,232,0.65);
  font-size: 0.95rem;
}

/* PAGE HERO */
.page-hero {
  padding: 9rem 0 3rem;
  background: var(--kleur-zacht);
  border-bottom: 1px solid rgba(61,159,160,0.15);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: normal;
}

/* ABOUT */
.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 2rem 0 0.75rem;
  color: var(--kleur-primair);
}
.about-text h2:first-child { margin-top: 0; }

.about-text p {
  color: rgba(232,232,232,0.8);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-quote {
  background: var(--kleur-zacht);
  border-left: 3px solid var(--kleur-primair);
  padding: 1.75rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}

.about-quote blockquote {
  font-family: var(--font-koppen);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--kleur-tekst);
  margin-bottom: 0.75rem;
}

.about-quote cite {
  font-size: 0.9rem;
  color: var(--kleur-primair);
  font-style: normal;
}

.about-facts {
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.about-facts h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-primair);
  margin-bottom: 1rem;
}

.about-facts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-facts li {
  font-size: 0.95rem;
  color: rgba(232,232,232,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.6rem;
}
.about-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.about-facts li a { color: var(--kleur-primair); }

/* SINGELS */
.singels-section {
  padding: 5rem 0;
}

.singels-intro {
  color: rgba(232,232,232,0.7);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 3rem;
}

.singels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.singel-card {
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.singel-card:hover { border-color: var(--kleur-primair); }

.singel-cover {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 220px;
  overflow: hidden;
}

.singel-cover-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 180px;
}

.cover-icon {
  font-size: 3rem;
  color: var(--kleur-primair);
  opacity: 0.5;
}

.singel-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.singel-jaar {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-primair);
}

.singel-info h2 {
  font-size: 1.3rem;
  font-weight: normal;
}

.singel-info p {
  font-size: 0.95rem;
  color: rgba(232,232,232,0.7);
  flex: 1;
}

.singel-genre {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.35);
  margin-top: 0.5rem;
}

.singels-cta {
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.singels-cta p {
  color: rgba(232,232,232,0.7);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* SHOWS */
.shows-section {
  padding: 5rem 0;
}

.shows-intro {
  color: rgba(232,232,232,0.7);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 3rem;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(61,159,160,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.show-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(61,159,160,0.1);
  background: var(--kleur-zacht);
  align-items: start;
  transition: background 0.2s;
}
.show-item:last-child { border-bottom: none; }
.show-item:hover { background: rgba(61,159,160,0.05); }

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  border-radius: var(--radius);
  padding: 0.5rem 0.25rem;
  text-align: center;
  min-width: 52px;
}

.show-day {
  font-family: var(--font-koppen);
  font-size: 1.6rem;
  line-height: 1;
}

.show-month {
  font-family: var(--font-tekst);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.show-details { display: flex; flex-direction: column; gap: 0.3rem; }

.show-venue {
  font-family: var(--font-koppen);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--kleur-tekst);
}

.show-location {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--kleur-primair);
}

.show-desc {
  font-size: 0.9rem;
  color: rgba(232,232,232,0.6);
  margin-top: 0.25rem;
}

.show-action {
  grid-column: 2;
  margin-top: 0.75rem;
}

.shows-cta {
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.shows-cta p {
  color: rgba(232,232,232,0.7);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* CONTACT */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-form-wrap h2,
.contact-info h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.contact-form-wrap > p {
  color: rgba(232,232,232,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.25);
  border-radius: var(--radius);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  min-height: 44px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--kleur-primair);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group select option {
  background: var(--kleur-zacht);
  color: var(--kleur-tekst);
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail:last-child { border-bottom: none; }

.contact-icon {
  font-size: 1.4rem;
  color: var(--kleur-primair);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.5);
  margin-bottom: 0.25rem;
}

.contact-detail a {
  color: var(--kleur-primair);
  font-size: 1rem;
}

.contact-detail p {
  color: rgba(232,232,232,0.7);
  font-size: 0.95rem;
}

.contact-social { margin-top: 2rem; }

.contact-social h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.5);
  margin-bottom: 0.75rem;
}

.contact-social p {
  color: rgba(232,232,232,0.6);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--kleur-zacht);
  border: 1px solid rgba(61,159,160,0.2);
  border-radius: var(--radius);
  color: var(--kleur-tekst);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
}
.social-link:hover {
  border-color: var(--kleur-primair);
  color: var(--kleur-primair);
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #080808;
  border-top: 1px solid rgba(61,159,160,0.15);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-koppen);
  font-size: 1.3rem;
  color: var(--kleur-tekst);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
}

.footer-nav a {
  color: rgba(232,232,232,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.footer-nav a:hover { color: var(--kleur-primair); }

.footer-email a {
  color: var(--kleur-primair);
  font-size: 14px;
}

.footer-copy {
  color: rgba(232,232,232,0.3);
  font-size: 13px;
}

/* RESPONSIVE */
@media (min-width: 600px) {
  .singels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .show-item {
    grid-template-columns: 72px 1fr auto;
    align-items: center;
  }
  .show-action {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 340px;
    align-items: center;
  }

  .accent-box {
    flex-direction: column;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 1fr 380px;
  }

  .singels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .singels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

