/* ============================================================
   Duikschool Zeeland — Hoofdstylesheet
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --color-deep:    #081C2E;
  --color-ocean:   #0E3D5C;
  --color-sea:     #16796B;
  --color-cta:     #1DBFA3;
  --color-surface: #F2F5F8;
  --color-white:   #FFFFFF;
  --color-text:    #1A2B3C;
  --color-muted:   #6B7F8E;

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 128px;
  --container: 1240px;
  --gap-grid:  28px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  --shadow-card:  0 4px 20px rgba(8,28,46,.10);
  --shadow-hover: 0 8px 32px rgba(8,28,46,.18);
  --shadow-nav:   0 2px 16px rgba(8,28,46,.20);

  --topbar-height: 40px;
  --header-height: 70px;
  --total-nav:     110px;
}

/* ── TOEGANKELIJKHEID ──────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: 10px 20px;
  background: var(--color-cta);
  color: var(--color-deep);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 200ms ease;
}
.skip-to-content:focus {
  top: var(--space-sm);
}

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

/* ── 2. RESET & BASIS ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
abbr[title] { text-decoration: underline dotted; cursor: help; }

/* ── 3. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.section--light   { background: var(--color-white); }
.section--surface { background: var(--color-surface); }
.section--dark    { background: var(--color-deep); }
.section--ocean   { background: var(--color-ocean); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header--light .heading-section { color: var(--color-white); }
.section-header--light p { color: rgba(255,255,255,.70); max-width: 600px; margin-inline: auto; margin-top: var(--space-sm); }

/* ── 4. TYPOGRAFIE ────────────────────────────────────────── */
.heading-hero {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.heading-section {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-deep);
}

.heading-card {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-deep);
}

.heading-page {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}

.body { font-size: 16px; line-height: 1.65; color: var(--color-text); }
.body a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.body a:hover { color: var(--color-primary-dark, var(--color-primary)); text-decoration: none; }
.caption { font-size: 13px; line-height: 1.5; color: var(--color-muted); }
.caption a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.caption a:hover { color: var(--color-primary-dark, var(--color-primary)); text-decoration: none; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-sea);
  margin-bottom: var(--space-sm);
}

.section-label--light { color: var(--color-cta); }

/* ── 5. KNOPPEN ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 150ms ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--cta {
  background: var(--color-cta);
  color: var(--color-deep);
  border-color: var(--color-cta);
}
.btn--cta:hover {
  background: #18a88e;
  border-color: #18a88e;
  box-shadow: 0 4px 16px rgba(29,191,163,.35);
}

.btn--primary {
  background: var(--color-sea);
  color: var(--color-white);
  border-color: var(--color-sea);
}
.btn--primary:hover {
  background: #126358;
  border-color: #126358;
  box-shadow: 0 4px 16px rgba(22,121,107,.30);
}

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

.btn--outline-light {
  background: transparent;
  color: var(--color-cta);
  border-color: var(--color-cta);
}
.btn--outline-light:hover {
  background: var(--color-cta);
  color: var(--color-deep);
}

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cta);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: var(--space-sm);
  transition: gap 200ms ease;
}
.link-arrow:hover { gap: 10px; }
.link-arrow::after { content: '→'; }

/* ── 6. TOPBAR ────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-height);
  background: var(--color-deep);
  z-index: 200;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  text-decoration: none;
  transition: color 200ms ease;
}
.topbar__phone:hover { color: var(--color-cta); }

.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__social a {
  color: rgba(255,255,255,.60);
  display: flex;
  align-items: center;
  transition: color 200ms ease;
}
.topbar__social a:hover { color: var(--color-cta); }

/* ── 7. NAVIGATIE ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0; right: 0;
  height: var(--header-height);
  z-index: 100;
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header--solid {
  background: var(--color-deep);
  box-shadow: var(--shadow-nav);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  display: flex;
  align-items: center;
  color: var(--color-cta);
}

.logo__img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 200px;
}

.logo--footer .logo__mark { color: var(--color-sea); }

.logo__text { display: flex; flex-direction: column; line-height: 1; }

.logo__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}

.logo--dark .logo__name { color: var(--color-deep); }

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color 200ms ease;
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-cta);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.nav__link:hover,
.nav__link--active { color: var(--color-white); }

.nav__link:hover::after,
.nav__link--active::after { transform: scaleX(1); }

/* Acties (CTA + burger) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Taalkiezer */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-switcher__item {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  color: rgba(255,255,255,.50);
  text-decoration: none;
  padding: 3px 5px;
  border-radius: var(--radius-sm);
  transition: color 200ms ease;
  line-height: 1;
}
.lang-switcher__item:hover { color: var(--color-white); }
.lang-switcher__item--active { color: var(--color-cta); }
.lang-switcher__item + .lang-switcher__item::before {
  content: '·';
  margin-right: 4px;
  color: rgba(255,255,255,.25);
  pointer-events: none;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.nav__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,28,46,.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: var(--space-md);
  max-width: 800px;
  opacity: 0;
  transform: translateY(-24px);
  animation: hero-enter 650ms ease-out 300ms forwards;
}

.hero__subtitle {
  color: rgba(255,255,255,.80);
  font-size: clamp(16px, 2vw, 20px);
  margin-block: var(--space-sm) var(--space-md);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.60);
  animation: bounce 2.2s ease-in-out infinite;
}

/* Hero mini (voor subpagina's) */
.hero--mini {
  height: 40vh;
  min-height: 300px;
}

.hero--mini .hero__content { text-align: left; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

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

/* ── 9. INTRO SECTIE ──────────────────────────────────────── */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro__text { display: flex; flex-direction: column; gap: var(--space-sm); }

.intro__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-sm);
}

.usp-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
}

.usp-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(22,121,107,.12);
  color: var(--color-sea);
  flex-shrink: 0;
}

/* ── 10. AANBOD GRID ──────────────────────────────────────── */
.aanbod__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(22,121,107,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sea);
  margin-bottom: var(--space-sm);
  margin-inline: auto;
  flex-shrink: 0;
}

.service-card .heading-card { margin-bottom: 8px; }
.service-card .body { flex: 1; }

/* ── 11. DUIKPLAATSEN ─────────────────────────────────────── */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.location-card {
  background: var(--color-ocean);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.location-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.location-card:hover .location-card__img { transform: scale(1.04); }

.location-card__body { padding: var(--space-md); }

.location-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.location-card__meta {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-sm);
}

.location-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

.locations__cta { text-align: center; margin-top: var(--space-lg); }

/* ── 12. DUIKSCHOOL TEASER ────────────────────────────────── */
.duikschool__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.duikschool__text { display: flex; flex-direction: column; gap: var(--space-sm); }

.duikschool__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.steps { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-sm); }

.step { display: flex; align-items: flex-start; gap: var(--space-sm); }

.step__number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-sea);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-deep);
  display: block;
  margin-bottom: 2px;
}

/* ── 13. CONTACTFORMULIER ─────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-sm);
}

.contact-details li a,
.contact-details li {
  font-size: 15px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 200ms ease;
}
.contact-details li a:hover { color: var(--color-sea); }

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-grid);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #D0DCE8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(29,191,163,.18);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: var(--space-xs);
}

.form-feedback {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-feedback--success {
  background: rgba(22,121,107,.10);
  color: var(--color-sea);
  border: 1px solid rgba(22,121,107,.25);
  display: block;
}

.form-feedback--error {
  background: rgba(220,53,69,.08);
  color: #dc3545;
  border: 1px solid rgba(220,53,69,.20);
  display: block;
}

/* ── 14. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--color-deep);
  padding-top: var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.footer__tagline {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: var(--space-md);
}

.footer__social a {
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  transition: color 200ms ease;
}
.footer__social a:hover { color: var(--color-cta); }

.footer__nav-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-sm);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  color: rgba(255,255,255,.60);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__nav a:hover { color: var(--color-cta); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact a,
.footer__address {
  color: rgba(255,255,255,.60);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__contact a:hover { color: var(--color-cta); }

.footer__address-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer__tradename {
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.footer__contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__newsletter-text {
  color: rgba(255,255,255,.60);
  font-size: 14px;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.newsletter-form__row {
  display: flex;
  gap: 8px;
}

.newsletter-form__input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 200ms ease;
}

.newsletter-form__input::placeholder { color: rgba(255,255,255,.35); }

.newsletter-form__input:focus {
  outline: none;
  border-color: var(--color-cta);
}

.newsletter-form__btn { flex-shrink: 0; padding: 10px 18px; font-size: 13px; }

.newsletter-form__feedback {
  font-size: 13px;
  margin-top: 6px;
  min-height: 1.4em;
  transition: color 200ms ease;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-block: var(--space-md);
}

.footer__bottom-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-md);
}

.footer__copy {
  color: rgba(255,255,255,.35);
  font-size: 12px;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  color: rgba(255,255,255,.35);
  font-size: 12px;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__legal a:hover { color: rgba(255,255,255,.70); }

/* ── 15. SCROLL REVEAL ────────────────────────────────────── */
.reveal-section,
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 550ms ease-out, transform 550ms ease-out;
}

.reveal-section.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 16. PAGINA-SPECIFIEKE STIJLEN ────────────────────────── */

/* CTA banner sectie */
.cta-banner {
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-deep) 100%);
  padding-block: var(--space-xl);
  text-align: center;
}

.cta-banner__title { color: var(--color-white); margin-bottom: var(--space-sm); }
.cta-banner__text { color: rgba(255,255,255,.70); margin-bottom: var(--space-md); max-width: 560px; margin-inline: auto; }

/* Prijs badge */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  color: var(--color-sea);
}
.price-badge__amount { font-size: 28px; font-weight: 700; }
.price-badge__unit { font-size: 14px; color: var(--color-muted); }

/* Info grid (2 kolommen algemeen) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.60);
  margin-bottom: var(--space-md);
}
.breadcrumb a { color: rgba(255,255,255,.60); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-cta); }
.breadcrumb__sep { opacity: .4; }

/* Legal pagina's */
.legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding-block: var(--space-xl);
}
.legal-content h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; margin-block: var(--space-md) var(--space-sm); color: var(--color-deep); }
.legal-content p, .legal-content li { margin-bottom: var(--space-sm); font-size: 15px; }
.legal-content ul { list-style: disc; padding-left: var(--space-md); }
.legal-section-title { font-size: 26px !important; margin-top: var(--space-xl) !important; border-top: 2px solid var(--color-cta); padding-top: var(--space-md); }
.legal-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-md); font-size: 15px; }
.legal-table th, .legal-table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.legal-table th { width: 40%; font-weight: 600; color: var(--color-deep); background: rgba(0,0,0,.03); }
.legal-table thead th { background: var(--color-deep); color: #fff; }

/* ── 17. WHATSAPP KNOP ────────────────────────────────────── */
.wapp-chat-btn {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  min-height: 44px;
  box-shadow: 0 0.3em 0.6em rgba(0,0,0,.20);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wapp-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5em 1em rgba(0,0,0,.25);
  color: #fff;
}
.wapp-icon { width: 24px; height: 24px; flex-shrink: 0; }

/* ── 18. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .aanbod__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .locations__grid { grid-template-columns: 1fr; }
  .info-grid,
  .duikschool__grid,
  .intro__grid { grid-template-columns: 1fr; }
  .intro__image { order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-xl: 64px; --space-lg: 48px; }

  /* Mobiele navigatie */
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-deep);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-nav);
    z-index: 99;
  }

  .nav.is-open { display: flex; }

  .nav__link {
    padding: 14px var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
  }
  .nav__link::after { display: none; }

  .nav__burger { display: flex; }
  .site-header__actions .btn--cta { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .aanbod__grid { grid-template-columns: 1fr; }
  .newsletter-form__row { flex-direction: column; }
  .newsletter-form__btn { width: 100%; }
  .hero--mini { height: 35vh; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-sm); }
  .contact-form { padding: var(--space-md); }
}

/* ── 18. UTILITY KLASSEN ──────────────────────────────────── */

/* Data tabel — prijslijst, verhuur */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table--lg { font-size: 15px; }
.data-table th {
  padding: 10px 12px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-deep);
  border-bottom: 2px solid var(--color-cta);
}
.data-table td {
  padding: 10px 12px;
  color: var(--color-text);
  line-height: 1.4;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.data-table tbody tr:nth-child(even) { background: rgba(0,0,0,.02); }
.data-table .col-price {
  text-align: right;
  font-weight: 600;
  color: var(--color-deep);
  white-space: nowrap;
}
.data-table .col-center {
  text-align: center;
  color: var(--color-muted);
  font-size: 13px;
}
.data-table .col-sub {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.4;
}
.data-table .col-name {
  font-weight: 600;
  color: var(--color-deep);
}
.table-note {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: var(--space-sm);
}
.table-mb { margin-bottom: var(--space-lg); }

/* Kop boven tabel of subsectie */
.heading-sub {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-deep);
  margin-bottom: var(--space-md);
}

/* Tip / notitievakken */
.tip-box {
  background: rgba(29,191,163,.08);
  border-left: 3px solid var(--color-cta);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.note-box {
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Knopgroep — knop + tekstlink naast elkaar */
.btn-group {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

/* Gesplitst twee-koloms raster (verhuur, prijslijst) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

/* Feature locatie rij (duikplaatsen pagina) */
.location-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.location-feature-row--reversed .location-feature-img { order: 2; }

/* Overige locaties kaarten grid */
.locations-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Specialty kaarten grid (cursussen pagina) */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  max-width: 800px;
  margin-inline: auto;
}

/* Verhuur: tabellen gestapeld, info naast elkaar */
.verhuur-tables {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.verhuur-tables .reveal-item + .reveal-item { margin-top: var(--space-xl); }
.verhuur-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

/* Tag / badge */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.tag--cta {
  background: rgba(29,191,163,.15);
  color: var(--color-cta);
}

/* Specialty card */
.specialty-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-card);
}

.specialty-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(29,191,163,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialty-card__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-deep);
  display: block;
  margin-bottom: 2px;
}

.specialty-card__desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ── 19. SFEERBAND ────────────────────────────────────────── */
.sfeerband {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.sfeerband__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .split-grid { grid-template-columns: 1fr; }
  .verhuur-info-grid { grid-template-columns: 1fr; }
  .sfeerband { height: 280px; }
}

@media (max-width: 480px) {
  .sfeerband { height: 200px; }
}

@media (max-width: 600px) {
  .data-table { font-size: 13px; }
  .data-table--lg { font-size: 14px; }
  .location-feature-row { grid-template-columns: 1fr; }
  .location-feature-row--reversed .location-feature-img { order: -1 !important; }
  .locations-more-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
}
