@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

:root {
  --bg:         #F5F0E4;
  --primary:    #2D4A1E;
  --primary-dk: #1C3012;
  --primary-lt: #4A7030;
  --gold:       #C09848;
  --gold-lt:    #DDB86A;
  --gold-dk:    #9A7A2E;
  --champagne:  #F0E0B0;
  --text:       #242218;
  --muted:      #6A6758;
  --card-bg:    rgba(255, 252, 246, 0.74);
  --nav-h:      58px;
  --radius:     1rem;
  --shadow-sm:  0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md:  0 12px 44px rgba(0,0,0,0.12), 0 3px 10px rgba(0,0,0,0.06);
  --shadow-gold: 0 6px 28px rgba(192,152,72,0.32);
  --font-deco:  'Cormorant Garamond', Georgia, serif;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Nunito Sans', system-ui, sans-serif;
  --font-ui:    'Nunito Sans', system-ui, sans-serif;
  --glass:      rgba(255, 252, 246, 0.72);
  --glass-border: rgba(255, 255, 255, 0.78);
  --glass-blur: blur(22px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-weight: 300;
  background-color: #F0EAD8;
  background-image: url('images/forest-bg.svg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.80;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navbar — fixed so it floats over the hero gradient ── */
.site-nav {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: var(--nav-h);
  /* Subtiel donker glas — altijd zichtbaar boven hero-gradient */
  background: rgba(8, 28, 72, 0.32) !important;
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 1px 12px rgba(0,0,0,0.12);
  z-index: 1030;
  transition: background 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}
.site-nav.scrolled {
  background: rgba(244, 241, 232, 0.94) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-brand {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.96) !important;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.38s ease;
}
.site-nav.scrolled .site-brand { color: var(--primary) !important; }
.site-nav .nav-link {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82) !important;
  padding: 0.3rem 0.65rem;
  border-radius: 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav .nav-link:hover {
  color: #fff !important;
  background-color: transparent;
  border-bottom-color: rgba(255,255,255,0.45);
}
.site-nav .nav-link.active {
  color: #fff !important;
  background-color: transparent;
  border-bottom-color: rgba(255,220,100,0.80);
}
.site-nav.scrolled .nav-link       { color: var(--muted)   !important; }
.site-nav.scrolled .nav-link:hover { color: var(--primary) !important; border-bottom-color: rgba(45,74,30,0.25); }
.site-nav.scrolled .nav-link.active{ color: var(--primary) !important; border-bottom-color: var(--gold); }
/* Navigatielijst */
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hamburger knop — verborgen op desktop */
.nav-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  z-index: 1031;
}
.nav-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.2s ease, background 0.38s ease;
}
.site-nav.scrolled .nav-toggler span { background: var(--primary); }

/* Hamburger → X animatie */
.nav-toggler.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggler.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggler.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobiel nav menu (< 768px) ── */
@media (max-width: 768px) {
  .nav-toggler { display: flex; }

  .site-nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem 0 1rem;
    background: rgba(244, 241, 232, 0.97);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(45,74,30,0.1);
    box-shadow: 0 6px 32px rgba(0,0,0,0.14);
    z-index: 1029;
    animation: menu-slide-in 0.22s ease;
  }
  .site-nav-links.is-open { display: flex; }

  .site-nav-links li { border-bottom: 1px solid rgba(45,74,30,0.07); }
  .site-nav-links li:last-child { border-bottom: none; }

  .site-nav .nav-link {
    color: var(--primary) !important;
    font-size: 0.68rem;
    letter-spacing: 1.6px;
    padding: 0.9rem 1.5rem !important;
    border-bottom: none;
    display: block;
  }
  .site-nav .nav-link:hover,
  .site-nav .nav-link.active {
    background: rgba(45,74,30,0.05);
    color: var(--primary) !important;
    border-bottom: none;
  }
}

@keyframes menu-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ── */
.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Extra top padding because navbar is fixed (out of flow) */
  padding: calc(3.5rem + var(--nav-h)) 1.5rem 10rem;
  overflow: hidden;
  /* Stralende zomerdag: verblindende zon → hemelsblauw → bloemenweide */
  background-color: #3A9AD4;
  background-image:
    /* Gloed rondom de zon op 30% hoogte */
    radial-gradient(ellipse 58% 42% at 50% 30%,
      rgba(255, 255, 220, 0.55)  0%,
      rgba(255, 230, 80,  0.28) 30%,
      rgba(255, 180, 20,  0.08) 60%,
      transparent 80%),
    /* Lichte hemelgloed links */
    radial-gradient(ellipse 45% 42% at 4% 10%,
      rgba(155, 215, 255, 0.28) 0%, transparent 70%),
    /* Rechts */
    radial-gradient(ellipse 45% 42% at 96% 10%,
      rgba(155, 215, 255, 0.25) 0%, transparent 70%),
    /* Groene weide onderaan */
    radial-gradient(ellipse 130% 30% at 50% 110%,
      rgba(45, 125, 18, 0.95) 0%,
      rgba(75, 158, 32, 0.58) 38%,
      transparent 74%),
    /* Blauwe lucht gradient */
    linear-gradient(180deg,
      #1478BE  0%,
      #2892D8 16%,
      #42A8EC 30%,
      #62B8F5 44%,
      #8ECEF8 57%,
      #C2E5FF 68%,
      #E4F5F0 78%,
      #C0E870 88%,
      #5CB420 100%);
}

/* Rotating sun rays */
@keyframes sun-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-rays {
  position: absolute;
  top: 30%; left: 50%;
  width: 280%; height: 280%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent  0deg, rgba(255,242,80,.048) 4deg,
    transparent  8deg, transparent 25deg,
    rgba(255,242,80,.038) 29deg, transparent 33deg,
    transparent 50deg, rgba(255,242,80,.048) 54deg,
    transparent 58deg, transparent 75deg,
    rgba(255,242,80,.035) 79deg, transparent 83deg,
    transparent 100deg, rgba(255,242,80,.048) 104deg,
    transparent 108deg, transparent 126deg,
    rgba(255,242,80,.038) 130deg, transparent 134deg,
    transparent 152deg, rgba(255,242,80,.048) 156deg,
    transparent 160deg, transparent 178deg,
    rgba(255,242,80,.035) 182deg, transparent 186deg,
    transparent 204deg, rgba(255,242,80,.048) 208deg,
    transparent 212deg, transparent 230deg,
    rgba(255,242,80,.038) 234deg, transparent 238deg,
    transparent 256deg, rgba(255,242,80,.048) 260deg,
    transparent 264deg, transparent 282deg,
    rgba(255,242,80,.035) 286deg, transparent 290deg,
    transparent 308deg, rgba(255,242,80,.048) 312deg,
    transparent 316deg, transparent 334deg,
    rgba(255,242,80,.038) 338deg, transparent 342deg,
    transparent 360deg
  );
  pointer-events: none;
  z-index: 0;
  animation: sun-rotate 55s linear infinite;
}

/* Zonneschijf — exact op het middelpunt van de stralen */
@keyframes sun-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.92; }
  50%       { transform: translate(-50%, -50%) scale(1.06); opacity: 1.00; }
}
.hero-sun {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 235, 1.00)  0%,
    rgba(255, 248, 160, 0.96) 22%,
    rgba(255, 220, 60,  0.82) 48%,
    rgba(255, 185, 20,  0.38) 72%,
    transparent 100%);
  box-shadow:
    0 0  28px 14px rgba(255, 235, 80, 0.55),
    0 0  72px 36px rgba(255, 210, 40, 0.30),
    0 0 160px 80px rgba(255, 180, 20, 0.14);
  pointer-events: none;
  z-index: 1;
  animation: sun-pulse 5s ease-in-out infinite;
}

/* Glass invitation card */
.hero-card {
  position: relative;
  z-index: 3;
  background: rgba(255, 252, 240, 0.25);
  backdrop-filter: blur(26px) saturate(1.8) brightness(1.08);
  -webkit-backdrop-filter: blur(26px) saturate(1.8) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2.25rem;
  padding: 3.5rem 3.5rem 3rem;
  max-width: 680px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.16),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(192, 152, 72, 0.18);
}

/* Botanical side decorations */
.hero-botanical-l,
.hero-botanical-r {
  display: none;
}
.hero-botanical-l { left: -60px; }
.hero-botanical-r { right: -60px; transform: scaleX(-1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 55%,
    transparent 52%, rgba(10, 40, 80, 0.22) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
  max-width: 740px;
  width: 100%;
}

/* Bottom wave — replaces dark tree silhouettes */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { display: block; width: 100%; }
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}
.hero-rule::before,
.hero-rule::after {
  content: '';
  display: block;
  width: 52px;
  height: 1px;
  background: rgba(184,146,74,0.50);
}
.hero-date {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  margin: 0;
}
.hero-title {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.92;
  color: #fff;
  text-shadow:
    0 2px 0   rgba(255, 255, 255, 0.25),
    0 4px 35px rgba(255, 228, 60, 0.70),
    0 12px 70px rgba(20, 100, 200, 0.20);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
.hero-venue {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(210, 238, 255, 0.82);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  margin-bottom: 2.4rem;
}
/* Countdown — geen glaskaart, vrij zwevend */
.countdown-wrap { display: contents; }

.countdown {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  justify-content: center;
  padding: 0.8rem 0;
  margin-bottom: 2.8rem;
}
.countdown-item { text-align: center; }
.countdown-number {
  display: block;
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  color: rgba(255, 252, 230, 0.96);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(255, 220, 60, 0.55);
}
.countdown-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(210, 238, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  margin-top: 0.25rem;
  display: block;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 55%, var(--gold-dk) 100%);
  background-size: 200% 100%;
  background-position: right center;
  border: none;
  color: #fff;
  border-radius: 2rem;
  padding: 0.78rem 2.2rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-gold);
  transition: background-position 0.35s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn-gold:hover {
  background-position: left center;
  box-shadow: 0 8px 28px rgba(184,146,74,0.50);
  transform: translateY(-2px);
  color: #fff;
}
.btn-ghost {
  background-color: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.82);
  border-radius: 2rem;
  padding: 0.78rem 2.2rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s, border-color 0.25s;
}
.btn-ghost:hover {
  background-color: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* ── Sections ── */
.site-section {
  padding: 5.5rem 0;
  background: rgba(244, 241, 232, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-section.alt {
  background: rgba(255, 252, 248, 0.60);
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-label::before,
.section-label::after {
  content: '◆';
  font-size: 0.45em;
  margin: 0 0.7rem;
  vertical-align: middle;
  opacity: 0.65;
}
.section-title {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--primary);
  line-height: 1.12;
  margin: 0;
}
.section-divider {
  width: 48px;
  height: 5px;
  position: relative;
  margin: 1.1rem auto 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.section-divider::before { top: 0; }
.section-divider::after  { top: 4px; width: 60%; margin: 0 auto; }
.section-sub {
  color: var(--muted);
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 300;
}

/* ── Wave dividers ── */
.wave-divider {
  display: block; width: 100%;
  overflow: hidden; line-height: 0;
  margin: 0; padding: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ── Glass card mixin (shared) ── */
.glass-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.80);
  border-radius: var(--radius);
}

/* ── Program Tabs ── */
.program-tabs .nav-link {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted) !important;
  border: 1px solid rgba(45,74,30,0.2);
  border-radius: 2rem !important;
  padding: 0.5rem 1.6rem;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}
.program-tabs .nav-link:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(255,255,255,0.6);
}
.program-tabs .nav-link.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: rgba(255,255,255,0.92) !important;
  box-shadow: var(--shadow-sm);
}

/* ── Timeline ── */
.tl-card--featured {
  background: rgba(184, 146, 74, 0.08);
  border-left-width: 3px;
  border-left-color: var(--gold-lt);
}
.tl-card--featured .tl-activity { font-size: 1.3rem; }
.tl-rings {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
  margin-bottom: 0.15rem;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(45,74,30,0.20) 8%,
    rgba(184,146,74,0.30) 50%,
    rgba(45,74,30,0.20) 92%,
    transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 2.25rem;
  position: relative;
}
.tl-item.tl-right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}
.tl-dot {
  position: absolute;
  left: 50%; top: 1.3rem;
  width: 11px; height: 11px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(184,146,74,0.15);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.tl-item:hover .tl-dot {
  transform: translateX(-50%) scale(1.5);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184,146,74,0.20);
}
.tl-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-left: 2.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  max-width: 310px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.75);
  transition: box-shadow 0.25s, transform 0.25s;
}
.tl-item:hover .tl-card { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tl-item.tl-right .tl-card {
  border-left: 1px solid var(--glass-border);
  border-right: 2.5px solid var(--gold);
}
.tl-time {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.tl-activity {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.tl-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Foto bollen ── */
.foto-cluster {
  position: relative;
  height: 460px;
}
.foto-bol {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
.foto-bol::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,146,74,0.40);
  pointer-events: none;
}
.foto-bol img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.foto-bol:hover { transform: scale(1.03); }

.foto-bol--lg {
  width: 255px; height: 255px;
  top: 95px; left: 10px;
  border: 4px solid rgba(255,255,255,0.85);
}
.foto-bol--md {
  width: 188px; height: 188px;
  top: 15px; right: 15px;
  border: 3px solid rgba(184,146,74,0.55);
}
.foto-bol--sm {
  width: 142px; height: 142px;
  bottom: 28px; right: 68px;
  border: 3px solid rgba(255,255,255,0.75);
}
.foto-bol--xs {
  width: 105px; height: 105px;
  bottom: 55px; left: 5px;
  border: 3px solid rgba(184,146,74,0.45);
}

@media (max-width: 991px) {
  .foto-cluster { height: 300px; }
  .foto-bol--lg { width: 175px; height: 175px; top: 55px; left: 15px; }
  .foto-bol--md { width: 128px; height: 128px; top: 12px; right: 20px; }
  .foto-bol--sm { width: 100px; height: 100px; bottom: 20px; right: 55px; }
  .foto-bol--xs { width:  75px; height:  75px; bottom: 38px; left: 8px; }
}

/* ── Accommodatie ── */
.terrein-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}
.accom-group { margin-bottom: 3.5rem; }
.accom-group-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(45,74,30,0.15);
}
.accom-group-icon { font-size: 1.6rem; line-height: 1; }
.accom-group-title {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 0.1rem;
}
.accom-group-sub {
  font-size: 0.70rem;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.accom-unit {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem 1.6rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.accom-unit:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.accom-unit-name {
  display: block;
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(45,74,30,0.12);
  padding-bottom: 0.55rem;
}
.guest-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.guest-tag {
  background: rgba(45,74,30,0.07);
  color: var(--primary);
  border: 1px solid rgba(45,74,30,0.18);
  border-radius: 2rem;
  padding: 0.15rem 0.65rem;
  font-size: 0.72rem;
  font-family: var(--font-ui);
  font-weight: 600;
}

/* ── Locatie ── */
.map-frame {
  border: none;
  border-radius: var(--radius);
  width: 100%; height: 420px;
  box-shadow: var(--shadow-md);
  display: block;
}
.address-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 2.2rem;
  height: 100%;
}
.address-name {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.address-text { font-style: normal; font-size: 0.95rem; font-weight: 300; margin-bottom: 0; }
.address-hr { border-color: rgba(45,74,30,0.12); margin: 1.3rem 0; }
.travel-block { margin-bottom: 1rem; }
.travel-block strong { font-weight: 600; font-size: 0.875rem; }
.travel-block p { font-size: 0.85rem; font-weight: 300; color: var(--muted); margin: 0.15rem 0 0; }

/* ── Praktisch ── */
.info-card {
  background: linear-gradient(145deg, rgba(255,253,248,0.82), rgba(252,248,238,0.68));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(192,152,72,0.18);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.92);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.info-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(192,152,72,0.28);
  transform: translateY(-5px);
  border-color: rgba(192,152,72,0.32);
}
.info-card-icon { font-size: 2.1rem; display: block; margin-bottom: 1rem; }
.info-card-title {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.65rem;
}
.info-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
  line-height: 1.70;
}
.info-card a { color: var(--primary); font-weight: 400; }
.info-card a:hover { color: var(--gold); }

/* ── Login inputs (shared) ── */
.login-label {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}
.login-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(45,74,30,0.22);
  border-radius: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  background: rgba(255,255,255,0.65);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  margin-bottom: 1.3rem;
}
.login-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.18);
}

/* ── Footer ── */
.site-footer {
  background: rgba(12, 22, 6, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.70);
  text-align: center;
  padding: 4.5rem 1rem 3rem;
  border-top: 1px solid rgba(184,146,74,0.20);
}
.footer-brand {
  display: block;
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 300;
  font-size: 3.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.footer-sub {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}
.footer-love {
  font-family: var(--font-deco);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.40);
  margin: 0 0 1.5rem;
}
.footer-credit {
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ── Admin / Overzicht ── */
.admin-wrapper { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }
.admin-title { font-family: var(--font-head); font-style: italic; color: var(--primary); font-size: 1.5rem; margin-bottom: 1.5rem; }
.table th, .table td { padding: 0.75rem 1rem; vertical-align: middle; }

/* ── Berichtenmuur ── */
.wall-form-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.80);
  border-radius: var(--radius);
  padding: 2.2rem 2.2rem 2rem;
}
.wall-form-header { text-align: center; margin-bottom: 1.75rem; }
.wall-form-icon { font-size: 2rem; display: block; margin-bottom: .45rem; }
.wall-form-title {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0;
}

.comment-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.comment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.comment-card::before {
  content: '\201C';
  position: absolute;
  top: -0.8rem; left: 1.3rem;
  font-family: var(--font-deco);
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.comment-avatar {
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comment-header {
  display: flex; align-items: center;
  gap: .75rem; margin-bottom: .9rem;
}
.comment-name {
  font-family: var(--font-deco);
  font-style: italic; font-weight: 400;
  font-size: 1.05rem;
  color: var(--primary); margin: 0;
}
.comment-date {
  font-family: var(--font-ui);
  font-size: 0.60rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted); margin: 0; opacity: 0.65;
}
.comment-text {
  font-size: 0.9rem; font-weight: 300;
  color: var(--text); line-height: 1.80;
  margin: 0; white-space: pre-wrap;
}
.wall-empty { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }
.wall-empty-icon { font-size: 2.5rem; display: block; margin-bottom: .75rem; opacity: .4; }
.wall-empty p { font-style: italic; font-family: var(--font-deco); font-size: 1.15rem; margin: 0; }

/* ── Foto cirkel (inline variant — niet absoluut gepositioneerd) ── */
.foto-cirkel {
  border-radius: 50%;
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 3px solid rgba(255,255,255,0.82);
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.3s;
}
.foto-cirkel::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,146,74,0.32);
  pointer-events: none;
}
.foto-cirkel:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }
.foto-cirkel--gold { border-color: rgba(184,146,74,0.55); }
.foto-cirkel img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Programma tab foto */
.foto-programma-wrap {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(45,74,30,0.10);
}
.foto-programma-wrap .foto-cirkel {
  width: 210px; height: 210px;
  margin: 0 auto;
}
.foto-programma-caption {
  font-family: var(--font-deco);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
  display: block;
}

/* ── Foto strip (horizontale rij cirkels tussen secties) ── */
.foto-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  padding: 2.5rem 1rem;
  flex-wrap: wrap;
}
.foto-strip .foto-cirkel { flex-shrink: 0; }
.foto-strip--sm .foto-cirkel  { width:  78px; height:  78px; }
.foto-strip--md .foto-cirkel  { width: 108px; height: 108px; }
.foto-strip--mix .foto-cirkel:nth-child(odd)  { width:  95px; height:  95px; }
.foto-strip--mix .foto-cirkel:nth-child(even) { width: 120px; height: 120px; }

/* Paired bollen alongside a section (right-float on desktop) */
.foto-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.foto-pair .foto-cirkel:first-child { width: 130px; height: 130px; align-self: flex-end; }
.foto-pair .foto-cirkel:last-child  { width: 100px; height: 100px; align-self: flex-start; }

/* ── Accommodatie watermark icon ── */
.accom-unit { position: relative; overflow: hidden; }
.accom-unit-bg-icon {
  position: absolute;
  right: 0.6rem;
  bottom: -0.2rem;
  font-size: 5.5rem;
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  transform: rotate(-8deg);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.70s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.70s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .timeline::before { left: 1rem; }
  .tl-item, .tl-item.tl-right {
    justify-content: flex-start;
    padding-left: 2.75rem;
    padding-right: 0;
  }
  .tl-dot { left: 1rem; }
  .tl-card, .tl-item.tl-right .tl-card {
    max-width: 100%;
    border-left: 2.5px solid var(--gold);
    border-right: none;
  }
  .map-frame { height: 280px; }
  .site-section { padding: 4rem 0; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-botanical { display: none; }
}

@media (max-width: 480px) {
  .countdown { gap: 1rem; }
  .countdown-number { font-size: 2.4rem; }
  .wave-divider { display: none; }
  .site-brand { font-size: 1.2rem; }
}

/* ── Hero: Bokeh orbs ── */
@keyframes bokeh-pulse {
  0%, 100% { opacity: 0.10; transform: scale(1); }
  50%       { opacity: 0.22; transform: scale(1.10); }
}

.hero-bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bokeh-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 60, 0.55) 0%, transparent 68%);
  filter: blur(10px);
  animation: bokeh-pulse ease-in-out infinite;
  transform: translate(-50%, -50%);
}

/* ── Hero: Floating petals ── */
@keyframes petal-drift {
  0%   { opacity: 0;    transform: translate(0px, -20px) rotate(var(--pr0)) scale(1); }
  8%   { opacity: 0.72; }
  88%  { opacity: 0.20; }
  100% { opacity: 0;    transform: translate(var(--pdx), var(--pdy)) rotate(var(--pr1)) scale(0.55); }
}

.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  border-radius: 80% 0 80% 0;
  filter: blur(0.4px);
  animation: petal-drift linear infinite;
  --pr0: 0deg; --pr1: 360deg;
  --pdx: 0px;  --pdy: 60vh;
}

/* ── Hero: Animated fireflies ── */
@keyframes firefly-drift {
  0%   { opacity: 0; transform: translate(0px, 0px) scale(1); }
  12%  { opacity: 0.88; }
  45%  { opacity: 0.18; transform: translate(var(--fdx), -34px) scale(0.72); }
  72%  { opacity: 0.70; }
  100% { opacity: 0; transform: translate(calc(var(--fdx) * 1.7), -68px) scale(0.42); }
}

.hero-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.firefly {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 244, 110, 0.96);
  box-shadow:
    0 0 5px 2px rgba(255, 238, 72, 0.82),
    0 0 14px 5px rgba(255, 222, 40, 0.40),
    0 0 28px 10px rgba(255, 200, 20, 0.14);
  animation: firefly-drift linear infinite;
  --fdx: 0px;
}

/* ── Hero: Entrance animation ── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-enter {
  animation: hero-rise 1.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s both;
}

/* ── Hero: Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 12.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  animation: hero-rise 1s ease 2s forwards;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.40; }
  50%       { transform: translateY(9px); opacity: 0.80; }
}

.scroll-indicator svg {
  animation: scroll-bounce 2.6s ease-in-out infinite;
}

/* ── Hero: 3-layer forest depth ── */
.hero-forest {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  line-height: 0;
}

.hero-trees-far {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 240px;
  display: block;
}
.hero-trees-mid {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 190px;
  display: block;
}
.hero-trees-near {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 160px;
  display: block;
}

@media (max-width: 768px) {
  .hero-card { padding: 2.5rem 1.75rem 2rem; }
  .hero-botanical-l, .hero-botanical-r { display: none; }
  .scroll-indicator { bottom: 6rem; }
}

/* ── Check-in modal ── */
@keyframes modal-in {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes checkin-success-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.checkin-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 24, 5, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.checkin-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.checkin-modal-card {
  background: rgba(255, 252, 244, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(192, 152, 72, 0.22);
  border-radius: 2rem;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.90);
  animation: modal-in 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.checkin-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: rgba(45,74,30,0.08);
  border: none;
  border-radius: 50%;
  width: 2rem; height: 2rem;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.checkin-close:hover { background: rgba(45,74,30,0.15); color: var(--primary); }

.checkin-modal-header { text-align: center; margin-bottom: 2rem; }
.checkin-modal-icon { font-size: 2.4rem; display: block; margin-bottom: .5rem; }
.checkin-modal-title {
  font-family: var(--font-deco);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 0 .2rem;
}
.checkin-modal-sub {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.checkin-field { margin-bottom: 1.4rem; }
.checkin-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .55rem;
}
.checkin-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: .78em; }

.checkin-select,
.checkin-input {
  width: 100%;
  padding: .72rem 1rem;
  border: 1px solid rgba(45,74,30,0.20);
  border-radius: .75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  background: rgba(255,255,255,0.72);
  transition: border-color .2s, box-shadow .2s;
  appearance: auto;
}
.checkin-select:focus, .checkin-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192,152,72,.16);
}

/* Pill radio buttons */
.checkin-pills { display: flex; gap: .6rem; flex-wrap: wrap; }
.pill-option { flex: 1; min-width: 100px; }
.pill-option input[type="radio"] { display: none; }
.pill-option span {
  display: block;
  text-align: center;
  padding: .6rem 1rem;
  border: 1.5px solid rgba(45,74,30,0.22);
  border-radius: 2rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  background: rgba(255,255,255,0.5);
  user-select: none;
}
.pill-option input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,74,30,0.28);
}
.pill-option span:hover { border-color: var(--primary); color: var(--primary); }

.checkin-submit-btn {
  width: 100%;
  margin-top: .5rem;
  border: none;
  cursor: pointer;
  font-size: .88rem;
  padding: .9rem;
  border-radius: 2rem;
}

.checkin-success {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}
.checkin-success.visible { display: block; }
.checkin-success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-lt), var(--primary));
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  animation: checkin-success-pop .5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  box-shadow: 0 8px 24px rgba(45,74,30,0.35);
}
.checkin-success-msg {
  font-family: var(--font-deco);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary);
}

.checkin-error {
  margin-top: .75rem;
  padding: .75rem 1rem;
  background: rgba(200, 50, 50, 0.08);
  border: 1px solid rgba(200, 50, 50, 0.22);
  border-radius: .6rem;
  font-size: .85rem;
  color: #a03030;
  display: none;
}
.checkin-error.visible { display: block; }

/* Check-in button on cabin cards */
.checkin-unit-btn {
  display: block;
  width: 100%;
  margin-top: .9rem;
  padding: .45rem .8rem;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  border: none;
  border-radius: 2rem;
  color: #fff;
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(192,152,72,.28);
}
.checkin-unit-btn:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(192,152,72,.40); }
.checkin-unit-btn.checked {
  background: linear-gradient(135deg, var(--primary-lt), var(--primary));
  box-shadow: 0 3px 12px rgba(45,74,30,.28);
}

@media (max-width: 480px) {
  .checkin-modal-card { padding: 2rem 1.5rem 1.5rem; }
}

/* ── Plattegrond lightbox ── */
.terrein-img-wrap {
  position: relative;
  display: block;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}
.terrein-img-wrap:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.terrein-zoom-hint {
  position: absolute;
  bottom: .85rem;
  right: .85rem;
  background: rgba(0,0,0,0.52);
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-ui);
  letter-spacing: .5px;
  padding: .3rem .75rem;
  border-radius: 2rem;
  pointer-events: none;
  transition: opacity .2s;
}
.terrein-img-wrap:hover .terrein-zoom-hint { opacity: 0.85; }

.terrein-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0,0,0,0.90);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
  animation: modal-in .22s ease;
}
.terrein-lightbox.is-open { display: flex; }
.terrein-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: .5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
  cursor: default;
}
.terrein-lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.terrein-lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── Accommodatie notice (inchecken + voorbehoud) ── */
.accom-notice {
  margin: 0 auto 2.5rem;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.accom-voorbehoud {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.accom-checkin-cta {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(45,74,30,0.08);
  border: 1.5px solid rgba(45,74,30,0.22);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.accom-checkin-icon { font-size: 1.75rem; line-height: 1.2; flex-shrink: 0; margin-top: .1rem; }
.accom-checkin-cta strong {
  display: block;
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--primary);
  margin-bottom: .4rem;
}
.accom-checkin-cta p {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
.accom-checkin-cta em { color: var(--primary); font-style: normal; font-weight: 600; }
