/* ===================================================
   Vocal Group 310 — stylesheet
   =================================================== */

:root {
  --teal-dark: #1F3D3B;
  --teal-darker: #16302E;
  --cream: #F6F0E3;
  --cream-2: #EFE6D2;
  --yellow: #E8BB4E;
  --magenta: #BE4293;
  --blue: #1D6DAE;
  --rust: #C14C2C;
  --ink: #1A2E2C;
  --ink-soft: #3E5654;
  --white: #FFFFFF;

  --font-display: 'Comfortaa', sans-serif;
  --font-hand: 'Caveat', cursive;
  --font-body: 'Nunito Sans', sans-serif;

  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.3em; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--teal-darker);
  box-shadow: 0 6px 0 0 #b3893a;
}
.btn-primary:hover { box-shadow: 0 8px 0 0 #b3893a; }
.btn-primary:active { box-shadow: 0 3px 0 0 #b3893a; }

.btn-outline {
  background: transparent;
  border: 2.5px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 1em 2.2em; font-size: 1.05rem; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5vw;
  background: rgba(31, 61, 59, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(22, 48, 46, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 0.6rem 5vw;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.2rem 0;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  height: 2px;
  width: 0;
  background: var(--yellow);
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--yellow);
  color: var(--teal-darker) !important;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--teal-dark);
  padding: 6rem 5vw 4rem;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.blob-teal {
  width: 46vw; height: 46vw;
  top: -12vw; left: -10vw;
  background: radial-gradient(circle at 40% 40%, #2e5652, transparent 70%);
}
.blob-rust {
  width: 40vw; height: 40vw;
  top: 18%; left: 32%;
  background: radial-gradient(circle at 50% 50%, var(--rust), transparent 70%);
  opacity: 0.5;
}
.blob-magenta {
  width: 36vw; height: 36vw;
  bottom: -10vw; left: -8vw;
  background: radial-gradient(circle at 50% 50%, var(--magenta), transparent 70%);
  opacity: 0.45;
}
.blob-blue-sweep {
  width: 50vw; height: 26vw;
  bottom: 5%; right: -12vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, var(--blue), transparent 70%);
  opacity: 0.4;
  transform: rotate(-18deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero-art {
  animation: pop-in 0.9s cubic-bezier(.2,.9,.3,1.2) both;
}
.hero-logo {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.hero-copy {
  color: var(--cream);
  animation: fade-up 0.9s ease 0.15s both;
}

.hero-kicker {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 0.4em;
}

.hero-tagline {
  font-size: 1.15rem;
  max-width: 34ch;
  color: var(--cream-2);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.scroll-cue {
   position: absolute;
   bottom: 80px;
   left: 50%;
   display: flex;
   justify-content: center;
   width: 24px;
   height: 24px;
   border-right: 4px solid var(--cream-2);
   border-bottom: 4px solid var(--cream-2);
   transform: rotate(45deg);
   animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
  0% { bottom: 94px; opacity: 1; }
  70% { bottom: 80px; opacity: 0; }
  100% { bottom: 94px; opacity: 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.85) rotate(-4deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ---------- Sections (generic) ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 5vw;
  overflow: hidden;
}
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--teal-dark);
  color: var(--cream);
}
.section-media {
  background: var(--teal-darker);
  color: var(--cream);
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-inner.narrow { max-width: 720px; }
.section-inner.center { text-align: center; }

.tag-hand {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--magenta);
  margin-bottom: 0.3rem;
}
.tag-hand-light { color: var(--yellow); }

.light-heading { color: var(--white); }

.section-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section-dark .section-lead,
.section-media .section-lead { color: var(--cream-2); }
.section-inner.center .section-lead { margin-left: auto; margin-right: auto; }

.prose p { max-width: 68ch; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Squiggle corner decorations ---------- */
.squiggle {
  position: absolute;
  width: 160px;
  z-index: 0;
  pointer-events: none;
}
.squiggle svg { width: 100%; height: 100%; }
.squiggle-tl { top: 20px; left: 20px; }
.squiggle-br { bottom: 20px; right: 20px; }
@media (max-width: 640px) {
  .squiggle { width: 100px; height: 100px; }
}

/* ---------- Voice groups ---------- */

.stemgroepfoto {
   width: 120%;
   left: -10%;
   position: relative;
   max-width: 120%;
}

.stemgroepfotodiv {
   max-width: 100%;
   aspect-ratio: 3/2;
   overflow: hidden;
   margin-top: 20px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.voice-card {
  position: relative;
  display: block;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  color: var(--cream);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.voice-card[data-accent="yellow"] { border-color: color-mix(in srgb, var(--yellow) 55%, transparent); }
.voice-card[data-accent="magenta"] { border-color: color-mix(in srgb, var(--magenta) 55%, transparent); }
.voice-card[data-accent="blue"] { border-color: color-mix(in srgb, var(--blue) 55%, transparent); }
.voice-card[data-accent="rust"] { border-color: color-mix(in srgb, var(--rust) 55%, transparent); }

.voice-card h3 { color: var(--white); }

.voice-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--yellow);
}

/* ---------- Timeline ---------- */
.timeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2.5px;
  background: repeating-linear-gradient(to bottom, var(--magenta) 0 8px, transparent 8px 14px);
}
.timeline-item {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 1.9rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 3px solid var(--ink-soft);
}
.timeline-item.is-past .timeline-dot { border-color: #b9b0a0; background: #e2dbcb; }
.timeline-item.is-past .timeline-content { opacity: 0.62; }
.timeline-item.is-next .timeline-dot {
  border-color: var(--rust);
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(193,76,44,0.15);
  animation: pulse-dot 2.4s ease infinite;
}
.timeline-item.is-upcoming .timeline-dot { border-color: var(--blue); background: var(--yellow); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(193,76,44,0.15); }
  50% { box-shadow: 0 0 0 9px rgba(193,76,44,0.05); }
}

.timeline-date {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rust);
  margin-bottom: 0.2rem;
}
.timeline-item.is-past .timeline-date { color: var(--ink-soft); }
.timeline-content p { margin: 0; color: var(--ink); }
.timeline-content a { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }

/* ---------- Media ---------- */

.fotos { border: 2px solid var(--cream-2); border-radius: 20px; margin-top: 20px; }

.tekstjeGlenn { text-align: right; font-size: 0.8rem; margin: 5px 0px 50px 0px; color: var(--cream-2); }

.youtubevideo { width: 100%; aspect-ratio: 16/9; }


/* ---------- Boek ons ---------- */
.email-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--blue);
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 0.15em;
}
.email-link:hover { color: var(--magenta); }

.follow-lead {
  margin-top: 3rem;
  color: var(--ink-soft);
}

.social-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1rem;
}
.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
  overflow: hidden;
}
.social-icon:hover { transform: translateY(-4px) scale(1.05); }
.social-icon img { width: 60%; height: 60%; object-fit: contain; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-darker);
  color: var(--cream-2);
  text-align: center;
  padding: 2.5rem 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.site-footer p { margin: 0; font-size: 0.9rem; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) { .squiggle { visibility: hidden } }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { max-width: 260px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }

.scroll-cue { visibility: hidden; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--teal-darker);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 1.6rem;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
}
