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

:root {
  --roze: #ff6eb4;
  --paars: #9b59b6;
  --groen: #27ae60;
  --geel: #f1c40f;
  --oranje: #e67e22;
  --blauw: #3498db;
  --licht-roze: #fce4ec;
  --licht-paars: #f3e5f5;
  --donker: #2c2c2c;
  --wit: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff9fc;
  color: var(--donker);
  font-size: 18px;
  line-height: 1.6;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--paars);
}

.sectie-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

section { padding: 4rem 2rem; }

/* ===== HOME MENU ===== */
.home-menu { background: white; }
.home-menu h2 { color: var(--paars); }

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.home-kaart {
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--donker);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}
.home-kaart:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(0,0,0,0.13); }
.hk-icoon { font-size: 2.5rem; }
.home-kaart h3 { font-size: 1rem; color: var(--paars); margin: 0; }
.home-kaart p { font-size: 0.82rem; color: #666; margin: 0; }
.home-shop h3, .home-shop p { color: white; }
.home-boek h3, .home-boek p { color: rgba(255,255,255,0.9); }

/* Actieve nav */
.actief-nav {
  background: rgba(255,255,255,0.5) !important;
  font-weight: 900 !important;
  text-decoration: underline;
}

/* Logo als link */
a.logo {
  text-decoration: none;
  color: white;
}

/* Uitverkocht stijl */
.product-badge.uitverkocht { background: #757575; }
.uitverkocht-overlay { opacity: 0.5; filter: grayscale(60%); }
.btn-uitverkocht {
  background: #bdbdbd !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, var(--roze), var(--paars));
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

nav { display: flex; gap: 0.5rem; flex-wrap: wrap; }

nav a {
  color: white;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  background: rgba(255,255,255,0.2);
}

nav a:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e3f2fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 5rem 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--paars);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 rgba(155,89,182,0.2);
}

.hero-content p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--roze), var(--paars));
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(155,89,182,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(155,89,182,0.5);
}

.hero-horse { font-size: 10rem; animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== FEITEN ===== */
.feiten {
  background: white;
}

.feiten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feit-kaart {
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.feit-kaart:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feit-kaart.paars  { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.feit-kaart.roze   { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.feit-kaart.groen  { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.feit-kaart.geel   { background: linear-gradient(135deg, #fffde7, #fff9c4); }
.feit-kaart.blauw  { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.feit-kaart.oranje { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }

.feit-icoon { font-size: 3rem; margin-bottom: 0.8rem; }

.feit-kaart h3 {
  font-size: 1.3rem;
  color: var(--paars);
  margin-bottom: 0.5rem;
}

/* ===== RASSEN ===== */
.rassen {
  background: linear-gradient(180deg, #f3e5f5 0%, #fce4ec 100%);
}

.rassen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ras-kaart {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.ras-kaart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--roze), var(--paars));
}

.ras-kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.ras-emoji { font-size: 4rem; display: block; margin-bottom: 0.5rem; }

.ras-kaart h3 { font-size: 1.4rem; color: var(--paars); margin-bottom: 0.5rem; }

.ras-label {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: white;
}

.ras-label.klein  { background: var(--groen); }
.ras-label.oud    { background: var(--oranje); }
.ras-label.nl     { background: #e53935; }
.ras-label.stippen{ background: #8e24aa; }
.ras-label.snel   { background: #1565c0; }

.ras-info {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  flex-wrap: wrap;
}

/* ===== KLEUREN ===== */
.kleuren {
  background: white;
}

.kleuren h2 { color: var(--roze); }

.kleuren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.kleur-item {
  border-radius: 15px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: white;
  transition: transform 0.2s;
}

.kleur-item:hover { transform: scale(1.05); }

.kleur-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.3rem; }
.kleur-item strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; }
.kleur-item small { font-size: 0.8rem; opacity: 0.9; }

/* ===== VERZORGING ===== */
.verzorging {
  background: linear-gradient(180deg, #e8f5e9 0%, #f1f8e9 100%);
}

.verzorging h2 { color: var(--groen); }

.verzorging-stappen {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stap {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}

.stap:hover { transform: translateX(8px); }

.stap-nummer {
  background: linear-gradient(135deg, var(--groen), #2ecc71);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.stap-inhoud h3 { color: var(--groen); margin-bottom: 0.5rem; font-size: 1.2rem; }

.stap-inhoud ul { padding-left: 1.2rem; }
.stap-inhoud li { margin-bottom: 0.3rem; }

.gereedschap {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.gereedschap h3 { color: var(--groen); text-align: center; margin-bottom: 1.5rem; font-size: 1.4rem; }

.gereedschap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.gereedschap-item {
  background: #e8f5e9;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.gereedschap-item:hover { background: #c8e6c9; transform: scale(1.05); }

/* ===== LESSEN ===== */
.lessen {
  background: linear-gradient(180deg, #fff3e0 0%, #fce4ec 100%);
}

.lessen h2 { color: var(--oranje); }

.lessen-pad {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.les-stap {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  width: 175px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.les-stap:hover { transform: translateY(-5px); }

.les-stap.actief { border: 3px solid var(--groen); }
.les-stap.bezig  { border: 3px solid var(--geel); background: #fffde7; }
.les-stap.toekomst { opacity: 0.6; }

.les-icoon { font-size: 2rem; margin-bottom: 0.5rem; }
.les-stap h3 { font-size: 0.95rem; color: var(--paars); margin-bottom: 0.4rem; }
.les-stap p { font-size: 0.82rem; color: #555; }

.pijl {
  font-size: 2rem;
  color: var(--oranje);
  font-weight: 900;
}

.uitrusting-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.uitrusting-box h3 { color: var(--oranje); text-align: center; margin-bottom: 1.5rem; font-size: 1.4rem; }

.uitrusting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.uitrusting-item {
  background: #fff3e0;
  border-radius: 15px;
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s;
}

.uitrusting-item:hover { transform: scale(1.04); }

.u-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.uitrusting-item strong { display: block; color: var(--oranje); margin-bottom: 0.3rem; }
.uitrusting-item p { font-size: 0.88rem; color: #555; }

/* ===== QUIZ ===== */
.quiz {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.quiz h2 { color: var(--blauw); }

#quiz-container {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.quiz-vraag {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.quiz-vraag h3 { color: var(--blauw); margin-bottom: 1rem; font-size: 1.2rem; }

.antwoord-opties { display: flex; flex-direction: column; gap: 0.6rem; }

.antwoord-btn {
  background: #e3f2fd;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  font-family: inherit;
}

.antwoord-btn:hover { background: #bbdefb; border-color: var(--blauw); transform: translateX(5px); }
.antwoord-btn.goed { background: #c8e6c9; border-color: var(--groen); }
.antwoord-btn.fout { background: #ffcdd2; border-color: #e53935; }

.quiz-resultaat {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-size: 1.2rem;
}

.quiz-resultaat h3 { font-size: 2rem; color: var(--paars); margin-bottom: 0.5rem; }

.verborgen { display: none; }

.btn-quiz {
  display: block;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
}

/* ===== WEBSHOP ===== */
.webshop {
  background: linear-gradient(180deg, #fce4ec 0%, #f3e5f5 100%);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  flex-wrap: wrap;
}

.shop-header h2 { margin: 0; color: var(--roze); }

.winkelmandje {
  position: relative;
  background: white;
  border: 2px solid var(--roze);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--roze);
  user-select: none;
  transition: background 0.2s;
}
.winkelmandje:hover { background: #fce4ec; }

#mandje-teller {
  background: var(--roze);
  color: white;
  border-radius: 50%;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: 4px;
}

.mandje-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: 16px;
  padding: 1.2rem;
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 200;
  text-align: left;
}
.mandje-dropdown.open { display: block; }
.mandje-dropdown h4 { color: var(--paars); margin-bottom: 0.8rem; font-size: 1rem; }

.mandje-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  gap: 0.5rem;
}
.mandje-item button {
  background: none;
  border: none;
  color: #e53935;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
}

.leeg-mandje { color: #aaa; font-style: italic; font-size: 0.9rem; }

.mandje-totaal {
  margin-top: 0.8rem;
  font-size: 1rem;
  text-align: right;
  color: #333;
}

.btn-bestellen {
  width: 100%;
  margin-top: 0.8rem;
  background: linear-gradient(135deg, var(--roze), var(--paars));
  color: white;
  border: none;
  border-radius: 20px;
  padding: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s;
}
.btn-bestellen:hover { transform: scale(1.03); }

/* Filter knoppen */
.shop-filter {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #ddd;
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  color: #555;
}
.filter-btn:hover { border-color: var(--roze); color: var(--roze); }
.filter-btn.actief { background: var(--roze); border-color: var(--roze); color: white; }

/* Productgrid */
.producten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-kaart {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-kaart:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.product-kaart.verborgen { display: none; }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  z-index: 1;
}
.product-badge.nieuw { background: var(--groen); }
.product-badge.sale  { background: #e53935; }
.product-badge.top   { background: var(--oranje); }

.product-afbeelding {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  font-size: 5rem;
  text-align: center;
  padding: 1.5rem 1rem;
  line-height: 1;
}

.product-info { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { color: var(--paars); font-size: 1rem; margin-bottom: 0.4rem; }
.product-beschrijving { font-size: 0.85rem; color: #666; margin-bottom: 0.6rem; flex: 1; line-height: 1.4; }
.product-sterren { font-size: 0.85rem; margin-bottom: 0.5rem; }
.product-prijs { font-size: 1.3rem; font-weight: 900; color: var(--roze); margin-bottom: 0.8rem; }
.oude-prijs { font-size: 0.9rem; font-weight: 400; color: #aaa; text-decoration: line-through; margin-right: 0.3rem; }

.btn-toevoegen {
  background: linear-gradient(135deg, var(--roze), var(--paars));
  color: white;
  border: none;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}
.btn-toevoegen:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,110,180,0.4); }
.btn-toevoegen.toegevoegd { background: var(--groen); }

.nav-shop {
  background: linear-gradient(135deg, var(--roze), var(--paars)) !important;
  color: white !important;
  font-weight: 800 !important;
}

/* ===== ETEN ===== */
.eten { background: linear-gradient(180deg, #fff8e1 0%, #fff3e0 100%); }
.eten h2 { color: var(--oranje); }

.eten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.eten-kaart {
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s;
}
.eten-kaart:hover { transform: translateY(-5px); }
.eten-kaart.hoofd { background: linear-gradient(135deg, #fff3e0, #ffe0b2); box-shadow: 0 4px 12px rgba(230,126,34,0.2); }
.eten-kaart.extra { background: linear-gradient(135deg, #f9fbe7, #f0f4c3); box-shadow: 0 4px 12px rgba(130,170,40,0.15); }
.eten-emoji { font-size: 3rem; margin-bottom: 0.5rem; }
.eten-kaart h3 { color: var(--oranje); margin-bottom: 0.4rem; }

.eten-verboden {
  max-width: 800px;
  margin: 0 auto;
  background: #ffebee;
  border-radius: 18px;
  padding: 1.5rem 2rem;
  border-left: 5px solid #e53935;
}
.eten-verboden h3 { color: #c62828; margin-bottom: 1rem; font-size: 1.2rem; }
.verboden-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.verboden-grid span {
  background: white;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ===== BORSTELS ===== */
.borstels { background: white; }
.borstels h2 { color: var(--paars); }

.borstels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}

.borstel-kaart {
  background: var(--licht-paars);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.borstel-kaart:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(155,89,182,0.2); }
.b-emoji { font-size: 2.8rem; margin-bottom: 0.5rem; }
.borstel-kaart h3 { color: var(--paars); margin-bottom: 0.3rem; }
.b-gebruik {
  display: inline-block;
  background: var(--paars);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.borstel-tip {
  max-width: 700px;
  margin: 0 auto;
  background: #f3e5f5;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  border-left: 4px solid var(--paars);
}

/* ===== ZADELEN ===== */
.zadelen { background: linear-gradient(180deg, #e8f5e9 0%, #f1f8e9 100%); }
.zadelen h2 { color: var(--groen); }

.zadel-stappen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.z-stap {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  transition: transform 0.25s;
  position: relative;
}
.z-stap:hover { transform: translateY(-5px); }
.z-nummer {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--groen);
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem;
}
.z-icoon { font-size: 2.5rem; margin: 0.5rem 0 0.5rem; }
.z-stap h3 { color: var(--groen); margin-bottom: 0.4rem; }

/* ===== WEDSTRIJD ===== */
.wedstrijd { background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%); }
.wedstrijd h2 { color: #6a1b9a; }

.wedstrijd-blokken {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.wedstrijd-blok {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.wedstrijd-blok h3 { font-size: 1.3rem; margin-bottom: 1.2rem; color: var(--paars); }
.wedstrijd-blok.ruiter h3 { color: #6a1b9a; }
.wedstrijd-blok.paard h3 { color: var(--oranje); }

.wedstrijd-lijst { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.wedstrijd-lijst li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; }
.w-emoji { font-size: 1.3rem; flex-shrink: 0; }

/* ===== PARCOURS ===== */
.parcours { background: linear-gradient(180deg, #e3f2fd 0%, #e8f5e9 100%); }
.parcours h2 { color: var(--blauw); }

.parcours-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255,255,255,0.6);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  color: #555;
}
.tab-btn:hover { background: white; border-color: var(--blauw); }
.tab-btn.actief { background: var(--blauw); color: white; border-color: var(--blauw); }

.tab-inhoud { max-width: 900px; margin: 0 auto; }

.parcours-diagram {
  background: #a5d6a7;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pd-arena { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.pd-hindernis {
  background: white;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 70px;
}
.pd-pijl { font-size: 1.5rem; font-weight: 900; color: #2e7d32; }
.h6 { background: #ffd700; }

.spring-regels { background: white; border-radius: 18px; padding: 1.5rem 2rem; }
.spring-regels h3 { color: var(--blauw); margin-bottom: 1rem; }
.regels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.7rem; }
.regel { padding: 0.7rem 1rem; border-radius: 10px; font-size: 0.95rem; }
.regel.goed { background: #e8f5e9; }
.regel.fout { background: #ffebee; }
.regel.tip  { background: #fff9c4; font-weight: 700; }

/* Dressuur bak */
.dressuur-bak {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: #c8e6c9;
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #2e7d32;
}
.bak-label { display: flex; flex-direction: column; justify-content: space-between; font-weight: 900; color: #1b5e20; padding: 0 0.5rem; font-size: 1rem; }
.bak-midden { flex: 1; display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.bak-lijn { display: flex; justify-content: space-between; width: 100%; padding: 0 0.5rem; font-weight: 700; color: #2e7d32; }
.bak-x { font-size: 1.4rem; color: #b71c1c; }
.bak-binnenste { display: flex; gap: 1.5rem; font-weight: 700; color: #2e7d32; }
.bak-letter { font-weight: 700; color: #1b5e20; }

.dressuur-punten { background: white; border-radius: 18px; padding: 1.5rem 2rem; }
.dressuur-punten h3 { color: var(--groen); margin-bottom: 1rem; }
.punten-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.7rem; margin-bottom: 1rem; }
.punt { background: #e8f5e9; padding: 0.7rem 1rem; border-radius: 10px; font-size: 0.95rem; }
.dressuur-score { font-size: 0.95rem; color: #555; font-style: italic; }

/* ===== DIERENARTS ===== */
.dierenarts { background: linear-gradient(180deg, #e3f2fd 0%, #f3e5f5 100%); }
.dierenarts h2 { color: #1565c0; }

.dierenarts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.da-kaart {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  transition: transform 0.25s;
  border-top: 4px solid #1565c0;
}
.da-kaart:hover { transform: translateY(-5px); }
.da-emoji { font-size: 2.8rem; margin-bottom: 0.5rem; }
.da-kaart h3 { color: #1565c0; margin-bottom: 0.4rem; }

.dierenarts-noodgeval {
  max-width: 800px;
  margin: 0 auto;
  background: #ffebee;
  border-radius: 18px;
  padding: 1.5rem 2rem;
  border-left: 5px solid #c62828;
}
.dierenarts-noodgeval h3 { color: #c62828; margin-bottom: 1rem; font-size: 1.2rem; }
.noodgeval-items { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.noodgeval-items span {
  background: white;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ===== NAV BOEK KNOP ===== */
.nav-boek {
  background: linear-gradient(135deg, #ffd700, #ffb347) !important;
  color: #2c2c2c !important;
  font-weight: 800 !important;
  animation: glinsteren 2s ease-in-out infinite;
}

@keyframes glinsteren {
  0%, 100% { box-shadow: 0 0 6px rgba(255,215,0,0.5); }
  50%       { box-shadow: 0 0 16px rgba(255,215,0,0.9); }
}

.nav-manege {
  background: linear-gradient(135deg, #2f4a2f, #1a2e1a) !important;
  color: #c9a84c !important;
  font-weight: 700 !important;
  border: 1px solid rgba(201,168,76,0.4) !important;
}

.nav-manege:hover {
  background: linear-gradient(135deg, #3a5c3a, #243624) !important;
  color: #e0c06a !important;
}

/* ===== BOEK BANNER ===== */
.boek-banner {
  background: linear-gradient(135deg, #1a0a35 0%, #3d1a6e 50%, #1a0a35 100%);
  padding: 4rem 2rem;
}

.boek-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.boek-banner-tekst h2 {
  color: #ffd700;
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

.boek-banner-tekst p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.boek-banner-tekst .btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #1a0a35;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}

.boek-banner-tekst .btn:hover {
  box-shadow: 0 7px 25px rgba(255,215,0,0.6);
}

.boek-banner-cover {
  font-size: 6rem;
  animation: zweven 3s ease-in-out infinite;
}

@keyframes zweven {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-12px) rotate(3deg); }
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--paars), var(--roze));
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.footer-inner p { margin-bottom: 0.5rem; font-size: 1.1rem; }

.footer-paarden {
  font-size: 2.5rem;
  margin-top: 1.5rem;
  animation: gallop 3s linear infinite;
  display: inline-block;
}

@keyframes gallop {
  0%   { transform: translateX(-20px); }
  100% { transform: translateX(20px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-horse { font-size: 6rem; }
  h2 { font-size: 1.8rem; }
  .pijl { display: none; }
  .les-stap { width: 140px; }
  .logo { font-size: 1.1rem; }
}

/* ===== NAV: DE BONGERD & PONYKAMPEN ===== */
.nav-bongerd {
  background: linear-gradient(135deg, #2e7d32, #1b5e20) !important;
  color: white !important;
  font-weight: 700 !important;
}

.nav-bongerd:hover {
  background: linear-gradient(135deg, #388e3c, #2e7d32) !important;
}

.nav-ponykamp {
  background: linear-gradient(135deg, #f57c00, #e65100) !important;
  color: white !important;
  font-weight: 700 !important;
  animation: glinsteren-oranje 2.5s ease-in-out infinite;
}

.nav-ponykamp:hover {
  background: linear-gradient(135deg, #fb8c00, #f57c00) !important;
}

@keyframes glinsteren-oranje {
  0%, 100% { box-shadow: 0 0 6px rgba(245,124,0,0.5); }
  50%       { box-shadow: 0 0 16px rgba(245,124,0,0.9); }
}

/* ===== MANEGE DE BONGERD PAGINA ===== */
.bongerd-hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #388e3c 70%, #1b5e20 100%);
  text-align: center;
  padding: 5rem 2rem;
  color: white;
}

.bongerd-hero-inner { max-width: 700px; margin: 0 auto; }

.bongerd-icoon-groot { font-size: 4rem; margin-bottom: 1rem; }

.bongerd-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 2px 3px 8px rgba(0,0,0,0.3);
}

.bongerd-slogan {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.bongerd-familie {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

.bongerd-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bongerd-btn-wit {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}

.bongerd-btn-wit:hover { background: rgba(255,255,255,0.35); }

.bongerd-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bongerd-over {
  background: white;
  padding: 4rem 2rem;
}

.bongerd-over-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bongerd-feit {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #a5d6a7;
}

.bongerd-feit-icoon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.bongerd-feit h3    { color: #2e7d32; margin-bottom: 0.4rem; }
.bongerd-feit p     { color: #555; font-size: 0.92rem; }

.bongerd-diensten {
  background: linear-gradient(180deg, #f1f8e9, #e8f5e9);
  padding: 4rem 2rem;
}

.bongerd-diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.bongerd-dienst {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #c8e6c9;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.bongerd-dienst:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(46,125,50,0.15);
}

.bongerd-dienst-featured {
  border-color: #f57c00;
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
}

.bd-icoon   { font-size: 2.2rem; margin-bottom: 0.6rem; }
.bongerd-dienst h3 { color: #2e7d32; margin-bottom: 0.4rem; }
.bongerd-dienst-featured h3 { color: #e65100; }
.bongerd-dienst p  { color: #555; font-size: 0.88rem; }

.bd-badge {
  display: inline-block;
  margin-top: 0.5rem;
  background: #f57c00;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
}

.bongerd-contact {
  background: white;
  padding: 4rem 2rem;
}

.bongerd-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.bongerd-contact-kaart {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #a5d6a7;
}

.bck-icoon  { font-size: 2rem; margin-bottom: 0.5rem; }
.bongerd-contact-kaart h3 { color: #2e7d32; margin-bottom: 0.5rem; font-size: 1rem; }
.bongerd-contact-kaart p  { color: #444; font-size: 0.92rem; margin-bottom: 0.2rem; }
.bongerd-contact-kaart a  { color: #2e7d32; text-decoration: none; font-weight: 700; }
.bongerd-contact-kaart a:hover { text-decoration: underline; }
.bck-sub { color: #888 !important; font-size: 0.82rem !important; }

/* ===== PONYKAMPEN PAGINA ===== */
.kamp-hero {
  background: linear-gradient(135deg, #e65100 0%, #f57c00 40%, #ff8f00 70%, #e65100 100%);
  text-align: center;
  padding: 5rem 2rem;
  color: white;
}

.kamp-hero-inner { max-width: 750px; margin: 0 auto; }

.kamp-sterren { font-size: 1.5rem; margin-bottom: 0.5rem; }

.kamp-hero-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}

.kamp-hero h1 {
  font-size: 3.2rem;
  color: white;
  margin-bottom: 0.8rem;
  text-shadow: 2px 3px 8px rgba(0,0,0,0.25);
}

.kamp-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.4rem;
}

.kamp-hero-sub2 {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.kamp-intro { background: white; padding: 4rem 2rem; }

.kamp-intro-tekst {
  max-width: 750px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #444;
  line-height: 1.8;
}

.kamp-intro-tekst p { margin-bottom: 1rem; }

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

.kh-item {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  text-align: center;
  border: 2px solid #ffcc80;
}

.kh-item span { font-size: 2.2rem; display: block; margin-bottom: 0.4rem; }
.kh-item p    { font-size: 0.85rem; color: #e65100; font-weight: 700; margin: 0; }

.kamp-programma {
  background: linear-gradient(180deg, #fff8e1, #fff3e0);
  padding: 4rem 2rem;
}

.kamp-prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.kamp-dag {
  background: white;
  border-radius: 14px;
  padding: 1.2rem;
  border: 2px solid #ffcc80;
}

.kamp-dag-feest { border-color: #f57c00; background: linear-gradient(135deg, #fff8e1, white); }

.kamp-dag-naam {
  font-weight: 900;
  color: #e65100;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  border-bottom: 2px solid #ffe0b2;
  padding-bottom: 0.4rem;
}

.kamp-dag ul { list-style: none; padding: 0; }
.kamp-dag li { font-size: 0.87rem; color: #444; padding: 0.25rem 0; }

.kamp-prog-noot {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
  font-size: 0.92rem;
  font-style: italic;
}

.kamp-logeren {
  background: linear-gradient(180deg, #e8f5e9, #f1f8e9);
  padding: 4rem 2rem;
}

.kamp-logeer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.kamp-logeer-item {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #a5d6a7;
}

.kli-icoon { font-size: 2.5rem; margin-bottom: 0.6rem; }
.kamp-logeer-item h3 { color: #2e7d32; margin-bottom: 0.4rem; }
.kamp-logeer-item p  { color: #555; font-size: 0.9rem; }

.kamp-eigenpony {
  background: white;
  padding: 4rem 2rem;
  text-align: center;
}

.kamp-eigenpony > .bongerd-container > p {
  color: #555;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.kamp-pony-opties {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.kamp-pony-optie {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 2px solid #a5d6a7;
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  min-width: 200px;
}

.kpo-icoon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.kamp-pony-optie h3 { color: #2e7d32; margin-bottom: 0.5rem; }

.kpo-prijs {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1b5e20;
}

.kpo-prijs span { font-size: 1rem; font-weight: 400; color: #555; }

.kamp-pony-noot {
  background: #fff8e1;
  border: 2px solid #ffcc80;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #e65100;
  max-width: 650px;
  margin: 0 auto;
}

.kamp-meenemen {
  background: linear-gradient(180deg, #e3f2fd, #f3e5f5);
  padding: 4rem 2rem;
}

.kamp-mee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.kamp-mee-item {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #333;
}

.kamp-mee-item span { font-size: 1.5rem; flex-shrink: 0; }
.kamp-mee-item p { margin: 0; }

.kamp-tijden {
  background: white;
  padding: 4rem 2rem;
}

.kamp-tijden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.kamp-tijd-item {
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  border-radius: 14px;
  padding: 1.5rem;
  border: 2px solid #bbdefb;
}

.kamp-tijd-item h3 { color: #1565c0; margin-bottom: 0.6rem; }
.kamp-tijd-item p  { color: #444; font-size: 0.92rem; margin-bottom: 0.3rem; }

.kamp-tarieven {
  background: linear-gradient(180deg, #fff8e1, #fffde7);
  padding: 4rem 2rem;
}

.kamp-prijs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.kamp-prijs-kaart {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid #ffe082;
  position: relative;
}

.kamp-prijs-featured {
  border-color: #f57c00;
  background: linear-gradient(135deg, #fff8e1, white);
  transform: scale(1.04);
}

.kpk-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f57c00;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.kpk-icoon { font-size: 2.5rem; margin-bottom: 0.6rem; }
.kamp-prijs-kaart h3 { color: #e65100; margin-bottom: 0.5rem; }

.kpk-prijs {
  font-size: 2rem;
  font-weight: 900;
  color: #bf360c;
  margin-bottom: 0.5rem;
}

.kpk-prijs span { font-size: 1rem; font-weight: 400; color: #888; }
.kamp-prijs-kaart p { color: #666; font-size: 0.9rem; }

.kamp-betalen-info {
  text-align: center;
  margin-top: 2rem;
  background: #fff9c4;
  border: 2px solid #f9a825;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 0.92rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.kamp-schema {
  background: white;
  padding: 4rem 2rem;
}

.kamp-weken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.kamp-week {
  border-radius: 14px;
  padding: 1.2rem 1rem;
  border: 2px solid;
}

.kamp-week.vol         { background: #ffebee; border-color: #ef9a9a; }
.kamp-week.beschikbaar { background: #e8f5e9; border-color: #a5d6a7; }

.kw-label  { font-weight: 800; font-size: 0.95rem; color: #333; margin-bottom: 0.3rem; }
.kw-datum  { font-size: 0.85rem; color: #666; margin-bottom: 0.5rem; }

.kw-status { font-size: 0.8rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 20px; display: inline-block; }
.vol-badge  { background: #ef5350; color: white; }
.vrij-badge { background: #43a047; color: white; }

.kamp-aanmeld-blok {
  text-align: center;
  margin-top: 3rem;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 2px solid #a5d6a7;
  border-radius: 20px;
  padding: 2.5rem;
}

.kamp-aanmeld-blok h3 { color: #2e7d32; margin-bottom: 0.8rem; font-size: 1.4rem; }
.kamp-aanmeld-blok p  { color: #555; margin-bottom: 1.5rem; }

.bongerd-btn-groen {
  display: inline-block;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0.8rem;
  box-shadow: 0 4px 15px rgba(46,125,50,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bongerd-btn-groen:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 22px rgba(46,125,50,0.5);
}

/* oud-thema overrides voor de nieuwe pagina's */
body.thema-oud .bongerd-hero,
body.thema-oud .kamp-hero { filter: saturate(0.7) brightness(0.85); }

body.thema-oud .bongerd-over,
body.thema-oud .bongerd-diensten,
body.thema-oud .bongerd-contact,
body.thema-oud .kamp-intro,
body.thema-oud .kamp-programma,
body.thema-oud .kamp-logeren,
body.thema-oud .kamp-eigenpony,
body.thema-oud .kamp-meenemen,
body.thema-oud .kamp-tijden,
body.thema-oud .kamp-tarieven,
body.thema-oud .kamp-schema { background: #1a2e1a !important; }

body.thema-oud .bongerd-feit,
body.thema-oud .bongerd-dienst,
body.thema-oud .bongerd-contact-kaart,
body.thema-oud .kh-item,
body.thema-oud .kamp-dag,
body.thema-oud .kamp-logeer-item,
body.thema-oud .kamp-pony-optie,
body.thema-oud .kamp-mee-item,
body.thema-oud .kamp-tijd-item,
body.thema-oud .kamp-prijs-kaart,
body.thema-oud .kamp-week { background: #2f4a2f !important; border-color: rgba(201,168,76,0.25) !important; }

body.thema-oud .bongerd-feit h3,
body.thema-oud .bongerd-dienst h3,
body.thema-oud .kamp-dag-naam,
body.thema-oud .kamp-logeer-item h3,
body.thema-oud .kamp-prijs-kaart h3,
body.thema-oud .kpk-prijs,
body.thema-oud .kw-label { color: #c9a84c !important; }

body.thema-oud .kamp-aanmeld-blok { background: #2f4a2f !important; border-color: rgba(201,168,76,0.3) !important; }
body.thema-oud .kamp-aanmeld-blok h3 { color: #c9a84c !important; }

/* ===================================================================
   THEMA TOGGLE KNOP
   =================================================================== */
/* ── Vaste toggle rechtsboven ── */
.thema-toggle {
  position: fixed;
  top: 0.8rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(15, 8, 28, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 0.3rem 0.5rem 0.3rem 0.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.13);
}

.thema-huidig-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-right: 0.25rem;
}

.toggle-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.3;
}

.toggle-btn:hover  { background: rgba(255,255,255,0.15); color: white; transform: scale(1.05); }
.toggle-btn.actief { background: white; color: #6c2fa0; border-color: white; }

body.thema-oud .thema-toggle {
  background: rgba(8, 16, 8, 0.78);
  border-color: rgba(201,168,76,0.22);
}

body.thema-oud .thema-huidig-label     { color: rgba(201,168,76,0.6); }
body.thema-oud .toggle-btn             { border-color: rgba(201,168,76,0.28); color: rgba(212,207,197,0.75); }
body.thema-oud .toggle-btn:hover       { background: rgba(201,168,76,0.16); color: #c9a84c; }
body.thema-oud .toggle-btn.actief      { background: #c9a84c; color: #1a2e1a; border-color: #c9a84c; }

/* ── Welkomst-splash ── */
#thema-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 5, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: splash-in 0.35s ease;
}

@keyframes splash-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#thema-splash.splash-weg {
  animation: splash-uit 0.35s ease forwards;
}

@keyframes splash-uit {
  to { opacity: 0; transform: scale(1.04); }
}

.splash-box {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: splash-box-in 0.4s 0.1s both cubic-bezier(.18,.89,.32,1.28);
}

@keyframes splash-box-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.splash-paard { font-size: 3.5rem; margin-bottom: 0.5rem; }

.splash-titel {
  font-size: 1.5rem;
  color: #6c2fa0;
  margin-bottom: 0.4rem;
  text-align: center;
}

.splash-sub {
  color: #777;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.splash-keuze {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.splash-btn {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  border: 3px solid transparent;
  border-radius: 18px;
  padding: 1.2rem 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.splash-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }

.splash-jong {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  border-color: #ce93d8;
}

.splash-oud {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-color: #81c784;
}

.splash-btn-icoon { font-size: 2.2rem; }
.splash-btn strong { font-size: 1.1rem; color: #333; }
.splash-btn small  { font-size: 0.78rem; color: #777; line-height: 1.4; }

.splash-wissel {
  font-size: 0.78rem;
  color: #aaa;
  margin: 0;
}

/* ===================================================================
   OUD THEMA — AURUM DONKERGROEN / GOUD
   =================================================================== */

/* ── Basis ──────────────────────────────────────────────────── */
body.thema-oud {
  background: #1a2e1a;
  color: #d4cfc5;
  font-family: 'Georgia', 'Times New Roman', serif;
}

body.thema-oud h1,
body.thema-oud h3 { color: #f5f0e8; }

body.thema-oud h2 { color: #c9a84c; }

body.thema-oud p,
body.thema-oud li { color: #d4cfc5; }

body.thema-oud .sectie-intro { color: #a8a09a; }

/* ── Header / nav ───────────────────────────────────────────── */
body.thema-oud header {
  background: linear-gradient(135deg, #1a2e1a, #243624) !important;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

body.thema-oud nav a {
  background: rgba(201,168,76,0.1) !important;
  color: #d4cfc5 !important;
}

body.thema-oud nav a:hover {
  background: rgba(201,168,76,0.22) !important;
  color: #c9a84c !important;
}

body.thema-oud .actief-nav {
  background: rgba(201,168,76,0.28) !important;
  color: #c9a84c !important;
}

body.thema-oud .nav-shop,
body.thema-oud .nav-boek {
  background: rgba(201,168,76,0.2) !important;
  color: #c9a84c !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  animation: none !important;
  box-shadow: none !important;
}

body.thema-oud .logo { color: #f5f0e8 !important; text-shadow: none; }

/* ── Hero ───────────────────────────────────────────────────── */
body.thema-oud .hero {
  background: linear-gradient(135deg, #1a2e1a 0%, #243624 50%, #1a2e1a 100%) !important;
}

body.thema-oud .hero-content h1 { color: #f5f0e8 !important; text-shadow: none; }
body.thema-oud .hero-content p  { color: #d4cfc5 !important; }

body.thema-oud .btn {
  background: linear-gradient(135deg, #c9a84c, #a8832e) !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4) !important;
  color: #1a2e1a !important;
}

body.thema-oud .btn:hover {
  box-shadow: 0 7px 22px rgba(201,168,76,0.55) !important;
}

/* ── Sections (general) ─────────────────────────────────────── */
body.thema-oud section                { background: #1a2e1a !important; }
body.thema-oud .home-menu             { background: #1a2e1a !important; }
body.thema-oud .feiten                { background: #1a2e1a !important; }
body.thema-oud .rassen                { background: #1a2e1a !important; }
body.thema-oud .kleuren               { background: #243624 !important; }
body.thema-oud .eten                  { background: #1a2e1a !important; }
body.thema-oud .verzorging            { background: #1a2e1a !important; }
body.thema-oud .borstels              { background: #1a2e1a !important; }
body.thema-oud .zadelen               { background: #1a2e1a !important; }
body.thema-oud .lessen                { background: #1a2e1a !important; }
body.thema-oud .wedstrijd             { background: #1a2e1a !important; }
body.thema-oud .parcours              { background: #1a2e1a !important; }
body.thema-oud .dierenarts            { background: #1a2e1a !important; }
body.thema-oud .quiz                  { background: #1a2e1a !important; }
body.thema-oud .webshop               { background: #1a2e1a !important; }

/* ── Cards / feiten / rassen ────────────────────────────────── */
body.thema-oud .home-kaart {
  background: #2f4a2f !important;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
}

body.thema-oud .home-kaart h3 { color: #c9a84c !important; }
body.thema-oud .home-kaart p  { color: #a8a09a !important; }
body.thema-oud .home-shop h3,
body.thema-oud .home-shop p,
body.thema-oud .home-boek h3,
body.thema-oud .home-boek p   { color: #d4cfc5 !important; }

body.thema-oud .feit-kaart,
body.thema-oud .feit-kaart.paars,
body.thema-oud .feit-kaart.roze,
body.thema-oud .feit-kaart.groen,
body.thema-oud .feit-kaart.geel,
body.thema-oud .feit-kaart.blauw,
body.thema-oud .feit-kaart.oranje {
  background: #2f4a2f !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
}

body.thema-oud .feit-kaart h3 { color: #c9a84c !important; }

body.thema-oud .ras-kaart {
  background: #2f4a2f !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25) !important;
}

body.thema-oud .ras-kaart::before {
  background: linear-gradient(90deg, #c9a84c, #8a6b20) !important;
}

body.thema-oud .ras-kaart h3 { color: #c9a84c !important; }

body.thema-oud .kleur-item { border: 1px solid rgba(201,168,76,0.2) !important; }

/* ── Borstel / zadel / eten / verzorging cards ───────────────── */
body.thema-oud .borstel-kaart,
body.thema-oud .z-stap,
body.thema-oud .dier-kaart,
body.thema-oud .eten-kaart,
body.thema-oud .kleding-item,
body.thema-oud .wedstrijd-stap,
body.thema-oud .les,
body.thema-oud .les-stap {
  background: #2f4a2f !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  color: #d4cfc5 !important;
}

body.thema-oud .z-stap h3,
body.thema-oud .borstel-kaart h3,
body.thema-oud .eten-kaart h3 { color: #c9a84c !important; }

body.thema-oud .z-nummer      { background: #c9a84c !important; color: #1a2e1a !important; }
body.thema-oud .stap-nr       { background: #c9a84c !important; color: #1a2e1a !important; }

/* ── Webshop ────────────────────────────────────────────────── */
body.thema-oud .product-kaart {
  background: #2f4a2f !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
}

body.thema-oud .product-kaart h3        { color: #c9a84c !important; }
body.thema-oud .product-beschrijving    { color: #d4cfc5 !important; }
body.thema-oud .product-prijs           { color: #c9a84c !important; }
body.thema-oud .winkelmandje-groot      { background: #2f4a2f !important; border-color: rgba(201,168,76,0.25) !important; }

body.thema-oud .btn-toevoegen,
body.thema-oud .btn-bestellen {
  background: linear-gradient(135deg, #c9a84c, #a8832e) !important;
  color: #1a2e1a !important;
}

/* ── Quiz ───────────────────────────────────────────────────── */
body.thema-oud .quiz-vraag,
body.thema-oud .quiz-resultaat         { background: #2f4a2f !important; }
body.thema-oud .quiz-vraag h3          { color: #c9a84c !important; }
body.thema-oud .quiz-resultaat h3      { color: #c9a84c !important; }
body.thema-oud .quiz-resultaat p       { color: #d4cfc5 !important; }
body.thema-oud .antwoord-btn {
  background: #243624 !important;
  color: #d4cfc5 !important;
  border-color: rgba(201,168,76,0.2) !important;
}
body.thema-oud .antwoord-btn:hover     { background: rgba(201,168,76,0.18) !important; color: #f5f0e8 !important; border-color: #c9a84c !important; }
body.thema-oud .antwoord-btn.goed      { background: rgba(46,125,50,0.4) !important;   color: #c8e6c9 !important; border-color: #66bb6a !important; }
body.thema-oud .antwoord-btn.fout      { background: rgba(183,28,28,0.35) !important;  color: #ffcdd2 !important; border-color: #ef5350 !important; }

/* ── Parcours tabs ──────────────────────────────────────────── */
body.thema-oud .tab-btn               { background: #2f4a2f !important; color: #d4cfc5 !important; border-color: rgba(201,168,76,0.2) !important; }
body.thema-oud .tab-btn.actief        { background: #c9a84c !important; color: #1a2e1a !important; }
body.thema-oud .tab-inhoud            { background: #243624 !important; border-color: rgba(201,168,76,0.15) !important; }

/* ── Lessen tijdlijn ────────────────────────────────────────── */
body.thema-oud .les-lijn::before      { background: #c9a84c !important; }
body.thema-oud .les-icoon             { background: #c9a84c !important; color: #1a2e1a !important; }

/* ── Dierenarts ─────────────────────────────────────────────── */
body.thema-oud .dierenarts-header     { background: linear-gradient(135deg, #1a2e1a, #243624) !important; }

/* ── Sectie headers met kleur ───────────────────────────────── */
body.thema-oud .sectie-header,
body.thema-oud .shop-header,
body.thema-oud .wedstrijd-header      { background: linear-gradient(135deg, #1a2e1a, #2f4a2f) !important; }

/* ── Ras labels ─────────────────────────────────────────────── */
body.thema-oud .ras-label { opacity: 0.85; }

/* ── Footer ─────────────────────────────────────────────────── */
body.thema-oud footer {
  background: #0f1f0f !important;
  border-top: 1px solid rgba(201,168,76,0.2);
}

body.thema-oud .footer-paarden { animation: none; }

/* ── Boek banner (niet aanpassen — blijft donker paars) ────── */
body.thema-oud .boek-banner { background: linear-gradient(135deg, #1a0a35, #3d1a6e, #1a0a35) !important; }
