/*
  Billygoat Festival – design v3
  Palet: bosgroen (#06241B) + citroen (#F1CD13) + crème (#F5F0E4)
  Fonts: Oswald (koppen) + Barlow (body)
  Mobile-first responsive
*/

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

/* ===== Variables ===== */
:root {
  --max-width: 1160px;
  --forest:      #06241B;
  --forest-mid:  #0d3828;
  --forest-lite: #164d38;
  --yellow:      #F1CD13;
  --yellow-dark: #c9aa0a;
  --yellow-pale: #fef8cc;
  --cream:       #F5F0E4;
  --cream-2:     #EDE7D8;
  --sand:        #D8D0BE;
  --ink:         #06241B;
  --ink-mid:     rgba(6,36,27,0.72);
  --ink-light:   rgba(6,36,27,0.48);
  --text:        rgba(255,255,255,0.95);
  --text-mid:    rgba(255,255,255,0.70);
  --text-faint:  rgba(255,255,255,0.42);
  --border-dark:  rgba(255,255,255,0.10);
  --border-light: rgba(6,36,27,0.14);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pad-x: clamp(1.1rem, 5vw, 3rem);
  --pad-y: clamp(3.5rem, 7vw, 6rem);
  --header-h: 72px;
}

/* ===== Base ===== */
body {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  background: var(--forest);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 1rem;
}

p { max-width: 68ch; }

.section-lead {
  margin: 0 auto 2.5rem;
  text-align: center;
  max-width: 60ch;
  color: var(--ink-mid);
  font-size: 1.05rem;
}

.anchor { position: relative; top: calc(-1 * var(--header-h) - 1.5rem); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--header-h);
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(6,36,27,0.80), transparent);
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}

.site-header.scrolled {
  background: rgba(6,36,27,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  height: 60px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: height .35s ease;
  flex-shrink: 0;
}

.site-header.scrolled .logo-img { height: 38px; }

.site-name-primary,
.site-name-secondary {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(.9rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.site-name-primary  { color: var(--yellow); }
.site-name-secondary { color: var(--text-mid); }

@media (max-width: 480px) {
  .site-name-secondary { display: none; }
  .logo-img { height: 40px; }
}

/* ===== Ticket button ===== */
.btn-ticket {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  transition: background .22s ease, color .22s ease, transform .18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-ticket:hover {
  background: transparent;
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-ticket:active { transform: translateY(0); }

.btn-header { font-size: .80rem; padding: .58rem 1.2rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--forest);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background: url('../assets/image/video-fallback.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 120vw;
  height: 125vh;
  min-width: 213.33vh;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg,
      rgba(6,36,27,0.55) 0%,
      rgba(6,36,27,0.20) 40%,
      rgba(6,36,27,0.80) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--pad-x);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-family: 'Barlow', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
}

.badge-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--forest);
  font-weight: 700;
}

.badge-outline {
  background: transparent;
  border-color: rgba(241,205,19,0.45);
  color: var(--yellow-pale);
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: -.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
  line-height: .92;
  margin-bottom: .6rem;
}

.hero h1 .accent { color: var(--yellow); }

.hero-lead {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.5rem;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--forest);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: transparent;
  color: var(--yellow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.32);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(241,205,19,0.75);
  animation: bob 1.7s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ===== Section header label ===== */
.section-header {
  display: flex;
  justify-content: center;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 10;
  margin-bottom: -2px;
  margin-top: 20px;
}

.section-header-inner {
  background: var(--forest);
  border: 2px solid var(--yellow);
  border-bottom: none;
  border-radius: var(--r-md) var(--r-md) 0 0;
  padding: .6rem 1.75rem .7rem;
}

.section-header-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(.9rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1;
  display: block;
}

/* ===== Lineup / Tickets ===== */
.lineup-section {
  background: var(--cream);
  padding: var(--pad-y) var(--pad-x);
  border: 2px solid var(--yellow);
  border-bottom: none;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
}

.lineup-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.4rem;
}

.lineup-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 6px 24px rgba(6,36,27,0.07);
}

.lineup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(6,36,27,0.14);
  border-color: var(--yellow-dark);
}

.lineup-card::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--yellow-pale);
  opacity: .55;
  pointer-events: none;
}

.lineup-card.alt::before {
  background: #d4f5e4;
}

.card-weekday {
  font-family: 'Barlow', sans-serif;
  font-size: .70rem;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: .3rem;
}

.card-date {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1.3rem;
  letter-spacing: .02em;
}

.card-lineup { flex: 1; }

.card-lineup h3 {
  font-size: .68rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  letter-spacing: .20em;
  color: var(--ink-light);
  margin-bottom: .65rem;
}

.card-lineup p {
  margin: .28rem 0;
  font-size: .98rem;
  color: var(--ink-mid);
}

.card-lineup p.headliner {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .03em;
  margin-bottom: .45rem;
}

.card-btn {
  margin-top: 1.4rem;
  width: 100%;
  background: var(--forest);
  color: var(--yellow);
  border-color: var(--forest);
  font-size: .85rem;
  text-align: center;
  justify-content: center;
}

.card-btn:hover {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

/* ===== Gallery ===== */
.gallery-section {
  background: var(--forest-mid);
  padding: var(--pad-y) var(--pad-x);
  border-top: 2px solid rgba(241,205,19,0.18);
}

.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }



/* ===== Aftermovie embed ===== */
.aftermovie-wrap {
  max-width: 1200px;
  margin: 2.5rem auto 2.5rem;
}

.aftermovie-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid rgba(241,205,19,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
  background: #000;
}

.aftermovie-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aftermovie-caption {
  text-align: center;
  margin-top: .75rem;
  font-family: 'Barlow', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  max-width: none;
}

@media (max-width: 900px)  { .gallery-grid { column-count: 2; } }
@media (max-width: 520px)  { .gallery-grid { column-count: 1; } }

/* ===== Sponsors ===== */
#sponsors {
  background: var(--forest);
  padding: var(--pad-y) var(--pad-x);
  border-top: 2px solid rgba(241,205,19,0.12);
}

#sponsors .section-lead { color: var(--text-mid); }

.sponsor-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

@media (max-width: 720px) {
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}

.sponsor-tile {
  height: 110px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  text-decoration: none;
}

.sponsor-tile img {
  max-height: 68px;
  width: 100%;
  object-fit: contain;
}

.sponsor-tile:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,1);
  border-color: rgba(241,205,19,0.50);
}

.sponsor-tile:focus-visible {
  outline: 3px solid rgba(241,205,19,0.55);
  outline-offset: 3px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3,16,11,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 5000;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lb-topbar {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-mid);
}

.lb-counter { font-size: .82rem; letter-spacing: .1em; }

.lb-actions { display: flex; gap: .6rem; }

.lb-actions button {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.lb-actions button:hover { background: rgba(255,255,255,0.15); }

.lb-image-wrapper { max-width: 90%; max-height: 85vh; overflow: hidden; }

.lb-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--r-sm);
  transition: transform .3s ease;
  cursor: zoom-in;
  display: block;
}

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: white;
  cursor: pointer;
  padding: .6rem .8rem;
  transition: background .2s ease;
  line-height: 1;
  touch-action: manipulation;
}

.lb-prev { left: .75rem; }
.lb-next { right: .75rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.13); }

@media (max-width: 480px) {
  .lb-prev { left: .3rem; }
  .lb-next { right: .3rem; }
  .lb-topbar { left: .75rem; right: .75rem; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--forest);
  border-top: 1px solid rgba(241,205,19,0.15);
  padding: 1.75rem 0 2.25rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta { color: var(--text-mid); font-size: .88rem; }
.footer-brand { color: var(--yellow); font-weight: 600; }

.footer-social {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .52rem .95rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-mid);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: .82rem;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.social-link svg { width: 16px; height: 16px; opacity: .9; flex-shrink: 0; }

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(241,205,19,0.10);
  border-color: rgba(241,205,19,0.30);
  color: var(--yellow);
}

.social-emoji { font-size: .95rem; line-height: 1; }

@media (max-width: 720px) {
  .footer-inner { justify-content: center; text-align: center; }
}

/* ===== Utility ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* OnlyGoats lightbox — roze randje en label bovenin */
.lightbox.lb-onlygoats {
  background: rgba(20, 3, 12, 0.97);
}

.lightbox.lb-onlygoats .lb-counter::before {
  content: '🐐 OnlyGoats — exclusieve content  ';
  color: #f9a8d4;
  font-style: italic;
  font-size: .75rem;
  letter-spacing: .06em;
}

.lightbox.lb-onlygoats .lb-prev,
.lightbox.lb-onlygoats .lb-next {
  border-color: rgba(249,168,212,0.30);
}

.lightbox.lb-onlygoats .lb-prev:hover,
.lightbox.lb-onlygoats .lb-next:hover {
  background: rgba(249,168,212,0.15);
}

/* ===== WhatsApp Intro Overlay ===== */
.wa-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  animation: waOverlayIn .35s ease forwards;
}

.wa-overlay.wa-hiding {
  animation: waOverlayOut .65s ease forwards;
  pointer-events: none;
}

@keyframes waOverlayIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes waOverlayOut { from { opacity: 1; } to { opacity: 0; } }

/* ── Phone shell ── */
.wa-phone {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  background: #efeae2;
  overflow: hidden;
}

@media (min-height: 680px) and (min-width: 480px) {
  .wa-phone {
    height: 88svh;
    max-height: 860px;
    border-radius: 44px;
    border: 10px solid #111;
    box-shadow:
      0 0 0 1px #333,
      0 32px 80px rgba(0,0,0,0.7),
      inset 0 0 0 1px #2a2a2a;
  }
  /* notch */
  .wa-phone::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 28px;
    background: #111;
    border-radius: 0 0 18px 18px;
    z-index: 20;
  }
}

/* ── Status bar ── */
.wa-statusbar {
  background: #075e54;
  padding: .3rem 1.1rem .25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

@media (min-height: 680px) and (min-width: 480px) {
  .wa-statusbar { padding-top: 1.6rem; } /* notch ruimte */
}

.wa-sb-time {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: white;
  letter-spacing: .03em;
}

.wa-sb-right {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.wa-sb-signal { width: 18px; height: 10px; }
.wa-sb-battery { width: 22px; height: 12px; }

/* ── WA Header ── */
.wa-header {
  background: #075e54;
  padding: .55rem .9rem .65rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.22);
}

.wa-back-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: .9;
}
.wa-back-arrow svg { width: 100%; height: 100%; }

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.wa-contact { flex: 1; min-width: 0; }

.wa-contact-name {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: white;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-contact-sub {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .73rem;
  color: rgba(255,255,255,0.72);
  transition: color .2s;
}

.wa-header-btns {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.wa-header-btns svg { width: 22px; height: 22px; cursor: pointer; }

/* ── Chat area ── */
.wa-chat {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: .85rem .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  /* WA wallpaper patroon */
  background-color: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23c4b8ae' stroke-width='.6' opacity='.45'%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3Cline x1='40' y1='0' x2='40' y2='28'/%3E%3Cline x1='40' y1='52' x2='40' y2='80'/%3E%3Cline x1='0' y1='40' x2='28' y2='40'/%3E%3Cline x1='52' y1='40' x2='80' y2='40'/%3E%3C/g%3E%3C/svg%3E");
  scroll-behavior: smooth;
}

.wa-chat::-webkit-scrollbar { width: 4px; }
.wa-chat::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

/* date chip */
.wa-date-chip {
  align-self: center;
  background: rgba(225,245,254,.88);
  border-radius: 999px;
  padding: .22rem .9rem;
  font-family: system-ui, sans-serif;
  font-size: .71rem;
  font-weight: 500;
  color: #555;
  margin: .3rem 0 .6rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}

/* ── Bubbles ── */
.wa-msg {
  max-width: 85%;
  padding: .5rem .72rem .28rem;
  border-radius: 8px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .93rem;
  line-height: 1.48;
  position: relative;
  opacity: 0;
  animation: waMsgPop .22s ease forwards;
  white-space: pre-wrap;
  word-break: break-word;
}

@keyframes waMsgPop {
  from { opacity: 0; transform: scale(.88) translateY(6px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Verzonden (rechts) */
.wa-msg-out {
  align-self: flex-end;
  background: #d9fdd3;
  color: #111;
  border-bottom-right-radius: 2px;
}
.wa-msg-out::after {
  content: '';
  position: absolute;
  bottom: 0; right: -7px;
  border-width: 7px 0 0 8px;
  border-style: solid;
  border-color: transparent transparent transparent #d9fdd3;
}

/* Ontvangen (links) */
.wa-msg-in {
  align-self: flex-start;
  background: #fff;
  color: #111;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
.wa-msg-in::after {
  content: '';
  position: absolute;
  bottom: 0; left: -7px;
  border-width: 7px 8px 0 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

/* meta (tijd + vinkjes) */
.wa-msg-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .22rem;
  margin-top: .18rem;
  font-size: .67rem;
  color: rgba(0,0,0,0.40);
  line-height: 1;
}
.wa-ticks { color: #53bdeb; font-size: .75rem; letter-spacing: -.05em; }

/* Afbeelding bericht */
.wa-msg-img {
  padding: .35rem .35rem .28rem;
  max-width: 85%;
  cursor: pointer;
}
.wa-msg-img::after { display: none; } /* geen staartje bij img */
.wa-msg-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.wa-msg-img .wa-img-caption {
  font-family: system-ui, sans-serif;
  font-size: .78rem;
  color: rgba(0,0,0,0.55);
  margin-top: .3rem;
  text-align: center;
}

/* ── Typing indicator ── */
.wa-typing-wrap {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: .45rem;
  animation: waMsgPop .2s ease forwards;
  opacity: 0;
}

.wa-typing-bubble {
  background: #fff;
  border-radius: 18px;
  border-bottom-left-radius: 3px;
  padding: .65rem .9rem;
  display: flex;
  gap: .28rem;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
  position: relative;
}
.wa-typing-bubble::after {
  content: '';
  position: absolute;
  bottom: 0; left: -7px;
  border-width: 7px 8px 0 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #8696a0;
  animation: waTypingBounce 1.3s ease infinite;
}
.wa-dot:nth-child(2) { animation-delay: .15s; }
.wa-dot:nth-child(3) { animation-delay: .30s; }

@keyframes waTypingBounce {
  0%, 55%, 100% { transform: translateY(0);   opacity: .5; }
  27%            { transform: translateY(-5px); opacity: 1; }
}

/* ── Decoratieve inputbalk ── */
.wa-inputbar {
  background: #f0f2f5;
  padding: .45rem .6rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.wa-input-emoji, .wa-input-attach { width: 26px; height: 26px; flex-shrink: 0; cursor: pointer; }
.wa-input-emoji svg, .wa-input-attach svg { width: 100%; height: 100%; }
.wa-input-field {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: .48rem 1rem;
  font-family: system-ui, sans-serif;
  font-size: .88rem;
  color: #aaa;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-input-mic {
  width: 44px; height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37,211,102,0.35);
}
.wa-input-mic svg { width: 18px; height: 18px; }

/* ── "Naar de site" knop, voor nu ff weggehaald ── */
.wa-cta-wrap {
  position: absolute;
 
  bottom: 72px;
  left: 0; right: 0;
  display: none;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.wa-cta-wrap.wa-cta-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.wa-cta-btn {
  background: #25d366;
  color: white;
  border: none;
  border-radius: 999px;
  padding: .72rem 1.8rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .2s ease, transform .15s ease;
}
.wa-cta-btn:hover  { background: #1ebe5d; transform: translateY(-2px); }
.wa-cta-btn:active { transform: translateY(0); }

/* voortgangsbalkje */
.wa-progress-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: #25d366;
  border-radius: 0 3px 3px 0;
  width: 0%;
  transition: none;
}
.wa-progress-bar.wa-progress-running {
  transition: width 3s linear;
  width: 100%;
}


/* ============================================================
   ===== Cut-sequence: vliegtuig snijdt scherm doormidden  ====
   ============================================================ */

/* ▶ SNELHEID AANPASSEN: pas --plane-duration aan om de hele
   sequence sneller/trager te maken. JS leest deze variabele
   automatisch uit, dus snede-timing schaalt mee. */
:root {
  --plane-duration: 2.4s;
}

.flyout-stage {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  overflow: hidden;
}

/* Overlay-achtergrond fade weg zodra cut start */
.wa-overlay.wa-flyout {
  background: transparent;
  transition: background .5s ease .6s;
  pointer-events: none;
}

/* De originele wa-phone wordt verborgen — we tonen twee gekloonde helften */
.wa-overlay.wa-flyout .wa-phone {
  visibility: hidden;
}

/* ----- De twee helften van de telefoon ----- */
.flyout-half {
  position: fixed;
  z-index: 9501;
  pointer-events: none;
  will-change: transform, opacity;
  /* Subtiele schaduw langs snijrand */
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.25));
}

/* Beide helften beginnen op exact dezelfde positie als het origineel.
   Inline styles (left/top/width/height) worden door JS gezet. */

/* Snijlijn-effect: gele rand aan de cut-edge */
.flyout-half-top::after,
.flyout-half-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #F1CD13;
  box-shadow: 0 0 12px #F1CD13, 0 0 24px rgba(241,205,19,0.6);
  opacity: 0;
  transition: opacity .15s ease;
}

.flyout-half-top::after    { bottom: 0; }
.flyout-half-bottom::after { top: 0; }

.wa-overlay.wa-flyout .flyout-half-top::after,
.wa-overlay.wa-flyout .flyout-half-bottom::after {
  opacity: 1;
}

/* Cut-animatie: helften klappen weg */
.flyout-half-top.flyout-half-cut {
  transition:
    transform 1.1s cubic-bezier(.5, 0, .75, 0) .05s,
    opacity .5s ease .7s;
  transform: translateY(-110vh) rotate(-8deg);
  opacity: 0;
}

.flyout-half-bottom.flyout-half-cut {
  transition:
    transform 1.1s cubic-bezier(.5, 0, .75, 0) .05s,
    opacity .5s ease .7s;
  transform: translateY(110vh) rotate(8deg);
  opacity: 0;
}

/* ----- Vliegtuig ----- */
.flyout-plane-wrap {
  position: fixed;
  /* Verticaal gecentreerd in het scherm (snijhoogte) */
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 9510;
  transform: translateY(-50%);
}

.plane-rig {
  position: absolute;
  right: -50vw;
  top: 0;
  will-change: right;
}

/* Vliegtuig snijdt in één rechte lijn door beeld */
.plane-rig.plane-cutting {
  transition: right var(--plane-duration) cubic-bezier(.4, .05, .55, .95);
  right: 110vw;
}

.flyout-plane {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  display: block;
  /* Geen wiebel — een snijdende beweging hoort strak te zijn */
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.45));
  transform: translateY(-50%);
}

/* ----- condensspoor van het vliegtuig (witte streep, zoals condenstrail) ----- */
.flyout-trail {
  position: absolute;
  top: 50%;
  /* Begint exact bij de staart van het vliegtuig */
  left: 100%;
  height: 4px;
  width: 0;
  background: linear-gradient(to right,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.4) 60%,
    rgba(255,255,255,0) 100%);
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  /* Vlamt direct uit bij start vlucht */
  transition: width .2s ease-out;
}

.flyout-trail.flyout-trail-active {
  width: 120vw;
}

.flyout-trail.flyout-trail-fade {
  transition: opacity .7s ease;
  opacity: 0;
}




/* =====================================================
   Info sectie CSS
   ===================================================== */

/* ── Header: dubbele knop-groep ── */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Info-knop: outline variant (geen gevulde achtergrond) */
.btn-header-info {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn-header-info:hover {
  background: var(--yellow);
  color: var(--forest);
}

/* ===== Info section ===== */
.info-section {
  background: var(--cream);
  padding: var(--pad-y) var(--pad-x) calc(var(--pad-y) * 1.2);
  border: 2px solid var(--yellow);
  border-bottom: none;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Drie kolommen ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

/* ── Info card ── */
.info-card {
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 6px 24px rgba(6,36,27,0.07);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(6,36,27,0.12);
  border-color: var(--yellow-dark);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--forest);
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
}

.info-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Openingstijden */
.info-times {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: .9rem;
}

.info-times li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  font-size: .93rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--cream-2);
}

.info-times li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-day {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: var(--ink-mid);
}

.info-time {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}

.info-note {
  font-size: .80rem;
  color: var(--ink-light);
  margin-top: auto;
  padding-top: .5rem;
}

/* Locatie */
.info-address {
  display: block;
  text-decoration: none;
  color: var(--ink-mid);
  font-size: .92rem;
  line-height: 1.65;
  padding: .75rem 1rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--cream-2);
  margin-bottom: 1rem;
  transition: background .2s ease, border-color .2s ease;
}

.info-address:hover {
  background: var(--yellow-pale);
  border-color: var(--yellow-dark);
}

.info-address strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .2rem;
  font-size: 1rem;
}

.info-address-arrow {
  display: inline-block;
  margin-top: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .05em;
}

.info-transport {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: auto;
}

.info-transport li {
  font-size: .87rem;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.info-transport-icon {
  font-size: .95rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Contact */
.info-contact-text {
  font-size: .9rem;
  color: var(--ink-mid);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.info-email-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.1rem;
  background: var(--forest);
  color: var(--yellow);
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s ease, transform .15s ease;
  width: fit-content;
  margin-bottom: 1.1rem;
}

.info-email-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.info-email-btn:hover {
  background: var(--forest-lite);
  transform: translateY(-2px);
}

.info-social-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: .55rem;
}

.info-social-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.info-social-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .85rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  color: var(--ink-mid);
  text-decoration: none;
  font-size: .80rem;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.info-social-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.info-social-pill:hover {
  background: var(--yellow-pale);
  border-color: var(--yellow-dark);
  color: var(--forest);
}

/* OnlyGoats — speciale pill: roze/premium randje als grap */
.info-social-pill--onlygoats {
  background: #fff0f6;
  border-color: #f9a8d4;
  color: #9d174d;
  font-style: italic;
}
.info-social-pill--onlygoats:hover {
  background: #fce7f3;
  border-color: #ec4899;
  color: #831843;
}

/* ── Huisregels accordion ── */
.info-rules-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}

.info-rules-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .2s ease;
  text-align: left;
}

.info-rules-toggle:hover { background: var(--cream); }

.info-rules-toggle-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.info-rules-chevron {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--ink-light);
}

.info-rules-toggle[aria-expanded="true"] .info-rules-chevron {
  transform: rotate(180deg);
}

/* Accordion slide animatie */
.info-rules-body {
  overflow: hidden;
  border-top: 1.5px solid var(--cream-2);
  padding: 1.4rem 1.5rem 1.6rem;
}

.info-rules-body[hidden] {
  display: none;
}

.info-rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  columns: 1;
}

.info-rules-subhead {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: bold;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  padding-left: 0 !important;
  margin-top: 1rem;
  border-bottom: 1px solid var(--cream-2);
  padding-bottom: .3rem !important;
}

.info-rules-subhead::before {
  display: none !important;
}

@media (min-width: 720px) {
  .info-rules-list {
    column-count: 2;
    column-gap: 2rem;
    display: block; /* columns werken niet met flex */
  }

  .info-rules-list li {
    break-inside: avoid;
    margin-bottom: .7rem;
  }
}

.info-rules-list li {
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.55;
  padding-left: 1.25rem;
  position: relative;
}

.info-rules-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--yellow-dark);
  font-weight: 700;
}





/* ===== Responsive ===== */

@media (max-width: 600px) {
  .info-section {
    width: 95vw;
    padding: var(--pad-y) 1.1rem;
  }

  .header-cta-group {
    gap: .35rem;
  }

  .btn-header, .btn-header-info {
    font-size: .72rem;
    padding: .5rem .85rem;
  }
}

@media (max-width: 600px) {
  .flyout-plane {
    width: clamp(130px, 32vw, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plane-rig,
  .flyout-half-top,
  .flyout-half-bottom,
  .flyout-trail {
    transition-duration: .4s !important;
  }
}