:root {
  --dark: #091E2F;
  --gold: #b7985b;
  --almost-white: #f9fafc;
  --pure-white: #fff;
}

/* Algemene pagina-achtergrond met wit-naar-goud verloop */
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  color: var(--dark);
  background: linear-gradient(120deg, var(--pure-white) 70%, var(--gold) 170%);
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* Header */
header {
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-left: 20px;
  height: 72px;
  position: relative;
}
.site-logo {
  width: 48px;
  height: 48px;
  margin-right: 20px;
  display: block;
  z-index: 2;
}
header h1 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 2.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 2px 8px #222;
  width: fit-content;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Navigatie */
nav {
  background: var(--dark);
  display: flex;
  justify-content: center;
  padding: 10px 0;
  border-bottom: 2px solid var(--gold);
}
nav a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 22px;
  font-size: 1.15rem;
  padding: 8px 20px;
  border-radius: 22px;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus,
nav a[aria-current="page"] {
  background: var(--gold);
  color: var(--dark);
  outline: none;
}

/* Hero, gallery, videos houden nu een transparante achtergrond */
.hero, .gallery, .media-videos {
  background: transparent;
}

/* Hero */
.hero {
  flex: 1;
  padding: 80px 18px 40px;
  text-align: center;
}
.hero img {
  max-width: 400px;
  aspect-ratio: 1 / 1.5;
  object-fit: cover;
  margin-bottom: 22px;
  border: 4px solid var(--gold);
  border-radius: 8px;
}
.hero h2 {
  color: var(--dark);
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.hero p {
  max-width: 540px;
  margin: 0 auto 1.5em auto;
  line-height: 1.65;
  font-size: 1.13rem;
  color: var(--dark);
  text-align: justify;
}
.quote {
  color: var(--gold);
  font-style: italic;
  margin: 28px 0;
}

/* CTA-knop */
.cta-button {
  margin-top: 32px;
  background-color: var(--dark);
  color: var(--pure-white);
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  padding: 12px 36px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(50,53,52,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--gold);
  color: var(--dark);
  outline: none;
  box-shadow: 0 4px 15px rgba(183,152,91,0.14);
}

/* Socials */
.socials {
  margin-top: 36px;
  text-align: center;
}
.socials a {
  color: var(--gold);
  background: none;
  display: inline-block;
  margin: 0 12px;
  vertical-align: middle;
  border-radius: 0;
  padding: 0;
  transition: color 0.2s, transform 0.15s, opacity 0.15s;
}
.socials a:hover,
.socials a:focus {
  color: var(--gold);
  background: none;
  outline: none;
  transform: scale(1.18);
  opacity: 0.8;
}
.socials svg {
  display: block;
  width: 44px;
  height: 44px;
  transition: width 0.2s, height 0.2s;
}

/* Contact e-mail */
.contact-social {
  margin-top: 32px;
  font-size: 1.09rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
}
.contact-social a {
  color: var(--gold);
  background: none;
  text-decoration: underline;
  border-radius: 0;
  padding: 0 4px;
  transition: color 0.2s, transform 0.15s, opacity 0.15s;
  display: inline-block;
  margin-left: 6px;
}
.contact-social a:hover,
.contact-social a:focus,
.contact-social a:active {
  color: var(--gold);
  background: none;
  outline: none;
  text-decoration: underline;
  transform: scale(1.12);
  opacity: 0.8;
  cursor: pointer;
}

/* Gallery */
.gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 18px;
  text-align: center;
}
.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  color: var(--dark);
  letter-spacing: 2px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}
.gallery-grid img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 12px rgba(9, 30, 47, 0.15);
  background: var(--pure-white);
  cursor: pointer;
  transition: box-shadow 0.20s, border-color 0.20s;
}
.gallery-grid img:hover,
.gallery-grid img:focus {
  border-color: var(--dark);
  box-shadow: 0 8px 28px rgba(9, 30, 47, 0.30);
  outline: none;
}

/* Lightbox overlay */
#lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(9,30,47,0.82);
  justify-content: center;
  align-items: center;
  transition: background 0.18s;
}
#lightbox-overlay.active {
  display: flex;
  animation: fadeIn 0.22s;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  border: 4px solid var(--gold);
  background: var(--pure-white);
  box-shadow: 0 8px 40px rgba(9,30,47,0.38);
  transition: border-color 0.18s;
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 36px;
  right: 48px;
  font-size: 3.1rem;
  color: var(--pure-white);
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  filter: drop-shadow(0 2px 8px #111);
  user-select: none;
  transition: color 0.13s;
}
#lightbox-close:hover {
  color: var(--gold);
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .hero {
    padding: 40px 6px;
  }
  .gallery {
    padding: 0 4px;
  }
}

/* Videos grid */
.media-videos {
  padding: 40px 20px;
  text-align: center;
  background: transparent;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.videos-grid iframe {
  width: 100%;
  height: 315px;
  border: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--pure-white);
  padding: 18px 0;
  font-size: 0.98rem;
  text-align: center;
  margin-top: auto;
  border-top: 2px solid var(--gold);
  font-family: 'Cinzel', serif;
}

/* Concerten, events */
.optreden-lijst {
  background: none;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.highlighted-event {
  background: var(--pure-white);
  color: var(--dark);
  padding: 28px 14px 24px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 15px;
  max-width: 340px;
  flex: 1 0 340px;
  box-shadow: 0 4px 18px rgba(50,53,52,0.09);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 600px; /* Zorgt dat alle kaarten even hoog zijn */
}

/* Titels gelijke hoogte geven */
.highlighted-event h3 {
  min-height: 3.5em; /* ruimte voor 1-2 regels titel */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
}

.event-poster {
  width: 100%;
  height: 220px; /* vaste hoogte */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  border: 4px solid var(--gold);
  box-shadow: 0 2px 10px rgba(50,53,52,0.07);
}

.event-info {
  background: none;
  font-size: 1.07rem;
  margin: 10px auto 0;
  line-height: 1.5;
  color: var(--gold);

  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.event-info .cta-button {
  margin-top: auto;
}

/* Achtergrond biografie */
.hero.biografie-met-achtergrond {
  position: relative;
  background: none !important;
  overflow: hidden;
}
.hero.biografie-met-achtergrond::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
    url('img/biograpfie.jpg') center center / cover no-repeat;
  pointer-events: none;
}
.hero.biografie-met-achtergrond > * {
  position: relative;
  z-index: 2;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.3rem;
  padding: 10px 16px;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 150;
}

@media (max-width: 720px) {
  /* Hamburger knop tonen boven nav */
  .menu-toggle {
    display: block;
  }
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px;
    position: relative;
  }
  .site-logo {
    margin: 0 auto 8px auto;
  }
  header h1 {
    font-size: 1.6rem;
    padding: 0 10px;
    position: static;
    transform: none;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-align: center;
  }
  /* Navigatie standaard verborgen op mobiel */
  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background: var(--dark);
    padding: 12px 0;
    position: relative;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
  }
  /* Nav tonen als .active (na klik menu) */
  nav.active {
    display: flex;
  }
  nav a {
    margin: 10px 0;
    font-size: 1.1rem;
    padding: 10px 22px;
    display: block;
    width: 85vw;
    max-width: 320px;
    text-align: center;
  }

  /* Hero en overige elementen blijven zoals boven: alleen schaalaanpassing */
  .hero {
    padding: 40px 6px;
  }
  .hero img {
    max-width: 100%;
    height: auto;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 8px;
    max-width: 96vw;
    text-align: left;
  }
  .quote {
    font-size: 1.05rem;
  }
  /* Gallery, videos */
  .gallery {
    padding: 0 4px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .videos-grid iframe {
    height: 200px;
  }
}

/* Language switcher rechts in de header */
.language-switch {
  position: absolute;
  top: 50%;
  right: 20px; /* marge rechts */
  transform: translateY(-50%);
  z-index: 2; /* boven achtergrond, onder menu-button */
}

.language-switch a {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}

.language-switch a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Op mobiel moet ie netjes boven nav of naast menu-knop */
@media (max-width: 720px) {
  .language-switch {
    position: static;
    transform: none;
    margin-top: 6px;
  }
}
