/*
Theme Name:   Via Delta Child Theme
Theme URI:    https://www.viadelta.org
Description:  Child theme voor de Via Delta website. Gebaseerd op GeneratePress.
Author:       Via Delta
Author URI:   https://www.viadelta.org
Template:     generatepress
Version:      1.0.0
Text Domain:  viadelta
*/

/* ============================================================
   1. IMPORTS & CUSTOM PROPERTIES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --vd-geel:         #FFCC26;
  --vd-geel-donker:  #E6B800;
  --vd-zwart:        #111111;
  --vd-wit:          #ffffff;
  --vd-grijs-licht:  #f5f5f5;
  --vd-grijs-mid:    #e0e0e0;
  --vd-grijs-tekst:  #444444;
  --vd-grijs-donker: #222222;
  --vd-font:         'Poppins', sans-serif;
  --vd-radius:       6px;
  --vd-shadow:       0 4px 20px rgba(0,0,0,0.08);
  --vd-shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --vd-transition:   0.2s ease;
  --vd-max-width:    1200px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--vd-font);
  color: var(--vd-zwart);
  background: var(--vd-wit);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vd-zwart); text-decoration: none; transition: color var(--vd-transition); }
a:hover { color: var(--vd-geel); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vd-font);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; font-weight: 700; }

p { margin-bottom: 1em; font-weight: 300; color: var(--vd-grijs-tekst); line-height: 1.75; }

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.vd-container {
  max-width: var(--vd-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.vd-section { padding: 80px 0; }
.vd-section--dark { background: var(--vd-zwart); color: var(--vd-wit); }
.vd-section--dark p { color: #aaaaaa; }
.vd-section--light { background: var(--vd-grijs-licht); }
.vd-section--yellow { background: var(--vd-geel); }

.vd-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vd-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vd-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.vd-text-center { text-align: center; }

.vd-section-label {
  display: inline-block;
  background: var(--vd-geel);
  color: var(--vd-zwart);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.vd-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.vd-section-header h2 { margin-bottom: 12px; }
.vd-section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.vd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--vd-radius);
  font-family: var(--vd-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--vd-transition);
  text-decoration: none;
  white-space: nowrap;
}

.vd-btn--primary {
  background: var(--vd-geel);
  color: var(--vd-zwart);
  border-color: var(--vd-geel);
}
.vd-btn--primary:hover {
  background: var(--vd-geel-donker);
  border-color: var(--vd-geel-donker);
  color: var(--vd-zwart);
}

.vd-btn--outline-dark {
  background: transparent;
  color: var(--vd-zwart);
  border-color: var(--vd-zwart);
}
.vd-btn--outline-dark:hover {
  background: var(--vd-zwart);
  color: var(--vd-wit);
}

.vd-btn--outline-light {
  background: transparent;
  color: var(--vd-wit);
  border-color: rgba(255,255,255,0.4);
}
.vd-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--vd-wit);
}

.vd-btn--lg { padding: 16px 36px; font-size: 16px; }
.vd-btn--sm { padding: 8px 18px; font-size: 12px; }

/* ============================================================
   5. HEADER & NAVIGATIE
   ============================================================ */
.vd-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--vd-wit);
  border-bottom: 2px solid var(--vd-geel);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.vd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--vd-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo — nieuw komma-logo als afbeelding */
.vd-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.vd-logo__img {
  height: 44px;
  width: auto;
  display: block;
}

/* Desktop navigatie */
.vd-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--vd-zwart);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--vd-transition);
  white-space: nowrap;
}

.vd-nav__link:hover,
.vd-nav__item.current .vd-nav__link {
  color: var(--vd-geel);
  border-bottom-color: var(--vd-geel);
}

.vd-nav__cta .vd-btn {
  font-size: 13px;
  padding: 8px 18px;
}

/* Hamburger knop — altijd zichtbaar als enige navigatie */
.vd-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
}

.vd-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vd-zwart);
  border-radius: 2px;
  transition: all var(--vd-transition);
}

/* Hamburger animatie bij open staat */
.vd-hamburger.is-open .vd-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vd-hamburger.is-open .vd-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.vd-hamburger.is-open .vd-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown menu */
.vd-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--vd-wit);
  border: 1px solid var(--vd-grijs-mid);
  border-top: 2px solid var(--vd-geel);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 1000;
  overflow: hidden;
  /* Verborgen standaard */
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.vd-dropdown-menu.is-open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.vd-dropdown-menu__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.vd-dropdown-menu__list li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vd-zwart);
  transition: background var(--vd-transition), color var(--vd-transition);
  border-bottom: none;
}

.vd-dropdown-menu__list li a:hover {
  background: var(--vd-grijs-licht);
  color: var(--vd-zwart);
}

.vd-dropdown-menu__cta a {
  margin: 8px 12px 8px;
  background: var(--vd-geel) !important;
  color: var(--vd-zwart) !important;
  border-radius: var(--vd-radius);
  font-weight: 700 !important;
  text-align: center;
  padding: 10px 20px !important;
}

.vd-dropdown-menu__cta a:hover {
  background: var(--vd-geel-donker) !important;
}

/* Desktop: toon nav links, verberg hamburger */
@media (min-width: 900px) {
  .vd-nav { display: flex; }
  .vd-hamburger { display: none; }
  .vd-dropdown-menu { display: none !important; }
}

/* Mobiel/tablet: verberg nav links, toon hamburger */
@media (max-width: 899px) {
  .vd-nav { display: none; }
  .vd-hamburger { display: flex; }
}

/* ============================================================
   6. FOOTER
   ============================================================ */
.vd-footer {
  background: var(--vd-zwart);
  color: #888;
  padding: 64px 0 0;
}

.vd-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--vd-max-width);
  margin: 0 auto;
  padding: 0 32px 48px;
}

.vd-footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vd-geel);
  margin-bottom: 20px;
}

.vd-footer__col p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  font-weight: 300;
}

.vd-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-footer__col ul li { margin-bottom: 10px; }

.vd-footer__col ul a {
  font-size: 13px;
  color: #888;
  font-weight: 300;
  transition: color var(--vd-transition);
}

.vd-footer__col ul a:hover { color: var(--vd-geel); }

.vd-footer__partners {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px;
  max-width: var(--vd-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vd-footer__partners-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin-right: 8px;
}

.vd-footer__partner-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
}

.vd-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 32px;
  max-width: var(--vd-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vd-footer__bottom p { font-size: 12px; color: #555; margin: 0; font-weight: 300; }
.vd-footer__bottom a { font-size: 12px; color: #555; margin-left: 20px; }
.vd-footer__bottom a:hover { color: var(--vd-geel); }

/* ============================================================
   7. PAGE HERO (herbruikbaar)
   ============================================================ */
.vd-page-hero {
  background: var(--vd-zwart);
  color: var(--vd-wit);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.vd-page-hero::after {
  content: ',';
  position: absolute;
  right: 5%;
  bottom: -40px;
  font-size: 280px;
  font-weight: 800;
  color: var(--vd-geel);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.vd-page-hero__inner {
  max-width: var(--vd-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.vd-breadcrumb {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
}

.vd-breadcrumb a { color: var(--vd-geel); }
.vd-breadcrumb span { color: #666; }

.vd-page-hero h1 { color: var(--vd-wit); margin-bottom: 12px; }
.vd-page-hero h1 span { color: var(--vd-geel); }
.vd-page-hero p { color: #aaa; max-width: 580px; font-size: 16px; }

/* ============================================================
   8. KAARTEN (herbruikbaar)
   ============================================================ */
.vd-card {
  background: var(--vd-wit);
  border: 2px solid var(--vd-grijs-mid);
  border-radius: 10px;
  padding: 28px;
  transition: all var(--vd-transition);
}

.vd-card:hover {
  border-color: var(--vd-geel);
  box-shadow: var(--vd-shadow-hover);
  transform: translateY(-3px);
}

.vd-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.vd-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vd-card__text {
  font-size: 14px;
  color: var(--vd-grijs-tekst);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.vd-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--vd-zwart);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vd-card__link:hover { color: var(--vd-geel); }

/* ============================================================
   9. TAGS / BADGES
   ============================================================ */
.vd-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vd-tag--branche  { background: #fff3b0; color: #7a6a00; }
.vd-tag--roc      { background: #f0f0f0; color: #555; }
.vd-tag--cert     { background: #e8f5e9; color: #2e7d32; }
.vd-tag--incompany{ background: #e3f2fd; color: #1565c0; }

/* ============================================================
   10. FORMULIEREN
   ============================================================ */
.vd-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.vd-form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
}

.vd-form-group input,
.vd-form-group select,
.vd-form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--vd-grijs-mid);
  border-radius: var(--vd-radius);
  font-family: var(--vd-font);
  font-size: 14px;
  background: var(--vd-wit);
  transition: border-color var(--vd-transition);
  color: var(--vd-zwart);
  width: 100%;
}

.vd-form-group input:focus,
.vd-form-group select:focus,
.vd-form-group textarea:focus {
  outline: none;
  border-color: var(--vd-geel);
}

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

.vd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================================
   11. STATISTIEKEN / COUNTERS
   ============================================================ */
.vd-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}

.vd-stat__number {
  font-size: 42px;
  font-weight: 800;
  color: var(--vd-geel);
  line-height: 1;
  margin-bottom: 6px;
}

.vd-stat__label {
  font-size: 13px;
  color: #888;
  font-weight: 300;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .vd-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vd-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .vd-grid-2, .vd-grid-3 { grid-template-columns: 1fr; }
  .vd-grid-4 { grid-template-columns: 1fr 1fr; }
  .vd-form-row { grid-template-columns: 1fr; }
  .vd-section { padding: 56px 0; }
  .vd-container { padding: 0 20px; }
  .vd-header__inner { padding: 0 20px; }

  .vd-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--vd-wit);
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 3px solid var(--vd-geel);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
  }

  .vd-nav.is-open { display: flex; }
  .vd-hamburger { display: block; }
  .vd-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .vd-footer__bottom { flex-direction: column; text-align: center; }
  .vd-footer__bottom a { margin: 0 10px; }
}

@media (max-width: 480px) {
  .vd-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   13. ANIMATIES
   ============================================================ */
.vd-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vd-animate.vd-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Toegankelijkheid: geen animaties als gebruiker dat prefereert */
@media (prefers-reduced-motion: reduce) {
  .vd-animate { opacity: 1; transform: none; transition: none; }
  .vd-card:hover { transform: none; }
  .vd-opleiding-card:hover { transform: none; }
}

/* ============================================================
   UITBREIDINGEN — Pagina-specifieke componenten
   ============================================================ */

/* ── Page Hero (interne pagina's) ── */
.vd-page-hero {
  background: var(--vd-zwart);
  padding: 80px 0 60px;
  position: relative;
}
.vd-page-hero h1 { color: var(--vd-wit); margin-bottom: 12px; }
.vd-page-hero h1 .vd-highlight { color: var(--vd-geel); }
.vd-page-hero p { color: #aaa; max-width: 640px; font-size: 17px; }
.vd-breadcrumb { font-size: 13px; color: #888; margin-bottom: 16px; }
.vd-breadcrumb a { color: var(--vd-geel); }
.vd-breadcrumb span { margin: 0 6px; }

/* ── Two Column Layout ── */
.vd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .vd-two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ── Check List ── */
.vd-check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.vd-check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid var(--vd-grijs-mid);
  font-size: 15px;
}
.vd-check-list li:last-child { border-bottom: none; }
.vd-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--vd-geel);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Info Card (maatwerk visual) ── */
.vd-info-card {
  background: var(--vd-zwart);
  border-radius: 12px;
  padding: 32px;
  color: var(--vd-wit);
}
.vd-info-card h4 { color: var(--vd-geel); margin-bottom: 20px; font-size: 16px; }
.vd-sector-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.vd-tag--branche {
  background: rgba(255,204,38,0.15);
  color: var(--vd-geel);
  border: 1px solid rgba(255,204,38,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ── Stappen (4-stappen proces) ── */
.vd-stappen {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .vd-stappen { grid-template-columns: 1fr; }
  .vd-stap__connector { display: none; }
}
.vd-stap {
  background: var(--vd-wit);
  border: 2px solid var(--vd-grijs-mid);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--vd-transition), box-shadow var(--vd-transition);
}
.vd-stap:hover { border-color: var(--vd-geel); box-shadow: var(--vd-shadow); }
.vd-stap__nummer {
  width: 48px;
  height: 48px;
  background: var(--vd-geel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
  color: var(--vd-zwart);
}
.vd-stap h4 { font-size: 16px; margin-bottom: 8px; }
.vd-stap p { font-size: 14px; color: var(--vd-grijs-tekst); margin: 0; }
.vd-stap__connector {
  width: 40px;
  height: 2px;
  background: var(--vd-grijs-mid);
  align-self: center;
  margin: 0 4px;
  margin-top: -40px;
}

/* ── Aanvraag Sectie (Maatwerk) ── */
.vd-aanvraag-sectie { background: var(--vd-grijs-licht); }
.vd-aanvraag-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .vd-aanvraag-wrapper { grid-template-columns: 1fr; } }
.vd-aanvraag-info h2 { margin-bottom: 16px; }
.vd-aanvraag-form {
  background: var(--vd-wit);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--vd-shadow);
}
@media (max-width: 600px) { .vd-aanvraag-form { padding: 24px; } }

/* ── Contact Details ── */
.vd-contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.vd-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.vd-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--vd-geel); }
.vd-contact-item a { color: var(--vd-zwart); }
.vd-contact-item a:hover { color: var(--vd-geel); }

/* ── Subsidies Grid ── */
.vd-subsidies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .vd-subsidies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vd-subsidies-grid { grid-template-columns: 1fr; } }
.vd-subsidie-card {
  background: var(--vd-wit);
  border: 2px solid var(--vd-grijs-mid);
  border-radius: 12px;
  padding: 28px;
  transition: border-color var(--vd-transition), box-shadow var(--vd-transition);
}
.vd-subsidie-card:hover { border-color: var(--vd-geel); box-shadow: var(--vd-shadow); }
.vd-subsidie-card__icon {
  width: 56px;
  height: 56px;
  background: var(--vd-geel);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.vd-subsidie-card h3 { font-size: 18px; margin-bottom: 8px; }
.vd-subsidie-card p { font-size: 14px; color: var(--vd-grijs-tekst); margin-bottom: 16px; }
.vd-subsidie-card__bedrag {
  display: inline-block;
  background: rgba(255,204,38,0.15);
  color: #8a6800;
  border: 1px solid rgba(255,204,38,0.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.vd-subsidie-card--cta {
  background: var(--vd-zwart);
  border-color: var(--vd-zwart);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vd-subsidie-card--cta h3 { color: var(--vd-wit); }
.vd-subsidie-card--cta p { color: #aaa; }

/* ── Partners Grid (Over Via Delta) ── */
.vd-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .vd-partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .vd-partners-grid { grid-template-columns: 1fr; } }
.vd-partner-card {
  background: var(--vd-wit);
  border: 2px solid var(--vd-grijs-mid);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: box-shadow var(--vd-transition);
}
.vd-partner-card:hover { box-shadow: var(--vd-shadow); }
.vd-partner-card__logo {
  height: 80px;
  border: 2px solid;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.vd-partner-card p { font-size: 13px; color: var(--vd-grijs-tekst); margin-bottom: 8px; }
.vd-partner-card__domein {
  font-size: 12px;
  background: var(--vd-grijs-licht);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--vd-grijs-tekst);
}

/* ── Partner Pill ── */
.vd-partner-pill {
  background: var(--vd-zwart);
  color: var(--vd-wit);
  border: 1px solid #444;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Contact Layout ── */
.vd-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .vd-contact-layout { grid-template-columns: 1fr; } }
.vd-contact-form-wrap {
  background: var(--vd-wit);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--vd-shadow);
}
.vd-contact-form-wrap h3 { margin-bottom: 24px; }

/* ── Maatwerk Visual ── */
.vd-maatwerk-visual { position: sticky; top: 100px; }

/* ── Section Yellow ── */
.vd-section--yellow { background: var(--vd-geel); }
.vd-section--yellow h2 { color: var(--vd-zwart); }
.vd-section--yellow p { color: #333; }

/* ── Button Dark ── */
.vd-btn--dark {
  background: var(--vd-zwart);
  color: var(--vd-wit);
  border: 2px solid var(--vd-zwart);
}
.vd-btn--dark:hover {
  background: transparent;
  color: var(--vd-zwart);
}
.vd-btn--lg { padding: 16px 40px; font-size: 17px; }

/* ── Text Center ── */
.vd-text-center { text-align: center; }

/* ============================================================
   CARROUSEL — Opleiding in de Spotlight
   ============================================================ */

.vd-spotlight { overflow: hidden; }

/* Wrapper */
.vd-carrousel {
  position: relative;
  margin-top: 48px;
}

/* Track — bevat alle slides */
.vd-carrousel__track {
  position: relative;
  min-height: 420px;
}

/* Individuele slide */
.vd-carrousel__slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333;
  animation: vd-fade-in 0.5s ease;
}
.vd-carrousel__slide--active {
  display: grid;
}
@media (max-width: 768px) {
  .vd-carrousel__slide { grid-template-columns: 1fr; }
}

@keyframes vd-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visuele kant (foto of placeholder) */
.vd-carrousel__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.vd-carrousel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.vd-carrousel__slide--active .vd-carrousel__visual img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .vd-carrousel__visual { min-height: 240px; }
}

/* Placeholder als er geen foto is */
.vd-carrousel__placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid #333;
}
.vd-carrousel__placeholder-icon { opacity: 0.7; }
.vd-carrousel__placeholder-roc {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Branche badge over de foto */
.vd-carrousel__branche-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--vd-geel);
  color: var(--vd-zwart);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Content kant */
.vd-carrousel__content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 900px) { .vd-carrousel__content { padding: 32px 28px; } }
@media (max-width: 768px) { .vd-carrousel__content { padding: 28px 24px; } }

/* Aanbieder label */
.vd-carrousel__aanbieder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vd-carrousel__aanbieder-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Titel */
.vd-carrousel__titel {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--vd-wit);
  line-height: 1.25;
  margin: 0;
}

/* Excerpt */
.vd-carrousel__excerpt {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

/* Meta (locatie, duur, kosten) */
.vd-carrousel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.vd-carrousel__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.vd-carrousel__meta-item svg { flex-shrink: 0; }

/* CTA knop */
.vd-carrousel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  align-self: flex-start;
}
.vd-carrousel__cta svg { transition: transform 0.2s ease; }
.vd-carrousel__cta:hover svg { transform: translateX(4px); }

/* ── Navigatie balk ── */
.vd-carrousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

/* Pijl-knoppen */
.vd-carrousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #444;
  background: transparent;
  color: var(--vd-wit);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.vd-carrousel__btn:hover {
  border-color: var(--vd-geel);
  background: rgba(255,204,38,0.1);
  transform: scale(1.08);
}
.vd-carrousel__btn:focus-visible {
  outline: 2px solid var(--vd-geel);
  outline-offset: 3px;
}

/* Dots */
.vd-carrousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.vd-carrousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, width 0.3s ease;
}
.vd-carrousel__dot--active {
  background: var(--vd-geel);
  width: 28px;
  border-radius: 5px;
  transform: none;
}
.vd-carrousel__dot:hover:not(.vd-carrousel__dot--active) {
  background: #888;
  transform: scale(1.2);
}
.vd-carrousel__dot:focus-visible {
  outline: 2px solid var(--vd-geel);
  outline-offset: 3px;
}

/* Voortgangsbalk bovenaan de carrousel */
.vd-carrousel__progress {
  height: 3px;
  background: #333;
  border-radius: 2px;
  margin-bottom: 0;
  overflow: hidden;
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
}
.vd-carrousel__progress-bar {
  height: 100%;
  background: var(--vd-geel);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ============================================================
   AANBOD PAGINA — Filters & Zoek
   ============================================================ */
.vd-aanbod-zoek {
  margin-bottom: 24px;
}

.vd-zoekterm-input {
  width: 100%;
  max-width: 560px;
  padding: 12px 20px;
  border: 2px solid var(--vd-grijs-mid);
  border-radius: var(--vd-radius);
  font-family: var(--vd-font);
  font-size: 15px;
  background: var(--vd-wit);
  transition: border-color var(--vd-transition);
  color: var(--vd-zwart);
}

.vd-zoekterm-input:focus {
  outline: none;
  border-color: var(--vd-geel);
}

.vd-aanbod-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--vd-wit);
  border: 1px solid var(--vd-grijs-mid);
  border-radius: 8px;
}

.vd-filter-groep {
  min-width: 180px;
}

.vd-filter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 10px;
}

.vd-filter-opties {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vd-filter-optie {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--vd-zwart);
  cursor: pointer;
}

.vd-filter-optie input[type="checkbox"] {
  accent-color: var(--vd-geel);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.vd-filter-count {
  color: #aaa;
  font-size: 11px;
}

.vd-aanbod-resultaten-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #888;
}

.vd-opleiding-card {
  background: var(--vd-wit);
  border: 1px solid var(--vd-grijs-mid);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow var(--vd-transition), border-color var(--vd-transition);
}

.vd-opleiding-card:hover {
  border-color: var(--vd-geel);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .vd-grid-3.vd-aanbod-grid {
    grid-template-columns: 1fr;
  }
  .vd-aanbod-filters {
    flex-direction: column;
  }
}
