/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #4caf50;
  --green-dark:  #2e7d32;
  --green-light: #a5d6a7;
  --yellow:      #ffd54f;
  --orange:      #ff8f00;
  --purple:      #7b2d8b;
  --pink:        #e91e8c;
  --sky:         #87ceeb;
  --sky-dark:    #5ba3c9;
  --brown:       #795548;
  --cream:       #fffde7;
  --white:       #ffffff;
  --text:        #2c2c2c;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --transition:  .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Fredoka One', sans-serif; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--purple); }
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: background var(--transition);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.5rem; color: var(--purple);
}
.logo-icon { font-size: 1.8rem; }
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform .3s ease;
}
.nav-logo-img:hover { transform: scale(1.04); }
.nav-links {
  display: flex; gap: 8px; list-style: none;
}
.nav-links a {
  padding: 8px 14px; border-radius: 50px;
  font-weight: 700; color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: var(--green-light); color: var(--green-dark); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; }
.nav-cta:hover { background: var(--purple) !important; }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    /* Warm sunny overlay — geeft een gouden gloed */
    linear-gradient(
      180deg,
      rgba(10, 40, 80, 0.25) 0%,
      rgba(0, 0, 0, 0.05) 40%,
      rgba(0, 80, 0, 0.18) 80%,
      rgba(0, 60, 0, 0.45) 100%
    ),
    url('speeltuin.jpeg') center center / cover no-repeat;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 100px;
}

/* Subtiel gras-verloop aan de onderkant */
.hero::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(40,100,10,.55) 100%);
  pointer-events: none; z-index: 0;
}

/* Lichte bokeh-glans bovenin voor tekst leesbaarheid */
.hero::after {
  content: '';
  position: absolute; top: 70px; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,20,60,.3) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ===== HERO SCENE DECORATION ===== */
.hero-scene {
  position: absolute; bottom: 60px; left: 0; right: 0;
  z-index: 1; pointer-events: none;
}

/* Trees — verborgen als echte foto wordt gebruikt */
.tree { display: none; position: absolute; bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.tree-1 { left: 5%; }
.tree-2 { left: 14%; bottom: 70px; }
.tree-3 { right: 20%; bottom: 50px; }

.tree-top {
  width: 64px; height: 80px;
  background: radial-gradient(ellipse at 40% 30%, #6fc43a, #3a7d1a);
  border-radius: 50% 50% 45% 45%;
  box-shadow: inset -8px -6px 0 rgba(0,0,0,.12);
}
.tree-trunk {
  width: 14px; height: 30px;
  background: linear-gradient(180deg, #8B5E3C, #5a3a1a);
  border-radius: 3px;
}
.tree-2 .tree-top { width: 50px; height: 62px; }

/* Fence */
.fence {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55px;
}
.fence-rail {
  position: absolute; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(180deg, #c8a06a, #a07840);
  border-radius: 4px;
}
.top-rail { top: 8px; }
.mid-rail { top: 28px; }

.fence-posts {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
}
.fp {
  width: 12px; height: 55px;
  background: linear-gradient(180deg, #d4aa70, #9a6e3a);
  border-radius: 3px 3px 2px 2px;
  position: relative;
}
.fp::before {
  content: '';
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid #b8893a;
}

/* Sky elements */
.hero-sky { position: absolute; top: 0; left: 0; right: 0; height: 60%; pointer-events: none; }

.sun {
  position: absolute; top: 60px; right: 120px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, #ffe57f, #ffb300);
  border-radius: 50%;
  box-shadow: 0 0 60px 20px rgba(255,200,0,.4);
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,100% { box-shadow: 0 0 60px 20px rgba(255,200,0,.4); }
  50%      { box-shadow: 0 0 80px 35px rgba(255,200,0,.6); }
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: .85;
}
.cloud::before, .cloud::after {
  content: ''; position: absolute;
  background: white; border-radius: 50%;
}
.cloud-1 { width:140px; height:45px; top:80px; left:8%; animation: drift 18s linear infinite; }
.cloud-1::before { width:70px; height:70px; top:-35px; left:20px; }
.cloud-1::after  { width:50px; height:50px; top:-25px; left:60px; }

.cloud-2 { width:100px; height:34px; top:130px; left:30%; animation: drift 25s linear infinite reverse; }
.cloud-2::before { width:55px; height:55px; top:-27px; left:15px; }
.cloud-2::after  { width:40px; height:40px; top:-20px; left:45px; }

.cloud-3 { width:120px; height:40px; top:60px; left:60%; animation: drift 22s linear infinite; }
.cloud-3::before { width:60px; height:60px; top:-30px; left:18px; }
.cloud-3::after  { width:48px; height:48px; top:-22px; left:52px; }

@keyframes drift {
  from { transform: translateX(-200px); }
  to   { transform: translateX(110vw); }
}

/* Hero content */
.hero-content {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px 0;
  position: relative; z-index: 2;
  /* Glazen kaart achter de tekst */
  background: none;
}
.hero-content-inner {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 28px;
  padding: 32px 56px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.hero-logo {
  width: min(340px, 75vw);
  height: auto;
  display: block;
  margin: 0 auto 16px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.35));
  animation: heroBounce 3s ease-in-out infinite;
}
@keyframes heroBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 2px 4px 0 rgba(0,0,0,.15);
}
.hero-title span { color: var(--yellow); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--white);
  margin: 16px 0 32px;
  font-weight: 600;
  text-shadow: 1px 2px 0 rgba(0,0,0,.1);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero ground */
.hero-ground {
  position: relative; z-index: 2;
  padding: 0 5%;
}
.grass-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 8px;
}
.horse-container { font-size: 5rem; animation: horseWalk 1.2s steps(2) infinite; }
@keyframes horseWalk {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.hero-animals { display: flex; gap: 16px; align-items: flex-end; }
.bounce-animal {
  font-size: 3rem;
  animation: bounceAnim 1.5s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes bounceAnim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--white); font-weight: 700; font-size: .9rem;
  z-index: 3; animation: fadeUpDown 2s ease-in-out infinite;
}
.arrow-down {
  width: 20px; height: 20px;
  border-right: 3px solid white; border-bottom: 3px solid white;
  transform: rotate(45deg);
}
@keyframes fadeUpDown {
  0%,100% { opacity:1; transform: translateX(-50%) translateY(0); }
  50%      { opacity:.5; transform: translateX(-50%) translateY(6px); }
}

/* ===== SCROLL ANIMALS BAR ===== */
.scroll-animals-bar {
  height: 80px;
  background: linear-gradient(90deg, #c8e6c9, #a5d6a7);
  overflow: hidden; position: relative;
}
.running-track { position: relative; height: 100%; }
.running-horse {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 3rem; left: -80px;
  transition: left .05s linear;
  will-change: left;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple);
}
.section-header p { font-size: 1.1rem; color: #666; margin-top: 8px; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.85); }

/* ===== AGENDA PREVIEW BAR ===== */
.agenda-preview-bar {
  background: white;
  border-bottom: 4px solid #e8f5e9;
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
}
.agenda-preview-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 28px 32px;
  display: flex; align-items: stretch; gap: 24px; flex-wrap: wrap;
}
.agenda-preview-label {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.4rem; color: var(--green-dark);
  white-space: nowrap; min-width: 100px;
  display: flex; align-items: center; gap: 8px;
}
.agenda-preview-items {
  display: flex; gap: 16px; flex: 1; flex-wrap: wrap;
}
.agenda-preview-item {
  display: flex; align-items: center; gap: 16px;
  background: #f9fbe7; border: 2px solid #e0e0e0;
  border-radius: 16px; padding: 16px 22px;
  transition: transform .2s, box-shadow .2s, background .2s;
  flex: 1; min-width: 240px;
}
.agenda-preview-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); background: white; }
.agenda-preview-item.highlight { border-color: var(--orange); background: #fff8e1; }

.apd {
  display: flex; flex-direction: column; align-items: center;
  background: var(--green-dark); color: white;
  border-radius: 10px; padding: 10px 12px; min-width: 52px;
  font-family: 'Fredoka One', sans-serif; line-height: 1;
}
.agenda-preview-item.highlight .apd { background: var(--orange); }
.apd-dag  { font-size: 1.6rem; }
.apd-mnd  { font-size: .7rem; text-transform: uppercase; opacity: .85; margin-top: 2px; }

.api-info { display: flex; flex-direction: column; gap: 4px; }
.api-tag  { font-size: .78rem; font-weight: 700; color: var(--green-dark); }
.agenda-preview-item.highlight .api-tag { color: var(--orange); }
.api-titel { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.api-sub   { font-size: .82rem; color: #888; margin-top: 2px; }

.agenda-preview-cta {
  display: flex; align-items: center;
  font-family: 'Fredoka One', sans-serif; font-size: 1rem;
  color: white; white-space: nowrap;
  background: var(--green-dark);
  padding: 14px 24px; border-radius: 50px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(46,125,50,.3);
}
.agenda-preview-cta:hover { background: var(--orange); transform: translateY(-2px); }

/* ===== DIEREN ===== */
.dieren-section { background: var(--cream); }

.dieren-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 750px) { .dieren-layout { grid-template-columns: 1fr; } }

/* Featured dier kaart */
.dier-featured {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border: 3px solid var(--green-light);
  position: relative; overflow: hidden;
}
.dier-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #4caf50, #ffd54f, #ff8f00);
}
.dier-featured:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.15); }
.dier-featured-emoji {
  font-size: 6rem; margin-bottom: 16px;
  animation: heroBounce 2.5s ease-in-out infinite;
  display: block;
}
.dier-featured-info h3 { font-size: 2rem; color: var(--green-dark); margin-bottom: 12px; }
.dier-featured-info p  { color: #555; line-height: 1.7; font-size: 1rem; }
.dier-fun-fact {
  display: inline-block;
  margin-top: 16px;
  background: #fff9c4; border: 1px solid #ffd54f;
  border-radius: 50px; padding: 8px 20px;
  font-size: .85rem; color: #7a5c00; font-weight: 700;
}

/* Compact dieren grid */
.dieren-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}
.dieren-meer-btn {
  display: inline-block; margin-top: 16px;
  font-family: 'Fredoka One', sans-serif; font-size: 1rem;
  color: var(--green-dark); border-bottom: 2px solid var(--green);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.dieren-meer-btn:hover { color: var(--orange); border-color: var(--orange); }
.dier-chip {
  background: white;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 2.6rem;
  border: 2px solid transparent;
}
.dier-chip span { font-family: 'Fredoka One', sans-serif; font-size: .95rem; color: var(--green-dark); }
.dier-chip:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.13);
  border-color: var(--green);
  background: #f1fff1;
}
.dier-chip.active {
  border-color: var(--orange);
  background: #fff8e1;
  transform: scale(1.06);
}

/* ===== AGENDA & NIEUWS ===== */
.agenda-nieuws-section { background: #f0f7f0; }
.agenda-nieuws-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 750px) { .agenda-nieuws-grid { grid-template-columns: 1fr; } }

.agenda-kolom, .nieuws-kolom {
  background: white; border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.kolom-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--cream);
}
.kolom-icon { font-size: 2rem; }
.kolom-header h2 { font-size: 1.8rem; color: var(--green-dark); }

/* Agenda items */
.agenda-items { display: flex; flex-direction: column; gap: 12px; }
.agenda-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 16px; border-radius: 14px;
  background: #fafafa; border: 1px solid #eee;
  transition: transform .2s, box-shadow .2s;
}
.agenda-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.agenda-item.featured-event {
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border-color: #ffd54f;
}
.agenda-item.upcoming { border-left: 4px solid var(--green); }

.agenda-datum {
  display: flex; flex-direction: column; align-items: center;
  min-width: 46px;
  background: var(--green-dark); color: white;
  border-radius: 10px; padding: 8px 6px;
  font-family: 'Fredoka One', sans-serif; line-height: 1;
}
.agenda-datum .dag  { font-size: 1.4rem; }
.agenda-datum .maand { font-size: .7rem; text-transform: uppercase; opacity: .85; }

.agenda-info h4 { font-size: 1rem; color: var(--text); margin-bottom: 4px; font-family: 'Fredoka One', sans-serif; }
.agenda-info p  { font-size: .82rem; color: #777; line-height: 1.4; }
.agenda-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 2px 10px; border-radius: 50px; margin-bottom: 4px;
  background: var(--green-light); color: var(--green-dark);
}
.agenda-label.highlight { background: var(--orange); color: white; }

/* Nieuws items */
.nieuws-items { display: flex; flex-direction: column; gap: 14px; }
.nieuws-item {
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid #eee; background: #fafafa;
  transition: transform .2s, box-shadow .2s;
}
.nieuws-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.nieuws-item.featured-nieuws {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-color: #81c784; border-left: 4px solid var(--green-dark);
}
.nieuws-item-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.nieuws-item h4 { font-size: 1rem; font-family: 'Fredoka One', sans-serif; color: var(--text); margin-bottom: 6px; }
.nieuws-item p  { font-size: .82rem; color: #666; line-height: 1.45; margin-bottom: 8px; }
.nieuws-item a  { font-size: .82rem; font-weight: 700; color: var(--green-dark); }
.nieuws-item a:hover { text-decoration: underline; }
.nieuws-item-datum { font-size: .75rem; color: #aaa; }
.nieuws-tag {
  font-size: .7rem; font-weight: 700; padding: 2px 10px;
  border-radius: 50px;
}
.nieuws-tag.nieuw { background: var(--orange); color: white; }

.btn-kolom {
  display: inline-block; margin-top: 20px;
  font-weight: 700; font-size: .9rem;
  color: var(--green-dark);
  padding: 10px 0;
  border-bottom: 2px solid var(--green);
  transition: color .2s, border-color .2s;
}
.btn-kolom:hover { color: var(--orange); border-color: var(--orange); }

/* ===== OPENINGSTIJDEN ===== */
.openingstijden-section { padding: 0; }
.meadow-bg {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  padding: 80px 24px;
}
.tijden-cards {
  max-width: 900px; margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.tijd-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  color: white;
  position: relative;
  transition: transform var(--transition);
}
.tijd-card:hover { transform: translateY(-6px); }
.tijd-card.featured { background: rgba(255,255,255,.25); border-color: var(--yellow); }
.dag-icon { font-size: 2.5rem; margin-bottom: 12px; }
.tijd-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.status { font-size: 1.1rem; font-weight: 700; }
.gesloten { color: #ffcdd2; }
.open-tijd { color: var(--yellow); font-size: 1.3rem; }
.badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--yellow); color: var(--brown);
  padding: 4px 14px; border-radius: 50px;
  font-weight: 700; font-size: .85rem;
}
.openings-note {
  text-align: center; color: rgba(255,255,255,.8);
  font-size: .9rem; line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}

/* ===== ACTIVITEITEN ===== */
.activiteiten-section { background: white; }
.activiteiten-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.activiteit-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.activiteit-card:hover { transform: translateY(-6px); }
.act-icon { font-size: 3rem; }
.activiteit-card h3 { color: var(--purple); font-size: 1.3rem; }
.activiteit-card p  { color: #666; font-size: .9rem; line-height: 1.5; flex: 1; }

/* ===== NIEUWS ===== */
.nieuws-section { background: #f3e5f5; }
.nieuws-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 750px) { .nieuws-grid { grid-template-columns: 1fr; } }

.nieuws-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; transition: transform var(--transition);
}
.nieuws-card:hover { transform: translateY(-6px); }
.nieuws-emoji { font-size: 2.5rem; }
.nieuws-card h3 { color: var(--purple); font-size: 1.2rem; }
.nieuws-date { color: var(--orange); font-size: .85rem; font-weight: 700; }
.nieuws-card p  { color: #666; font-size: .9rem; line-height: 1.5; flex: 1; }
.nieuws-label {
  position: absolute; top: -10px; left: 20px;
  background: var(--pink); color: white;
  padding: 4px 14px; border-radius: 50px;
  font-weight: 700; font-size: .8rem;
}
.featured-news { border-top: 4px solid var(--pink); }

/* ===== STEUN ===== */
.steun-section { background: linear-gradient(135deg, #7b2d8b, #e91e8c); }
.steun-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.steun-text { flex: 1; min-width: 260px; color: white; }
.steun-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.steun-text p  { line-height: 1.7; margin-bottom: 20px; opacity: .9; }
.bank-info {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-block;
  font-weight: 700; margin-bottom: 24px;
  font-size: 1rem;
}
.steun-animals { display: flex; gap: 12px; }
.big-animal {
  font-size: 4.5rem;
  display: inline-block;
  animation: wobbleAnim 2s ease-in-out infinite;
  animation-delay: var(--wd, 0s);
}
@keyframes wobbleAnim {
  0%,100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

/* ===== CONTACT ===== */
.contact-section { background: linear-gradient(135deg, #1a237e, #283593); color: white; }
.contact-section .section-header h2 { color: var(--yellow); }
.contact-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: start;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon { font-size: 2rem; }
.contact-item strong { display: block; color: var(--yellow); margin-bottom: 4px; }
.contact-item p { color: rgba(255,255,255,.8); }

.contact-form {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 36px 28px;
}
.contact-form h3 { color: var(--yellow); margin-bottom: 24px; font-size: 1.5rem; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.5); }
.form-group select option { background: #1a237e; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--yellow); }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand .logo-icon { font-size: 2.5rem; }
.footer-brand .logo-text { font-family: 'Fredoka One', sans-serif; font-size: 1.4rem; color: white; margin-left: 8px; }
.footer-brand p { margin-top: 12px; font-size: .9rem; line-height: 1.6; }
.footer-links h4 { color: white; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-animals { text-align: right; }
.footer-parade { font-size: 1.8rem; margin-bottom: 16px; letter-spacing: 4px; }
.footer-animals p { font-size: .85rem; margin-bottom: 4px; }

.flexela-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.flexela-badge-label { font-size: .75rem; color: #888; white-space: nowrap; }
.flexela-badge-logo { height: 52px; width: 130px; object-fit: contain; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white; padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .hamburger { display: block; }
  .nieuws-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero-animals { gap: 8px; }
  .bounce-animal { font-size: 2rem; }
  .horse-container { font-size: 3.5rem; }
}
