/* ============================================================
   PSL CONSULTING — MASTER CSS (Clean Premium v2)
   Eén consistente stylesheet voor alle pagina’s
=============================================================== */

/* ------------------------------------------------------------
   ROOT VARIABLES
------------------------------------------------------------ */
:root {
  --navy: #1E293B;
  --navy-dark: #0F172A;
  --navy-soft: #162433;

  --gold: #E2B77B;
  --gold-dark: #CFA169;

  --white: #FFFFFF;
  --softwhite: #F8FAFC;

  --gray: #475569;
  --gray-light: #6B7280;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 14px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 26px rgba(0,0,0,0.12);
  --shadow-lg: 0 22px 60px rgba(0,0,0,0.20);
}

/* ------------------------------------------------------------
   RESET & BASE
------------------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  object-fit: contain;
}

/* ------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------ */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  line-height: 1.15;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  color: var(--gray);
  font-size: 17px;
}

.gold {
  color: var(--gold);
}

.center-text {
  text-align: center;
}

.subtext {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   LAYOUT: CONTAINER & SECTIONS
------------------------------------------------------------ */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-light {
  padding: 100px 0;
  background: var(--softwhite);
}

.section-dark {
  padding: 120px 0;
  background: var(--navy);
  color: white;
}

/* GENERIC GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

@media(max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   HEADER + NAVIGATION
------------------------------------------------------------ */
.site-header {
  background: var(--navy) !important;
  padding: 22px 0 !important;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: none !important;
}

.nav-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-img,
.nav-logo img,
.footer-logo {
  height: 64px !important;
  width: auto !important;
}

@media (max-width: 900px) {
  .nav-logo-img,
  .nav-logo img,
  .footer-logo {
    height: 48px !important;
  }
}

/* Desktop nav */
.nav-menu {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-link {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

/* CTA in header */
.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  cursor: pointer;
}

/* Mobile nav trigger */
.mobile-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  display: block;
  margin-bottom: 4px;
}

/* Mobile nav overlay (glass) */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  padding-top: 120px;
  background: rgba(22, 34, 51, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
}

.mobile-nav-overlay.active {
  display: flex !important;
}

.mobile-nav-link {
  color: #fff;
  font-size: 22px;
  padding: 18px 30px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,0.06);
}

/* Responsive nav toggles */
@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }

  .mobile-hamburger {
    display: block !important;
    z-index: 1000000;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-hamburger {
    display: none !important;
  }

  .nav-menu {
    display: flex !important;
  }
}

/* ------------------------------------------------------------
   HERO – GENERIC (voor meeste pagina’s)
------------------------------------------------------------ */
.hero {
  background: var(--navy);
  color: white;
  padding-top: 160px;
  padding-bottom: 120px;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero-text {
  max-width: 620px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-text p {
  margin-top: 4px;
  font-size: 18px;
  color: #ccd3e3;
}

.hero-buttons {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 28px rgba(226,183,123,0.35);
  display: block;
  margin-left: auto;
}

@media (max-width: 950px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 90px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-img img {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}

/* ------------------------------------------------------------
   SPECIAL HERO VARIANTEN
------------------------------------------------------------ */

/* Contact hero */
.hero-contact {
  background: var(--navy);
  color: white;
  padding: 140px 0 120px;
}

.hero-contact .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-contact .hero-text p {
  margin-top: 18px;
  color: #ccd3e3;
  font-size: 18px;
  max-width: 600px;
}

.hero-contact .hero-img img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 6px solid var(--gold);
  box-shadow: 0 0 36px rgba(212,177,112,0.35);
  object-fit: cover;
  display: block;
  margin-left: auto;
}

@media(max-width: 900px) {
  .hero-contact {
    padding: 110px 0 80px;
    text-align: center;
  }

  .hero-contact .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .hero-contact .hero-img img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}

/* Workshop boek-hero */
.hero-workshop-book {
  background: var(--navy);
  color: white;
  padding: 140px 0 100px;
  margin-bottom: 40px;
}

.hero-workshop-book .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-workshop-book .hero-sub {
  font-size: 18px;
  color: #ccd3e3;
  margin-top: 12px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   BUTTONS (UNIFIED)
------------------------------------------------------------ */
.btn {
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline-light {
  border: 1px solid #e5e7eb;
  padding: 12px 24px;
  border-radius: 8px;
  color: #e5e7eb;
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text {
  color: var(--gold);
  font-weight: 600;
  background: none;
}

.btn-text:hover {
  color: var(--gold-dark);
}

/* ------------------------------------------------------------
   GENERIC WHITE CARDS
------------------------------------------------------------ */
.card-light {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: 0.25s ease;
}

.card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(15,23,42,0.12);
}

.card-light h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}

.card-light p {
  color: var(--gray);
  line-height: 1.55;
}

/* ------------------------------------------------------------
   PROPOSITIE-GRID (DONKERE KAARTEN)
------------------------------------------------------------ */
.propositie-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1000px) {
  .propositie-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.propositie-card {
  background: var(--navy-soft);
  color: white;
  border-radius: 22px;
  padding: 40px 34px;
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.propositie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.28);
}

.propositie-card h3 {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 16px;
}

.propositie-card p {
  color: #e4e8f3;
  margin-bottom: 20px;
}

.propositie-card ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}

.propositie-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #dbe1ef;
  font-size: 16px;
}

.propositie-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 20px;
}

/* ------------------------------------------------------------
   VALUE CARDS – LICHTE GRID
------------------------------------------------------------ */
.value-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1000px) {
  .value-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition:
    transform .25s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
  transition: color .3s ease;
}

.value-card p {
  font-size: 15px;
  color: var(--gray);
}

/* hover premium */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-color: var(--gold-dark);
  background: linear-gradient(
    135deg,
    rgba(226,183,123,0.12),
    rgba(255,255,255,1)
  );
}

.value-card:hover h3 {
  color: var(--gold);
}


/* ------------------------------------------------------------
   WAAROM ORGANISATIES GRAAG MET MIJ WERKEN
------------------------------------------------------------ */

.why-wrapper {
  background: #F5F7FA;
  padding: 120px 0;
}

.why-title-main {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.why-subtext {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.65;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.why-card {
  background: var(--navy-soft);
  border-radius: 22px;
  padding: 40px 36px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 18px 45px rgba(15,23,42,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
  color: var(--white); /* basis tekstkleur */
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(15,23,42,0.30);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #0b1220;
  border: 1px solid rgba(148,163,184,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--white);
}

.why-card-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--gold);
}

.why-card p {
  color: rgba(255,255,255,0.85); /* ✔ mooi leesbaar op navy background */
  font-size: 17px;
  line-height: 1.55;
}


/* ------------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------------ */
.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: none !important;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.testimonial-author {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
}

/* ------------------------------------------------------------
   CTA SECTION (Bottom)
------------------------------------------------------------ */
.cta-home {
  background: var(--navy-dark);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.cta-home h2 {
  margin-bottom: 12px;
}

.cta-home p {
  color: #d7dbe9;
  margin-bottom: 22px;
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.footer {
  background: var(--navy);
  color: var(--gold);
  padding: 48px 0;
}

.footer-upper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-right a {
  font-size: 14px;
  margin: 0 8px;
}

.sep {
  opacity: 0.7;
}

/* ------------------------------------------------------------
   SCROLL TO TOP BUTTON (Optie 1)
------------------------------------------------------------ */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;

  width: 54px;
  height: 54px;
  border-radius: 50%;

  background: var(--gold);
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  z-index: 999999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
  background: var(--gold-dark);
}

@media (max-width: 600px) {
  #scrollTopBtn {
    width: 46px;
    height: 46px;
    font-size: 22px;
    bottom: 20px;
    right: 20px;
  }
}

/* ------------------------------------------------------------
   GOOGLE CALENDAR POPUP
------------------------------------------------------------ */
.calendar-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 999999;
}

.calendar-popup-overlay.active {
  display: flex;
}

.calendar-popup {
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.calendar-popup-header {
  background: var(--navy-dark);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-popup-logo {
  height: 40px;
}

.calendar-popup-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 34px;
  cursor: pointer;
}

.calendar-iframe {
  width: 100%;
  height: 650px;
  border: none;
}

/* ------------------------------------------------------------
   CASES – OVERZICHT
------------------------------------------------------------ */
.cases-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 80px 20px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.case-card {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  transition: 0.2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.case-card-logo,
.case-logo {
  height: 48px;
  margin-bottom: 18px;
}

.case-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.case-card-subtitle,
.case-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.case-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.case-card ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

.case-card-link,
.case-link {
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
}

/* Nieuwe “new-style” casecard */
.case-card.new-style {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: .25s ease;
}

.case-card.new-style:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.09);
}

/* ------------------------------------------------------------
   CASE DETAIL PAGINA (zoals case-hnr)
------------------------------------------------------------ */
.case-hero {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0 90px;
  text-align: center;
}

.case-hero img {
  height: 64px;
  margin-bottom: 24px;
}

.case-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 12px;
  color: var(--white);
}

.case-hero p {
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto;
  color: #d7dbe9;
}

.case-back {
  background: var(--softwhite);
  padding: 28px 0 10px;
}

.case-back a {
  font-size: 16px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
}

.case-back a:hover {
  color: var(--gold);
}

.case-section {
  background: var(--softwhite);
  padding: 50px 0;
}

.case-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 38px;
}

.case-card-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  background: #faf6ef;
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.case-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--navy);
}

.case-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.case-card ul li::before {
  content: "✔";
  color: #16a34a;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
}

.case-quote {
  margin-top: 18px;
  padding: 14px 16px;
  background: #fef9f3;
  border-left: 3px solid var(--gold);
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
}

.case-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  margin-top: 40px;
}

.case-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 16px;
}

.case-cta p {
  max-width: 700px;
  margin: 0 auto 26px;
  font-size: 16px;
  color: #e5e7eb;
}

.case-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   AI-STRATEGIE SPECIFIEK
------------------------------------------------------------ */
.ai-section {
  padding: 100px 0;
}

.ai-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.ai-section .subtext {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.ai-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-two-col h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--navy);
}

.ai-two-col ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.ai-two-col ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--gray);
}

/* Herkenbaar & wat je nodig hebt – alternatief */
.herken-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.herken-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148,163,184,0.25);
}

.herken-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.herken-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.herken-card ul li {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 6px;
}

/* Aanpak cards */
.aanpak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.aanpak-card {
  background: var(--navy-soft);
  color: #e4e8f3;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}

.aanpak-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gold);
}

.aanpak-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.aanpak-card ul li {
  font-size: 15px;
  margin-bottom: 6px;
}

/* Wat je ontvangt */
.ontvang-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ontvang-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226,183,123,0.35);
}

.ontvang-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy);
}

/* Specialisaties */
.specialisaties-section {
  padding: 100px 0;
  background: var(--navy-dark);
  color: white;
}

.specialisaties-section .subtext {
  color: #d7dbe9;
}

.specialisatie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.specialisatie-card {
  background: #020617;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.45);
}

.specialisatie-card h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.specialisatie-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.specialisatie-card ul li {
  color: #e4e8f3;
  font-size: 15px;
  margin-bottom: 6px;
}

.creativiteit-box {
  margin-top: 40px;
  background: #020617;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(226,183,123,0.5);
  color: #e4e8f3;
  font-size: 15px;
}

/* Vendor cards — partners & vendor selectie */
.vendor-subtitle {
  margin-top: 40px;
  font-size: 20px;
  color: var(--gray);
}

.vendor-cards-light {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vendor-card-light {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226,183,123,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.vendor-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* ------------------------------------------------------------
   WORKSHOP PAGINA
------------------------------------------------------------ */
.workshop-intro-accent {
  margin-top: 16px;
  font-weight: 600;
  color: var(--gold);
}

/* Wat je leert – cards */
.workshop-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.workshop-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226,183,123,0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

/* Workshop agenda */
.workshop-agenda-section {
  color: #e4e8f3;
}

.workshop-agenda-section .subtext {
  color: #d7dbe9;
}

.agenda-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.agenda-column h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--gold);
}

.agenda-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.agenda-column ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

.agenda-column ul li span {
  display: inline-block;
  min-width: 130px;
  font-weight: 600;
  color: #e5e7eb;
}

/* Praktische details */
.grid-2 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.details-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148,163,184,0.25);
}

/* Workshop CTA */
.workshop-cta {
  text-align: center;
}

.workshop-cta p {
  color: #d7dbe9;
  max-width: 760px;
  margin: 10px auto 0;
}

.workshop-cta .cta-buttons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.workshop-cta .btn {
  min-width: 220px;
}

.workshop-cta .cta-subtext {
  font-size: 14px;
  color: #cbd5f5;
  margin-top: 20px;
  max-width: 860px;
}

/* Booking blok onder hero */
.booking-wrapper {
  max-width: 1200px;
  margin: -40px auto 80px;
  width: 90%;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.card-box {
  background: white;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.info-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.info-card {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.info-card h4 {
  font-size: 15px;
  color: var(--navy);
  opacity: .75;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
}

.price-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

/* Booking form */
.booking-form-card,
.workshop-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}

.booking-form-card label,
.workshop-form-card label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: var(--navy);
}

.booking-form-card input,
.booking-form-card select,
.booking-form-card textarea,
.workshop-form-card input,
.workshop-form-card select,
.workshop-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d4d8e1;
  margin-bottom: 18px;
  font-size: 15px;
  background: white;
}

.booking-form-card textarea,
.workshop-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.booking-submit,
.btn-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 14px 0;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: .25s ease;
  margin-top: 12px;
}

.booking-submit:hover,
.btn-submit:hover {
  background: var(--gold-dark);
}

/* ------------------------------------------------------------
   CONTACT PAGINA
------------------------------------------------------------ */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 34px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}

.contact-form-card label {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #d4d8e1;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-family: inherit;
  background: white;
}

.contact-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.info-block {
  margin-bottom: 22px;
}

.info-block h4 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.info-block p {
  font-size: 15px;
  color: var(--gray);
}

/* CTA onderaan contact */
.cta-contact-bottom {
  background: var(--navy-dark);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-contact-bottom h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: white;
  margin-bottom: 16px;
}

.cta-contact-bottom p {
  max-width: 700px;
  margin: 0 auto 26px;
  font-size: 18px;
  color: #e2e7f0;
}

/* ------------------------------------------------------------
   RESPONSIVE GLOBAL TWEAKS
------------------------------------------------------------ */
@media (max-width: 900px) {
  .section,
  .section-light,
  .section-dark {
    padding: 70px 0;
  }

  .why-wrapper {
    padding: 80px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .footer-upper {
    flex-direction: column;
    text-align: center;
  }

  .calendar-popup-overlay {
    padding: 20px;
  }

  .calendar-iframe {
    height: 520px;
  }

  .herken-grid {
    grid-template-columns: 1fr;
  }

  .ontvang-grid {
    grid-template-columns: 1fr;
  }

  .specialisatie-grid {
    grid-template-columns: 1fr;
  }

  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-cta .btn {
    width: 100%;
  }
}

@media (max-width: 950px) {
  .hero-interim .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-interim .hero-img img {
    margin: 0 auto;
  }

  .hero-interim .hero-buttons {
    justify-content: center;
  }
}

/* ------------------------------------------------------------
   GLOBAL DARK SECTION TYPOGRAPHY (Premium PSL Style)
------------------------------------------------------------ */

.section-dark,
.navy-section,
.dark-block,
.card-dark {
  background: var(--navy-soft);
  color: var(--white);
}

/* Titels in dark sections = goud */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.navy-section h1,
.navy-section h2,
.navy-section h3,
.dark-block h1,
.dark-block h2,
.dark-block h3,
.card-dark h1,
.card-dark h2,
.card-dark h3 {
  color: var(--gold);
}

/* Paragrafen in dark sections subtiel wit */
.section-dark p,
.navy-section p,
.dark-block p,
.card-dark p {
  color: rgba(255,255,255,0.85);
}

/* Lijsten ook wit */
.section-dark li,
.navy-section li,
.dark-block li,
.card-dark li {
  color: rgba(255,255,255,0.85);
}
