/* Tennis & Padel Academie — site stylesheet */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --color-primary: #FB0030;
  --color-primary-dark: #d9002a;
  --color-secondary1: #028090;
  --color-secondary2: #00A896;
  --color-secondary3: #29293D;
  --color-secondary4: #F2F3F7;
  --color-white: #ffffff;
  --color-text: #1e1e1e;
  --color-keiheuvel: #00BF63;
  --color-field: #0292B7;
  --color-paal: #F26A1B;
  --color-regio: #7F00FF;
  --color-footer-bg: #E9ECF1;
  --font-heading: Tahoma, Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-main: var(--font-body);
  --max-width: 1200px;
  --shadow: 0px 0px 25px 0px rgba(170,170,170,0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; color: #444; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--tint { background: var(--color-secondary4); }
.section--gray { background: #E1E1E1; }

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.9em;
}

/* Buttons — square corners, site-wide */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { opacity: 0.88; }

.btn--primary { background: var(--color-primary); color: var(--color-white); }
.btn--primary:hover { background: var(--color-primary-dark); opacity: 1; }

.btn--outline-dark { background: transparent; border-color: var(--color-text); color: var(--color-text); }
.btn--outline-dark:hover { background: var(--color-text); color: var(--color-white); }

.btn--outline-white { background: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn--outline-white:hover { background: var(--color-white); color: var(--color-text); }

.btn--teal { background: var(--color-secondary1); color: var(--color-white); }
.btn--teal:hover { background: #026877; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 12px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 60px; width: auto; }

.nav { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }

.nav a {
  position: relative;
  padding: 10px 9px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #282828;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform .15s ease;
}
.nav a:hover { color: var(--color-primary); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--color-primary); font-weight: 600; }
.nav a.is-active::after { transform: scaleX(1); }
.nav a.nav-cta::after { display: none; }

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 12px 20px !important;
  font-weight: 400 !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--color-primary-dark); }

/* Cart icon + drawer */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-text);
  padding: 8px 10px;
  margin-left: 4px;
}
.cart-icon-btn .cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  display: none;
}
.cart-overlay.is-open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  z-index: 2000;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { right: 0; }
.cart-drawer__header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__header h3 { margin: 0; font-weight: 700; }
.cart-drawer__close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--color-text); line-height: 1; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-drawer__empty { color: #777; padding: 30px 0; text-align: center; }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cart-item__name { font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.cart-item__meta { font-size: 0.82rem; color: #777; }
.cart-item__price { font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.cart-item__remove { background: none; border: none; color: #999; font-size: 0.8rem; cursor: pointer; text-decoration: underline; padding: 4px 0 0; }
.cart-drawer__footer { padding: 20px 24px 26px; border-top: 1px solid rgba(0,0,0,0.08); }
.cart-drawer__total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.15rem; margin-bottom: 16px; }

/* Full cart / checkout page */
.cart-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .cart-page-layout { grid-template-columns: 1fr; } }
.cart-page-items { background: var(--color-white); border: 1px solid rgba(0,0,0,0.1); }
.cart-page-item { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.08); flex-wrap: wrap; }
.cart-page-item:last-child { border-bottom: none; }
.cart-page-item__info { flex: 1; min-width: 180px; }
.cart-page-item__name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.cart-page-item__meta { font-size: 0.85rem; color: #666; }
.cart-page-item__actions { display: flex; align-items: center; gap: 20px; }
.cart-page-item__qty { display: inline-flex; align-items: center; border: 1px solid rgba(0,0,0,0.2); }
.cart-page-item__qty button { width: 32px; height: 32px; background: var(--color-secondary4); border: none; font-size: 1rem; cursor: pointer; }
.cart-page-item__qty button:hover { background: var(--color-primary); color: #fff; }
.cart-page-item__qty span { display: inline-block; width: 32px; text-align: center; font-size: 0.92rem; }
.cart-page-item__price { font-weight: 700; color: var(--color-primary); min-width: 80px; text-align: right; }
.cart-page-item__remove { background: none; border: none; color: #aaa; font-size: 0.82rem; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 5px; }
.cart-page-item__remove:hover { color: var(--color-primary); }
.cart-page-items { box-shadow: var(--shadow); }
.cart-page-empty { text-align: center; padding: 70px 20px; background: var(--color-white); box-shadow: var(--shadow); }
.cart-page-empty__icon { font-size: 2.6rem; color: var(--color-primary); margin-bottom: 18px; }
.cart-summary {
  background: var(--color-white);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--color-primary);
  padding: 28px 26px;
  position: sticky;
  top: 20px;
}
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 18px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 10px; color: #444; }
.cart-summary__total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; color: var(--color-primary); border-top: 1px solid rgba(0,0,0,0.15); padding-top: 14px; margin-top: 14px; }
.cart-summary__trust { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #888; margin-top: 14px; }

/* Shop */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.shop-card { background: var(--color-white); box-shadow: var(--shadow); display: flex; flex-direction: column; border-top: 5px solid var(--color-primary); }
.shop-card--keiheuvel { border-top-color: var(--color-keiheuvel); }
.shop-card--field { border-top-color: var(--color-field); }
.shop-card--paal { border-top-color: var(--color-paal); }
.shop-card__media { height: 200px; overflow: hidden; }
.shop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.shop-card:hover .shop-card__media img { transform: scale(1.05); }
.shop-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.shop-card__body h3 { margin-bottom: 8px; }
.shop-card__body p { font-size: 0.92rem; flex: 1; }

.shop-card--toggle { cursor: pointer; }
.shop-card__toggle-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.shop-card__toggle-cta i { transition: transform .25s ease; }
.shop-card--toggle.is-open .shop-card__toggle-cta i { transform: rotate(180deg); }
.shop-card__price { color: var(--color-primary); font-weight: 700; font-size: 1.05rem; margin: 8px 0 16px; }

/* Trust row under shop intro */
.shop-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.shop-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary3);
}
.shop-trust-row i { color: var(--color-primary); font-size: 1rem; }

/* Numbered step badge for "how it works" cards */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.shop-product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.shop-product__media { box-shadow: var(--shadow); overflow: hidden; }
.shop-product__media img { width: 100%; display: block; }
.shop-product__price { font-size: 1.9rem; font-weight: 700; color: var(--color-primary); margin: 6px 0 20px; }
.shop-product__field { margin-bottom: 20px; }
.shop-product__field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.shop-product__field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(0,0,0,0.2);
  font-family: var(--font-main);
  font-size: 0.96rem;
  background: white;
}
.shop-product__qty { display: inline-flex; align-items: center; border: 1px solid rgba(0,0,0,0.2); }
.shop-product__qty button { width: 42px; height: 42px; background: var(--color-secondary4); border: none; font-size: 1.2rem; cursor: pointer; }
.shop-product__qty button:hover { background: var(--color-primary); color: #fff; }
.shop-product__qty input { width: 52px; height: 42px; text-align: center; border: none; border-left: 1px solid rgba(0,0,0,0.2); border-right: 1px solid rgba(0,0,0,0.2); font-size: 1rem; font-family: var(--font-main); }
.shop-product__row { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }

/* Individual lesson/product cards (unbundled shop listing) */
.lesson-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lesson-grid[hidden] { display: none; }
[data-season] { display: none; }
.lesson-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.lesson-card__group {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.lesson-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; flex: 1; }
.lesson-card__price { font-weight: 700; color: var(--color-primary); font-size: 1.1rem; margin-bottom: 14px; }
.lesson-card form { margin-top: auto; }
h2.lesson-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 48px 0 28px;
}
h3.lesson-section-title { margin: 40px 0 22px; }

/* Regiotraining shop section — purple instead of the default red */
.lesson-card--regio .lesson-card__group,
.lesson-card--regio .lesson-card__price { color: var(--color-regio); }
.lesson-card--regio .btn--primary { background: var(--color-regio); }
.lesson-card--regio .btn--primary:hover { background: #6600cc; }

/* Per-club shop articles & buttons — each club's own brand color instead of red */
.lesson-card--keiheuvel .lesson-card__group,
.lesson-card--keiheuvel .lesson-card__price { color: var(--color-keiheuvel); }
.lesson-card--keiheuvel .btn--primary { background: var(--color-keiheuvel); }
.lesson-card--keiheuvel .btn--primary:hover { background: #009951; }

.lesson-card--field .lesson-card__group,
.lesson-card--field .lesson-card__price { color: var(--color-field); }
.lesson-card--field .btn--primary { background: var(--color-field); }
.lesson-card--field .btn--primary:hover { background: #02718f; }

.lesson-card--paal .lesson-card__group,
.lesson-card--paal .lesson-card__price { color: var(--color-paal); }
.lesson-card--paal .btn--primary { background: var(--color-paal); }
.lesson-card--paal .btn--primary:hover { background: #d1580f; }

/* tpa-shop.html club teaser cards — price & button in the club's color too */
.shop-card--keiheuvel .shop-card__price { color: var(--color-keiheuvel); }
.shop-card--keiheuvel .btn--primary { background: var(--color-keiheuvel); }
.shop-card--keiheuvel .btn--primary:hover { background: #009951; }

.shop-card--field .shop-card__price { color: var(--color-field); }
.shop-card--field .btn--primary { background: var(--color-field); }
.shop-card--field .btn--primary:hover { background: #02718f; }

.shop-card--paal .shop-card__price { color: var(--color-paal); }
.shop-card--paal .btn--primary { background: var(--color-paal); }
.shop-card--paal .btn--primary:hover { background: #d1580f; }

/* Cross-sell "other clubs" cards on each shop page — heading in the linked club's color */
.info-card--shop.info-card--keiheuvel h3 { color: var(--color-keiheuvel); }
.info-card--shop.info-card--field h3 { color: var(--color-field); }
.info-card--shop.info-card--paal h3 { color: var(--color-paal); }

/* Post-checkout registration forms */
.reg-form {
  border: 1px solid rgba(0,0,0,0.12);
  padding: 30px 32px;
  margin-bottom: 28px;
  background: var(--color-white);
}
.reg-form__legend {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 6px;
  font-family: var(--font-heading);
}
.reg-form__legend strong { display: block; font-size: 1.05rem; }
.reg-form__variant { display: block; font-size: 0.88rem; color: #666; margin-top: 2px; }
.reg-form__index {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reg-form__fixed-schedule {
  background: var(--color-secondary4);
  border-left: 4px solid var(--color-primary);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #333;
}

/* Schedule-choice tiles — fixed/choice/multichoice availability */
.schedule-tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.time-tile {
  position: relative;
  display: block;
  cursor: pointer;
}
.time-tile input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.time-tile span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  text-align: center;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.time-tile input:checked + span {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.time-tile input:focus-visible + span { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.time-tile:hover span { border-color: var(--color-primary); }
.time-tile--fixed { cursor: default; }
.time-tile--fixed span {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  cursor: default;
  min-width: 200px;
}
.time-tile--color span { padding: 10px 20px; }
.time-tile__dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; flex-shrink: 0; }

/* Weekly availability grid — 7 days x 4 time slots */
.week-avail-scroll { overflow-x: auto; }
.week-avail-table { border-collapse: separate; border-spacing: 6px; margin: 0 auto; }
.week-avail-table th { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #666; padding-bottom: 6px; white-space: nowrap; }
.week-avail-table th:first-child { text-align: left; }
.week-avail-table tbody th { text-align: left; font-size: 0.85rem; font-weight: 600; text-transform: none; color: var(--color-text); padding-right: 10px; white-space: nowrap; }
.week-avail-table td { text-align: center; }
.time-tile--sm span { min-width: 44px; min-height: 34px; padding: 0; border-radius: 6px; }
.field.reg-form__consent {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 18px;
  margin-top: 4px;
}
.field.reg-form__consent label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 400;
}
.field.reg-form__consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
}
.reg-form__avail-error { font-size: 0.85rem; color: var(--color-primary); margin: 4px 0 0; }

.reg-empty-state, .reg-done-state {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-secondary4);
}
.reg-done-state .fa-circle-check { color: var(--color-keiheuvel); font-size: 2.6rem; margin-bottom: 16px; }

/* Admin login + dashboard */
.admin-login-box {
  max-width: 420px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 40px 36px;
}
.admin-login-box .field { margin-bottom: 18px; }
.admin-note {
  background: var(--color-secondary4);
  border-left: 4px solid var(--color-primary);
  padding: 14px 18px;
  font-size: 0.86rem;
  color: #444;
  margin-bottom: 24px;
}
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.admin-toolbar__count { font-size: 0.92rem; color: #555; }
.admin-section-box {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 20px 22px;
  margin-bottom: 28px;
}
[data-season-switch].is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
[data-club-tab="GT Keiheuvel"] { border-color: var(--color-keiheuvel); color: var(--color-keiheuvel); }
[data-club-tab="GT Keiheuvel"]:hover, [data-club-tab="GT Keiheuvel"].is-active { background: var(--color-keiheuvel); color: #fff; border-color: var(--color-keiheuvel); }
[data-club-tab="TPC Field"] { border-color: var(--color-field); color: var(--color-field); }
[data-club-tab="TPC Field"]:hover, [data-club-tab="TPC Field"].is-active { background: var(--color-field); color: #fff; border-color: var(--color-field); }
[data-club-tab="KTP Paal"] { border-color: var(--color-paal); color: var(--color-paal); }
[data-club-tab="KTP Paal"]:hover, [data-club-tab="KTP Paal"].is-active { background: var(--color-paal); color: #fff; border-color: var(--color-paal); }
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--color-white);
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; white-space: nowrap; }
.admin-table th {
  background: var(--color-secondary3);
  color: #fff;
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  position: sticky;
  top: 0;
}
.admin-table td { padding: 12px 14px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.admin-table tr:hover td { background: var(--color-secondary4); }
.admin-empty { text-align: center; padding: 60px 20px; color: #777; }

.payment-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.payment-badge--paid { background: rgba(0,191,99,0.12); color: #00893f; }
.payment-badge--open { background: rgba(0,0,0,0.06); color: #666; }
.payment-badge--pending { background: rgba(224,168,0,0.14); color: #a67700; }
.payment-badge--failed { background: rgba(251,0,48,0.1); color: var(--color-primary); }

/* Nav dropdown — "Onze clubs" */
.nav-dropdown { position: relative; }
.nav-dropdown__arrow { font-size: 0.65em; margin-left: 5px; transition: transform .15s ease; }
.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown.is-open .nav-dropdown__arrow { transform: rotate(180deg); }
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: var(--color-white);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  display: block;
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: #282828;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover { color: var(--color-primary); background: var(--color-secondary4); }
.nav-dropdown__menu a.is-active { color: var(--color-primary); font-weight: 700; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-text);
}

/* Hero — light section with a contained parallax-style photo, not edge to edge */
.hero {
  position: relative;
  background: var(--color-secondary4);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 67%;
  max-width: 960px;
  height: calc(100% + 90px);
  overflow: hidden;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 126, 0.15);
}
.hero__text {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  max-width: 610px;
}
.hero__text p { font-size: 1.15rem; color: #333; max-width: 420px; }

.page-hero {
  background: var(--color-secondary4);
  padding: 70px 0 56px;
  text-align: center;
}
.page-hero p { max-width: 560px; margin: 0 auto; color: #333; }

/* Parallax banner — photo drifts on scroll, like the source site's jarallax effect */
.parallax-hero {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--color-secondary4);
}
.parallax-hero__img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
  transform: translateY(-50%);
  will-change: transform;
}
.parallax-hero__title {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.parallax-hero--tall { height: 520px; }
[data-season-label] { margin-right: 0.3em; }
.parallax-hero__club {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.parallax-hero__club-location {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.35em;
}
.parallax-hero__club h1 {
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.parallax-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.parallax-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}
.parallax-hero__content h1 { color: #fff; font-weight: 700; margin-bottom: 0.3em; }
.parallax-hero__content p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 460px; }

/* Plain banner — contained photo (fixed 1280px, matches source), with bold white title overlay */
.page-banner { background: var(--color-white); position: relative; }
.page-banner__inner {
  max-width: 1280px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.page-banner__inner img { width: 100%; height: 100%; object-fit: cover; }
.page-banner__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1220px;
  padding: 0 24px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  text-align: left;
  margin: 0;
}

/* Bold heading with a short red rule underneath — used for main section titles */
.heading-rule {
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 22px;
}
.heading-rule::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 2px;
  background: var(--color-primary);
}
.heading-bold { font-weight: 700; }

/* Stage/camp cards — grey box with bold red title (distinct from .info-card used elsewhere) */
.stage-card {
  background: #E1E1E1;
  padding: 30px;
}
.stage-card h3 { color: var(--color-primary); font-weight: 700; }
.stage-card p { color: #000; }
/* On a grey section background, keep the card white so it stays visible */
.section--gray .stage-card { background: var(--color-white); }

/* Full-width ambiance photo band */
.ambiance-photo { width: 100%; height: 380px; overflow: hidden; }
.ambiance-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .ambiance-photo { height: 220px; } }

/* Club cards */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.club-card {
  background: var(--color-secondary4);
  box-shadow: var(--shadow);
  padding: 30px 37px 34px;
}
.club-card--keiheuvel { background: var(--color-keiheuvel); }
.club-card--field { background: var(--color-field); }
.club-card--paal { background: var(--color-paal); }
.club-card__media { height: 220px; overflow: hidden; margin-bottom: 20px; }
.club-card__media img { width: 100%; height: 100%; object-fit: cover; }
.club-card__body .tag {
  font-size: 0.85rem;
  color: #444;
  font-weight: 400;
}
.club-card__body h3 { margin: 4px 0 10px; color: #444; font-weight: 400; font-size: 1.4rem; }
.club-card__body p { display: none; }
.club-card__body a { font-weight: 700; color: #303030; }
.club-card__body a:hover { text-decoration: underline; }

/* Feature grid — red checkmarks */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature { text-align: left; padding: 4px; }
.feature__icon {
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.feature__icon i { display: block; }
.features--regio .feature__icon { color: var(--color-regio); }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; font-weight: 600; }
.feature p { font-size: 0.92rem; margin: 0; }

/* Two column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__media { overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Club-colored photo panel — color revealed as a frame around the inset photo */
.split__media--club {
  padding: 60px 24px;
  box-shadow: none;
  overflow: hidden;
}
.split__media--club img { height: 100%; }
.split__media--keiheuvel { background: var(--color-keiheuvel); }
.split__media--field { background: var(--color-field); }
.split__media--paal { background: var(--color-paal); }
.split__media--regio { background: var(--color-regio); }

/* Trainer directory grid */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trainer-card { background: var(--color-white); }
.trainer-card__photo { height: 180px; overflow: hidden; margin-bottom: 14px; }
.trainer-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trainer-card h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: 4px; }
.trainer-card p { font-size: 0.85rem; color: #666; margin: 0; }

.start2coach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.start2coach-list span {
  background: var(--color-secondary4);
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.trainer-rank-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin: 32px 0 12px;
}
.trainer-rank-title:first-of-type { margin-top: 0; }

/* Cards generic */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 30px;
}
.info-card h3 { color: var(--color-secondary1); }
.info-card--shop h3 { color: var(--color-primary); }
.info-card__icon { font-size: 1.8rem; color: var(--color-primary); margin-bottom: 14px; }

/* Regiotraining voorwaarden page — purple theme scope */
.regio-theme { --color-primary: var(--color-regio); --color-primary-dark: #6600cc; }

/* Escalating consequence steps */
.escalation-steps { display: flex; align-items: stretch; gap: 0; }
.escalation-step {
  flex: 1;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
}
.escalation-step__num {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  background: var(--color-primary);
  color: #fff;
}
.escalation-step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.escalation-step p { font-size: 0.88rem; margin: 0; }
.escalation-step--1 { background: var(--color-secondary4); }
.escalation-step--2 { background: rgba(127,0,255,0.1); }
.escalation-step--3 { background: var(--color-primary); color: #fff; }
.escalation-step--3 p { color: rgba(255,255,255,0.85); }
.escalation-step--3 .escalation-step__num { background: #fff; color: var(--color-primary); }
.escalation-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.25);
  font-size: 1.3rem;
  padding: 0 14px;
}
@media (max-width: 768px) {
  .escalation-steps { flex-direction: column; }
  .escalation-arrow { transform: rotate(90deg); padding: 8px 0; }
}

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 6px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  padding: 16px 34px 16px 0;
  position: relative;
  color: var(--color-secondary3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 34px 18px 0; color: #444; }
.faq-group-title { margin: 44px 0 18px; }
.faq-group-title:first-child { margin-top: 0; }

/* Legal / policy content pages */
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-secondary3);
  margin: 34px 0 10px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #444; line-height: 1.65; }
.legal-content p { margin-bottom: 12px; }
.legal-content ul { margin: 0 0 12px; padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content .legal-meta { color: #777; font-size: 0.9rem; margin-bottom: 24px; }

/* Club teaser strip (colored per club, no photo) */
.club-teaser-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.club-teaser {
  padding: 30px 34px 34px;
  display: flex;
  flex-direction: column;
}
.club-teaser .club-card__media { margin-bottom: 18px; }
.club-teaser h3 { color: #1e1e1e; font-weight: 400; font-size: 1.4rem; margin-bottom: 14px; }
.club-teaser a { color: #1e1e1e; font-weight: 700; }
.club-teaser a:hover { text-decoration: underline; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: left;
  background: var(--color-white);
}
.team-card__photo { width: 100%; height: 220px; overflow: hidden; margin-bottom: 18px; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h3 { margin-bottom: 2px; font-weight: 400; color: var(--color-primary); }
.team-card .role { color: #000; font-weight: 400; font-size: 0.9rem; margin-bottom: 8px; }
.team-card .skills { font-size: 0.85rem; color: #666; }

/* Seasons */
.season-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.season-card {
  padding: 28px;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--color-primary);
}

/* Trainer application form + contact sidebar */
.trainer-form-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.sidebar-panel {
  background: var(--color-secondary4);
  padding: 34px 32px;
}
.sidebar-panel p { font-size: 0.94rem; }
.sidebar-panel a { color: var(--color-primary); font-weight: 600; }
.sidebar-panel a:hover { color: var(--color-primary-dark); text-decoration: underline; }
.sidebar-panel__label { font-weight: 600; margin-top: 1.4em; }

/* Form */
.form-section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 26px;
}
.form-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.form-section__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.form-section__hint { font-size: 0.85rem; color: #777; margin: -8px 0 14px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.2);
  font-family: var(--font-main);
  font-size: 0.96rem;
  background: white;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); }
.checkbox-row { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 8px; align-items: flex-start; }
.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.checkbox-row label input { flex-shrink: 0; }

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card { background: var(--color-secondary4); padding: 28px; }
.contact-card h3 { color: var(--color-text); margin-bottom: 4px; }
.contact-card .role { color: var(--color-primary); font-weight: 600; font-size: 0.85rem; margin-bottom: 14px; }
.contact-card a { display: block; font-size: 0.92rem; color: var(--color-primary); margin-bottom: 4px; }
.contact-card a:hover { color: var(--color-primary-dark); }

.contact-stack { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 4px; }
.contact-stack .contact-card { background: var(--color-white); border: 1px solid rgba(0,0,0,0.08); padding: 20px 22px; }

/* CTA band */
.cta-band {
  background: var(--color-primary);
  color: white;
  padding: 56px;
  text-align: center;
}
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 500px; margin: 0 auto 1.6em; }

/* Footer — light blue-grey, matches source */
.site-footer {
  background: var(--color-footer-bg);
  color: #000;
  padding: 60px 0 0;
}
.footer-bg-accent {
  background: var(--color-primary);
  padding: 30px 34px;
  margin-bottom: 24px;
}
.footer-bg-accent .footer-logo img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-bg-accent__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 14px;
}
.footer-bg-accent p { color: rgba(255,255,255,0.9); }
.footer-bg-accent .socials { margin-top: 20px; }
.footer-bg-accent .socials a { background: rgba(255,255,255,0.15); color: #fff; }
.footer-bg-accent .socials a:hover { background: #fff; color: var(--color-primary); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--color-primary);
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: #222; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--color-primary); }
.footer-about p { color: #333; font-size: 0.92rem; max-width: 280px; }
.footer-logo img { height: 60px; margin-bottom: 14px; }
.powered-by {
  font-size: 0.76rem;
  color: #999;
}
.powered-by a { color: #999; text-decoration: underline; font-weight: 600; }
.powered-by a:hover { color: var(--color-primary); }

.footer-admin-link {
  font-size: 0.76rem;
  color: #bbb;
  text-decoration: none;
}
.footer-admin-link:hover { color: #999; text-decoration: underline; }

.footer-bottom {
  padding: 20px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #222;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-secondary4);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
}
.socials a:hover { background: var(--color-primary); color: white; }
.socials a[aria-label="Facebook"]:hover,
.footer-bg-accent .socials a[aria-label="Facebook"]:hover {
  background: #1877F2;
  color: #fff;
}
.socials a[aria-label="Instagram"]:hover,
.footer-bg-accent .socials a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* Scroll reveal */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left, .slide-in-right {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}
.slide-in-left { transform: translateX(-80px); }
.slide-in-right { transform: translateX(80px); }
.slide-in-left.is-visible, .slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-up-stagger {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle hover lift on card-style components */
.club-card, .stage-card, .info-card, .lesson-card, .shop-card, .season-card,
.team-card, .trainer-card, .contact-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.club-card:hover, .stage-card:hover, .info-card:hover, .lesson-card:hover,
.shop-card:hover, .season-card:hover, .team-card:hover, .trainer-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Photo carousel */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 25%;
  padding: 0 10px;
}
.carousel__slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-text);
  z-index: 3;
}
.carousel__btn:hover { background: var(--color-primary); color: #fff; }
.carousel__btn--prev { left: -10px; }
.carousel__btn--next { right: -10px; }
@media (max-width: 900px) {
  .carousel__slide { flex-basis: 50%; }
}
@media (max-width: 560px) {
  .carousel__slide { flex-basis: 100%; }
}

/* Modal popup (e.g. "Voorwaarden Regiotraining") */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 30, 0.6);
  z-index: 1000;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-overlay.is-open { display: block; }
.modal-box {
  background: var(--color-white);
  max-width: 720px;
  margin: 0 auto;
  padding: 44px;
  position: relative;
}
.modal-box h2 { font-size: 1.4rem; }
.modal-box h3 { color: var(--color-primary); margin-top: 1.6em; }
.modal-box ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.modal-box ul li { margin-bottom: 8px; color: #333; }
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.modal-close:hover { color: var(--color-primary); }

/* Lesson-card click-for-info modal */
.lesson-card--clickable { cursor: pointer; }
.lesson-card__info-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #999;
  margin: -4px 0 12px;
}
.lesson-card__info-hint i { font-size: 0.72rem; }
#lesson-info-modal .modal-box { max-width: 520px; padding: 40px; }
#lesson-info-modal .lesson-card__price { font-size: 1.25rem; margin-bottom: 16px; }
#lesson-info-modal p { font-size: 0.92rem; color: #555; margin-bottom: 14px; }
#lesson-info-modal [data-lesson-modal-cta] { width: 100%; justify-content: center; margin-top: 6px; }

/* Responsive */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .site-header.is-open .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .hero__grid, .clubs-grid, .features, .split, .card-row, .team-grid, .season-row, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero__media { min-height: 280px; order: -1; }
  .hero__media img { position: static; width: 100%; height: 280px; }
  .hero__text { padding: 40px 0; text-align: center; }
  .split { gap: 32px; }
  .split__media { order: -1; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }

  .nav-dropdown__menu {
    display: none;
    position: static;
    box-shadow: none;
    padding: 0 0 0 16px;
    background: transparent;
  }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown:hover .nav-dropdown__menu { display: none; }
  .nav-dropdown.is-open:hover .nav-dropdown__menu { display: block; }
}

/* ==========================================================================
   Evolutie van het tennisveld — gepinde 3D-scroll-animatie in "Het
   kleurensysteem" (zie js/court-evolution.js). Telkens ÉÉN veld/niveau
   volledig in beeld; de tekst is als een plaat over het veld verwerkt.
========================================================================== */
.court-evolution {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #eef1f6 0%, #dfe4ed 100%);
}
.court-evolution--ready { height: 100vh; }
.court-evolution__stage { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.court3d-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
}
.court3d { position: relative; width: 100%; max-width: 400px; flex-shrink: 0; }
.court3d__scene-wrap { perspective: 1500px; perspective-origin: 50% 10%; }
.court3d__scene { transform: rotateX(52deg); transform-origin: 50% 100%; will-change: transform; }
.court-evo-svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 45px 35px rgba(20,20,20,0.35)); }
.court-evo-ghost { color: rgba(230, 180, 20, 0.45); }
.court-evo-apron { fill: #cdd3dc; }
.court3d__assumption {
  text-align: center;
  font-size: 0.74rem;
  color: #777;
  font-style: italic;
  margin-top: 10px;
  display: none;
}

.court3d__info {
  flex: 1;
  min-width: 0;
  max-width: 380px;
  transition: opacity .3s ease, transform .3s ease;
}
.court3d__info.is-fading { opacity: 0; transform: translateY(10px); }
.court3d__name { font-size: 2rem; margin: 0 0 6px; }
.court3d__blurb { font-size: 1.05rem; color: #444; margin: 0 0 14px; }
.court3d__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.court3d__age { font-size: 0.88rem; font-weight: 600; color: #666; }

.court-evo-dots { display: flex; gap: 10px; }
.court-evo-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--dot-color, #999);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease;
}
.court-evo-dot:hover { transform: scale(1.2); }
.court-evo-dot.is-active { background: var(--dot-color, #999); transform: scale(1.3); }
.court-evo-dot:focus-visible { outline: 2px solid var(--color-text); outline-offset: 3px; }

[data-kids-levels-fallback] .court-evo-assumption { font-size: 0.8rem; color: #888; margin: -6px 0 20px; font-style: italic; }

@media (max-width: 900px) {
  .court3d-layout { flex-direction: column; gap: 24px; }
  .court3d { max-width: 300px; }
  .court3d__info { text-align: center; max-width: 420px; }
  .court3d__meta { justify-content: center; }
  .court-evo-dots { justify-content: center; }
}
