/*
Theme Name:   Astra Child - Dierenkliniek Enkhuizen
Theme URI:    https://dkstaging.nl
Description:  Child theme voor Dierenkliniek Enkhuizen - gebouwd op Astra
Author:       Raatgever
Author URI:   https://raatgever.nl
Template:     astra
Version:      1.0.0
Text Domain:  astra-child-dk
*/

/* ============================================================
   Alle parent-stijlen worden geladen via functions.php
   Hieronder het volledige design system van DK Enkhuizen
   ============================================================ */

/* ============================================
   DESIGN SYSTEM — Dierenkliniek Enkhuizen
   ============================================ */
:root {
  /* Kleuren */
  --paars:         #8c2672;
  --paars-hover:   #6e1d5a;
  --paars-licht:   #faf5f9;
  --paars-mid:     #f0e0ec;
  --salmon:        #e7968b;
  --salmon-hover:  #d4786c;
  --bruin:         #856d4d;
  --bruin-licht:   #f5f0ea;

  /* Tekst */
  --tekst-donker:  #1a1228;
  --tekst-midden:  #4a3d5c;
  --tekst-licht:   #7a6d8a;

  /* Neutrale kleuren */
  --wit:           #ffffff;
  --grijs-licht:   #f8f5fb;
  --grijs-rand:    #e8ddf0;
  --grijs-mid:     #d0c0da;
  --salmon-licht:  #fdf2f0;
  --bruin-mid:     #c4ab8a;

  /* Typografie */
  --font-heading:  'Raleway', sans-serif;
  --font-body:     'Open Sans', sans-serif;

  /* Spacing */
  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 4px 20px rgba(140,38,114,0.10);
  --shadow-hover:  0 8px 30px rgba(140,38,114,0.18);
  --transition:    all 0.22s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: var(--font-body);
  color: var(--tekst-donker);
  background: var(--wit);
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================
   ANNOTATIE-SYSTEEM (design notes voor developer)
   ============================================ */
.dev-note {
  position: relative;
}
.dev-note::after {
  content: attr(data-note);
  display: block;
  background: #fff3cd;
  border-left: 3px solid #e6ac00;
  color: #7a5c00;
  font-family: monospace;
  font-size: 11px;
  padding: 5px 10px;
  margin-top: 4px;
  border-radius: 4px;
}
.note-badge {
  display: inline-block;
  background: #e6ac00;
  color: #fff;
  font-family: monospace;
  font-size: 10px;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================
   HEADER — Sticky
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wit);
  box-shadow: 0 2px 12px rgba(140,38,114,0.10);
}

.header-top {
  background: var(--wit);
  border-bottom: 1px solid var(--grijs-rand);
  padding: 6px 0;
  text-align: right;
}
.header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.header-top a {
  color: var(--paars);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.header-top a:hover { color: var(--paars-hover); }
.header-top .separator {
  color: var(--grijs-mid);
  font-size: 12px;
}

.header-main {
  padding: 14px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo img {
  height: 56px;
  width: auto;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.main-nav > ul > li { position: relative; }
/* Sluitknop alleen zichtbaar in mobiele overlay — op desktop verborgen */
.nav-close-btn { display: none; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--tekst-donker);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--paars);
  background: var(--paars-licht);
}

/* DROPDOWN */
.has-dropdown { cursor: pointer; }
.has-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--wit);
  border: 1px solid var(--grijs-rand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 10px;
  min-width: 220px;
  display: none;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 9px 14px;
  color: var(--tekst-midden);
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--paars-licht);
  color: var(--paars);
}

/* MEGAMENU */
.has-mega { position: static !important; }
.megamenu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--wit);
  border: 1px solid var(--grijs-rand);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 12px 40px rgba(140,38,114,0.14);
  padding: 28px 36px;
  display: none;
  width: 760px;
  z-index: 100;
}
.has-mega:hover .megamenu { display: flex; }
.megamenu-col { flex: 1; }
.megamenu-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--paars);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grijs-rand);
}
.megamenu-col ul { list-style: none; }
.megamenu-col ul li { margin-bottom: 2px; }
.megamenu-col ul li a {
  display: block;
  padding: 7px 10px;
  font-size: 14px;
  color: var(--tekst-midden);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}
.megamenu-col ul li a:hover {
  background: var(--paars-licht);
  color: var(--paars);
}

/* SPOED-LINK */
.nav-spoed > a {
  color: #c0392b !important;
  font-weight: 700 !important;
}
.nav-spoed > a:hover {
  background: #fdf0ef !important;
  color: #c0392b !important;
}

/* CTA BUTTON */
.btn-afspraak {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paars);
  color: var(--wit) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(140,38,114,0.25);
  margin-left: 8px;
}
.btn-afspraak:hover {
  background: var(--paars-hover);
  box-shadow: 0 6px 20px rgba(140,38,114,0.35);
  transform: translateY(-1px);
}
.btn-afspraak svg { flex-shrink: 0; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--paars);
  border-radius: 2px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 580px;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
/* Gradient: vol paars links → oplossend → transparant rechts */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #4a0e38 0%,
    rgba(140,38,114,0.95) 18%,
    rgba(140,38,114,0.65) 33%,
    rgba(120,30,95,0.25) 47%,
    rgba(80,15,60,0.04) 58%,
    transparent 70%
  );
  z-index: 1;
}
/* Subtiele donkere laag onderaan voor leesbaarheid badge */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,8,30,0.50) 0%, transparent 35%);
  z-index: 1;
}
.hero .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 24px 96px;
  position: relative;
  z-index: 2;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--salmon); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
}
.hero-badge svg { flex-shrink: 0; }
.hero-review-badge {
  position: absolute;
  bottom: 40px;
  right: 52px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.7);
}
.hero-review-badge .score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--tekst-donker);
  line-height: 1;
}
.hero-review-badge .sub { font-size: 11px; color: var(--tekst-licht); margin-top: 3px; }

/* ============================================
   OPENINGSTIJDEN-BALK
   ============================================ */
.hours-bar {
  background: var(--salmon);
  padding: 22px 0;
}
.hours-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hours-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  white-space: nowrap;
  opacity: 0.85;
}
.hours-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}
.hours-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.hours-day { font-weight: 700; color: #fff; }
.hours-spoed {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.hours-spoed:hover { background: #fff; color: var(--paars); }

/* ============================================
   SECTIES — algemeen
   ============================================ */
section { padding: 72px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paars);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--salmon);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  color: var(--tekst-donker);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--tekst-licht);
  max-width: 560px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ============================================
   DIENSTEN GRID
   ============================================ */
.diensten { background: var(--salmon); }
.diensten .section-label { color: rgba(255,255,255,0.9); }
.diensten .section-label::before { background: rgba(255,255,255,0.7); }
.diensten .section-title { color: #fff; }
.diensten .section-sub { color: rgba(255,255,255,0.85); }
.diensten .btn-outline {
  border-color: #fff;
  color: #fff;
}
.diensten .btn-outline:hover {
  background: #fff;
  color: var(--paars);
}
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dienst-card {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(140,38,114,0.06);
}
.dienst-card:hover {
  border-color: var(--paars);
  box-shadow: 0 8px 28px rgba(74,14,56,0.18);
  transform: translateY(-4px);
}
.dienst-icon {
  width: 60px;
  height: 60px;
  background: var(--paars-licht);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.dienst-card:hover .dienst-icon { background: var(--paars); }
.dienst-card:hover { border-color: var(--salmon); }
.dienst-card:hover h3 { color: var(--paars); }
.dienst-card:hover .dienst-icon svg path,
.dienst-card:hover .dienst-icon svg circle { stroke: #fff; }
.dienst-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--tekst-donker);
  margin-bottom: 8px;
}
.dienst-card p {
  font-size: 13px;
  color: var(--tekst-licht);
  line-height: 1.5;
}
.diensten-meer {
  text-align: center;
  margin-top: 36px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--paars);
  color: var(--paars);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--paars);
  color: #fff;
}

/* ============================================
   OVER ONS
   ============================================ */
.over-ons .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.over-ons-image {
  background: var(--grijs-licht);
  border: 2px dashed var(--grijs-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tekst-licht);
  font-size: 14px;
  text-align: center;
  flex-direction: column;
  gap: 10px;
}
.over-ons-kenmerken {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}
.kenmerk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.kenmerk-icon {
  width: 38px;
  height: 38px;
  background: var(--paars-licht);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.kenmerk h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}
.kenmerk p { font-size: 13px; color: var(--tekst-licht); }

/* ============================================
   TEAM STRIP
   ============================================ */
.team { background: var(--grijs-licht); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--wit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 10px rgba(140,38,114,0.06);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--salmon);
}
.team-foto {
  background: var(--paars-mid);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paars);
  font-size: 13px;
}
.team-info { padding: 18px 16px; }
.team-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.team-info span {
  font-size: 13px;
  color: var(--paars);
  font-weight: 500;
}

/* ============================================
   FAQ PREVIEW
   ============================================ */
.faq { background: var(--paars-licht); border-top: 3px solid var(--paars-mid); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--wit);
  border: 1.5px solid var(--paars-mid);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--tekst-donker);
  gap: 16px;
}
.faq-num {
  color: var(--paars);
  font-weight: 800;
  min-width: 24px;
}
.faq-chevron {
  color: var(--paars);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px 68px;
  font-size: 14px;
  color: var(--tekst-midden);
  line-height: 1.65;
  display: none;
}
.faq-item.open .faq-answer { display: block; }



/* ============================================
   SFEER GALERIJ
   ============================================ */
.galerij { padding: 0; overflow: hidden; }
.galerij-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  grid-template-rows: 320px;
  gap: 4px;
}
.galerij-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.galerij-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.galerij-item:hover img { transform: scale(1.06); }
.galerij-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.galerij-item:hover .galerij-overlay { opacity: 1; }
.galerij-item:nth-child(1) .galerij-overlay { background: linear-gradient(to top, rgba(140,38,114,0.75), transparent); }
.galerij-item:nth-child(2) .galerij-overlay { background: linear-gradient(to top, rgba(231,150,139,0.80), transparent); }
.galerij-item:nth-child(3) .galerij-overlay { background: linear-gradient(to top, rgba(133,109,77,0.80), transparent); }
.galerij-item:nth-child(4) .galerij-overlay { background: linear-gradient(to top, rgba(140,38,114,0.75), transparent); }
.galerij-caption {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.galerij-label {
  background: var(--paars);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 4px;
  border-radius: 2px;
}
.galerij-item:nth-child(2) .galerij-label { background: var(--salmon); color: #fff; }
.galerij-item:nth-child(3) .galerij-label { background: var(--bruin); }
@media (max-width: 768px) {
  .galerij-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
}

/* ============================================
   NIEUWS
   ============================================ */
.nieuws { background: var(--wit); }
.nieuws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.nieuws-card--featured {
  display: flex;
  flex-direction: column;
}
.nieuws-card--featured .nieuws-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nieuws-card--featured .nieuws-lees-meer {
  margin-top: auto;
}
.nieuws-card {
  background: var(--wit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--grijs-rand);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(140,38,114,0.06);
}
.nieuws-card:hover {
  border-color: var(--paars);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.nieuws-card--small {
  display: grid;
  grid-template-columns: 160px 1fr;
}
.nieuws-card-img {
  position: relative;
  overflow: hidden;
}
.nieuws-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.nieuws-card:hover .nieuws-card-img img { transform: scale(1.04); }
.nieuws-card--featured .nieuws-card-img { height: 260px; }
.nieuws-card-img--small { min-height: 120px; }
.nieuws-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paars);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.nieuws-card-body {
  padding: 22px 24px;
}
.nieuws-card--small .nieuws-card-body { padding: 16px 18px; }
.nieuws-meta { margin-bottom: 8px; }
.nieuws-date {
  font-size: 12px;
  color: var(--paars);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.nieuws-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--tekst-donker);
  margin-bottom: 10px;
}
.nieuws-card--small h3 { font-size: 15px; margin-bottom: 7px; }
.nieuws-card p {
  font-size: 14px;
  color: var(--tekst-licht);
  line-height: 1.6;
  margin-bottom: 14px;
}
.nieuws-card--small p { font-size: 13px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nieuws-lees-meer {
  color: var(--paars);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.nieuws-lees-meer:hover { color: var(--paars-hover); gap: 8px; }
@media (max-width: 900px) {
  .nieuws-grid { grid-template-columns: 1fr; }
  .nieuws-card--small { grid-template-columns: 130px 1fr; }
}
@media (max-width: 600px) {
  .nieuws-card--small { grid-template-columns: 1fr; }
  .nieuws-card-img--small { height: 160px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #3d0e30 0%, var(--paars) 50%, #a03080 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
/* Hero knoppen */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wit);
  color: var(--paars);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.btn-primary:hover {
  background: var(--paars-licht);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wit);
  color: var(--paars);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--paars-licht); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #856d4d;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo img { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { background: var(--paars); border-color: var(--paars); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--salmon); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; }
.footer-contact-item a:hover { color: var(--salmon); }
.contact-icon { margin-top: 2px; flex-shrink: 0; opacity: 0.6; }
.footer-hours table { font-size: 13px; border-collapse: collapse; }
.footer-hours td { padding: 3px 12px 3px 0; color: rgba(255,255,255,0.65); }
.footer-hours td:first-child { font-weight: 600; color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }
.footer-links { display: flex; gap: 20px; }

/* ============================================
   MODAL — Afspraak maken
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,40,0.7);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--wit);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}
.modal-header {
  background: var(--paars);
  color: #fff;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}
.modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body {
  flex: 1;
  overflow: auto;
  padding: 28px;
}
.modal-iframe-placeholder {
  background: var(--grijs-licht);
  border: 2px dashed var(--grijs-mid);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tekst-licht);
  font-size: 14px;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}

/* ============================================
   DESIGN NOTES PANEL
   ============================================ */
.design-panel {
  background: #1e293b;
  color: #e2e8f0;
  padding: 48px 0;
}
.design-panel h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.design-panel .intro { color: #94a3b8; margin-bottom: 36px; font-size: 15px; }
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.panel-card {
  background: #0f172a;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #334155;
}
.panel-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--salmon);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.panel-card ul { list-style: none; }
.panel-card ul li {
  font-size: 13px;
  color: #94a3b8;
  padding: 6px 0;
  border-bottom: 1px solid #1e293b;
  line-height: 1.5;
}
.panel-card ul li:last-child { border-bottom: none; }
.panel-card ul li strong { color: #e2e8f0; }

/* Kleurpalet display */
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.swatch-color {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1);
}
.swatch span { font-size: 10px; font-family: monospace; color: #64748b; }

/* Typografie display */
.type-sample h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.type-sample p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #94a3b8;
  margin-top: 6px;
}
.type-label {
  font-size: 11px;
  color: #475569;
  font-family: monospace;
  margin-top: 6px;
}

/* ============================================
   MOBILE PREVIEW
   ============================================ */
.mobile-preview {
  background: #f1f5f9;
  padding: 48px 0;
  text-align: center;
}
.mobile-preview h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--tekst-donker);
  margin-bottom: 6px;
}
.mobile-preview p { font-size: 14px; color: var(--tekst-licht); margin-bottom: 32px; }
.phone-frame {
  display: inline-block;
  background: #1a1228;
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  max-width: 320px;
  width: 100%;
  text-align: left;
}
.phone-notch {
  background: #000;
  height: 28px;
  border-radius: 14px;
  margin: 0 auto 14px;
  width: 100px;
}
.phone-screen {
  background: var(--wit);
  border-radius: 24px;
  overflow: hidden;
}
/* Mobile header */
.m-header {
  background: var(--wit);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.m-logo { height: 30px; }
.m-hamburger { display: flex; flex-direction: column; gap: 4px; }
.m-hamburger span { display: block; width: 20px; height: 2px; background: var(--paars); border-radius: 2px; }
/* Mobile hero */
.m-hero {
  background: linear-gradient(135deg, var(--paars) 0%, #5a1548 100%);
  padding: 24px 16px;
  color: #fff;
}
.m-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.m-hero p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.m-btn {
  display: block;
  background: #fff;
  color: var(--paars);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 8px;
}
.m-btn-ghost {
  display: block;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
}
/* Mobile hours */
.m-hours {
  background: var(--paars-mid);
  padding: 10px 16px;
  font-size: 12px;
  color: var(--tekst-midden);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-spoed {
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
/* Mobile diensten */
.m-diensten { padding: 20px 16px; }
.m-diensten h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--tekst-donker);
}
.m-diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.m-dienst {
  background: var(--grijs-licht);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  color: var(--tekst-midden);
  font-weight: 600;
  font-family: var(--font-heading);
}
.m-dienst-icon {
  font-size: 18px;
  margin-bottom: 5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  /* Hamburger altijd zichtbaar en altijd bovenop het overlay */
  html body .hamburger {
    display: flex !important;
    position: relative !important;
    z-index: 10000 !important;
  }
  /* Nav verborgen op mobiel */
  html body .main-nav {
    display: none !important;
  }
  /* Nav zichtbaar als open */
  html body .main-nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #fff !important;
    z-index: 9999 !important;
    padding: 80px 32px 40px !important;
    overflow-y: auto !important;
    gap: 0 !important;
    box-shadow: none !important;
  }
  html body .main-nav.open ul {
    flex-direction: column !important;
    gap: 0 !important;
    display: flex !important;
  }
  html body .main-nav.open ul li a {
    display: block !important;
    padding: 16px 0 !important;
    font-size: 1.1rem !important;
    border-bottom: 1px solid rgba(140,38,114,0.1) !important;
    color: var(--paars) !important;
    font-weight: 600 !important;
    background: none !important;
  }
  html body .main-nav.open .btn-afspraak {
    margin-top: 24px !important;
    width: 100% !important;
    justify-content: center !important;
    display: inline-flex !important;
  }
  html body .main-nav.open .dropdown,
  html body .main-nav.open .megamenu { display: none !important; }
  /* Sluitknop bovenin het menu */
  .nav-close-btn {
    display: flex !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1 !important;
  }
  /* Hamburger actief-staat (X) */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg) !important;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg) !important;
  }
  .hamburger span {
    transition: transform 0.25s ease, opacity 0.2s ease !important;
  }
  .hero .container { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 24px; }
  .hero-content::after { display: none; }
  .hero-image { min-height: 280px; }
  .hero h1 { font-size: 32px; }
  .over-ons .container { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  /* Openingstijden mobiel */
  .hours-bar { padding: 20px 0; }
  .hours-bar .container { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .hours-label { font-size: 13px; }
  .hours-items { flex-direction: column; align-items: center; gap: 8px; width: 100%; }
  .hours-item { justify-content: center; font-size: 14px; gap: 6px; }
  .hours-item::after { content: ''; }
  .hours-spoed { margin-left: 0; width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
}

/* ============================================
   FOOTER — Herziene layout (v2)
   ============================================ */

/* CTA bovenin footer */
.footer-cta {
  background: linear-gradient(135deg, #3d0e30 0%, var(--paars) 60%, #a03080 100%);
  padding: 48px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}
.footer-cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
}
.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Nieuwe footer grid: 2 kolommen */
.footer-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 52px 0 40px;
}

/* Openingstijden tabel verbeterd */
.footer-hours table {
  font-size: 14px;
  border-collapse: collapse;
  width: 100%;
}
.footer-hours td {
  padding: 6px 16px 6px 0;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours tr:last-child td { border-bottom: none; }
.footer-hours td:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  width: 120px;
}
.footer-hours td:last-child {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 700px) {
  .footer-grid-new { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; }
}

/* ============================================
   FOOTER V2 — Paars, 3 kolommen
   ============================================ */
.site-footer-v2 {
  background: var(--paars);
  color: #fff;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding: 64px 0 48px;
}

.footer-v2-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-v2-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Afspraak-knop: wit met paarse letters (als in header) */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--paars);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.footer-cta-btn:hover {
  background: var(--paars-licht);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* Openingstijden lijst */
.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.footer-hours-list li:last-child { border-bottom: none; }
.footer-hours-list li span:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.footer-hours-list li span:last-child {
  color: rgba(255,255,255,0.7);
}
.footer-hours-list .jesloten {
  color: var(--salmon) !important;
  font-weight: 600;
}

/* Contact items */
.footer-v2-contact { margin-bottom: 24px; }
.footer-v2-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.footer-v2-contact-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.footer-v2-contact-item a:hover { color: var(--salmon); }

/* Social icons */
.footer-v2-social { display: flex; gap: 10px; }
.footer-v2-social .social-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.footer-v2-social .social-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

/* Footer bottom */
.footer-v2-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-v2-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.footer-v2-bottom a:hover { color: rgba(255,255,255,0.9); }
.footer-v2-bottom .footer-links { display: flex; gap: 20px; }

@media (max-width: 768px) {
  .footer-v2-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
}

/* ============================================
   FOOTER V2 — Alles wit
   ============================================ */
.site-footer-v2,
.site-footer-v2 h4,
.site-footer-v2 p,
.site-footer-v2 span,
.site-footer-v2 a,
.site-footer-v2 .footer-v2-col h4,
.site-footer-v2 .footer-hours-list li span:first-child,
.site-footer-v2 .footer-hours-list li span:last-child,
.site-footer-v2 .footer-v2-contact-item,
.site-footer-v2 .footer-v2-contact-item a,
.site-footer-v2 .footer-v2-bottom,
.site-footer-v2 .footer-v2-bottom a,
.site-footer-v2 .footer-v2-bottom span {
  color: #fff !important;
}

.site-footer-v2 .footer-hours-list .gesloten {
  color: var(--salmon) !important;
}

.site-footer-v2 svg path,
.site-footer-v2 svg circle,
.site-footer-v2 svg rect,
.site-footer-v2 svg line,
.site-footer-v2 svg polyline {
  stroke: rgba(255,255,255,0.75) !important;
}

/* Scroll-to-top knop — wit met paars */
#lsb-scroll-btn,
.lsb-scroll-btn,
[id*="scroll-btn"],
[class*="scroll-btn"] {
  background: #fff !important;
  border-color: var(--paars) !important;
  color: var(--paars) !important;
  border-radius: 8px !important;
}
#lsb-scroll-btn svg,
#lsb-scroll-btn::before,
#lsb-scroll-btn::after {
  color: var(--paars) !important;
  border-color: var(--paars) !important;
}

/* Section label lintje — paars (behalve bij diensten) */
.section-label::before {
  background: var(--paars) !important;
}
.diensten .section-label::before {
  background: rgba(255,255,255,0.7) !important;
}

/* Nav hover — geen border-box, alleen kleur + achtergrond */
.main-nav > ul > li > a,
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a:focus,
.main-nav > ul > li > a:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a,
.main-nav > ul > li.current-menu-item > a {
  color: var(--paars) !important;
  background: var(--paars-licht) !important;
  border-radius: var(--radius) !important;
}

/* 1. Footer CTA knop — wit met paarse letters */
.footer-cta-btn,
.footer-cta-btn * {
  color: var(--paars) !important;
}
.footer-cta-btn svg path,
.footer-cta-btn svg rect,
.footer-cta-btn svg line {
  stroke: var(--paars) !important;
}

/* 2. Scroll-to-top pijltje — wit met paars */
#lsb-scroll-btn {
  background-color: #fff !important;
  border: 2px solid var(--paars) !important;
  border-radius: 8px !important;
  color: var(--paars) !important;
}
#lsb-scroll-btn path,
#lsb-scroll-btn polyline,
#lsb-scroll-btn i,
#lsb-scroll-btn span {
  color: var(--paars) !important;
  border-color: var(--paars) !important;
  stroke: var(--paars) !important;
}

/* 3. Sectie-labels dikgedrukt */
.section-label {
  font-weight: 800 !important;
}

/* Dunne lijntjes tussen footer kolommen */
.footer-v2-grid {
  gap: 0 !important;
}
.footer-v2-col {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.footer-v2-col:first-child {
  padding-left: 0;
}
.footer-v2-col:last-child {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 768px) {
  .footer-v2-col {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-v2-col:last-child {
    border-bottom: none;
  }
}

/* Footer CTA knop — paarse tekst, ALLE kinderen */
a.footer-cta-btn {
  color: var(--paars) !important;
  background: #fff !important;
}
a.footer-cta-btn,
a.footer-cta-btn span,
a.footer-cta-btn svg,
a.footer-cta-btn svg * {}
  color: var(--paars) !important;
  stroke: var(--paars) !important;
  fill: none !important;
}

/* Scroll-to-top — alle mogelijke selectors */
#lsb-scroll-btn,
.lsb-scroll-btn,
.litespeed-scroll,
[id^="lsb-scroll"],
[class^="lsb-scroll"],
a[href="#top"],
button.scrolltop {
  background: #fff !important;
  background-color: #fff !important;
  border: 2px solid var(--paars) !important;
  color: var(--paars) !important;
  border-radius: 8px !important;
}
#lsb-scroll-btn *,
.lsb-scroll-btn *,
.litespeed-scroll * { 
  color: var(--paars) !important;
  stroke: var(--paars) !important;
  border-color: var(--paars) !important;
  fill: var(--paars) !important;
}

/* Astra scroll-to-top knop — wit met paars */
#ast-scroll-top,
.ast-scroll-top,
[id*="scroll-top"],
[class*="scroll-top"] {
  background: #fff !important;
  background-color: #fff !important;
  border: 2px solid var(--paars) !important;

color: var(--paars) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(140,38,114,0.2) !important;
}
#ast-scroll-top svg,
.ast-scroll-top svg,
[id*="scroll-top"] svg,
[class*="scroll-top"] svg {
  fill: var(--paars) !important;
  stroke: var(--paars) !important;
}
#ast-scroll-top path,
.ast-scroll-top path,
[id*="scroll-top"] path,
[class*="scroll-top"] path {
  fill: var(--paars) !important;
  stroke: none !important;
}

/* ============================================
   AST SCROLL-TO-TOP — gerichte override
   ============================================ */
#ast-scroll-top {
  background-color: #ffffff !important;
  border: 2px solid var(--paars) !important;
  border-radius: 8px !important;
  color: var(--paars) !important;
}
#ast-scroll-top .ast-icon,
#ast-scroll-top .ast-icon svg,
#ast-scroll-top .ast-arrow-svg path,
#ast-scroll-top svg path {
  fill: var(--paars) !important;
  stroke: none !important;
  color: var(--paars) !important;
}
/* Verwijder de currentColor override van Astra */
#ast-scroll-top .ast-icon svg:not([fill]) {
  fill: var(--paars) !important;
}

/* ============================================
   FOOTER CTA KNOP — paars, hogere prioriteit
   dan de algemene white-override
   ============================================ */
.site-footer-v2 a.footer-cta-btn {
  color: var(--paars) !important;
  background: #ffffff !important;
}
.site-footer-v2 a.footer-cta-btn svg path {
  stroke: var(--paars) !important;
  fill: none !important;
}

/* ============================================
   MOBIELE OVERRIDES — CTA knop + scroll-to-top
   Expliciete mobile media queries voor maximale
   prioriteit boven Astra's responsive CSS
   ============================================ */
@media (max-width: 991px) {
  /* Footer CTA knop — paars op alle mobiele schermen */
  a.footer-cta-btn,
  .footer-cta-btn,
  .site-footer-v2 a.footer-cta-btn,
  .site-footer-v2 .footer-cta-btn {
    color: var(--paars) !important;
    background: #ffffff !important;
  }
  a.footer-cta-btn span,
  .site-footer-v2 a.footer-cta-btn span {
    color: var(--paars) !important;
  }
  a.footer-cta-btn svg,
  a.footer-cta-btn svg path,
  a.footer-cta-btn svg line,
  a.footer-cta-btn svg rect,
  .site-footer-v2 a.footer-cta-btn svg path {
    stroke: var(--paars) !important;
    fill: none !important;
    color: var(--paars) !important;
  }

  /* Scroll-to-top knop — wit met paars pijltje */
  #ast-scroll-top,
  .ast-scroll-top,
  [id*="scroll-top"],
  [class*="scroll-top"],
  #lsb-scroll-btn,
  .lsb-scroll-btn {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 2px solid var(--paars) !important;
    border-radius: 8px !important;
    color: var(--paars) !important;
    box-shadow: 0 4px 14px rgba(140,38,114,0.2) !important;
  }
  #ast-scroll-top svg,
  #ast-scroll-top svg path,
  #ast-scroll-top .ast-icon svg,
  #ast-scroll-top .ast-arrow-svg path,
  .ast-scroll-top svg path,
  [id*="scroll-top"] svg path,
  [class*="scroll-top"] svg path,
  #lsb-scroll-btn svg path,
  #lsb-scroll-btn path {
    fill: var(--paars) !important;
    stroke: none !important;
    color: var(--paars) !important;
  }
}

/* ============================================
   BUTTON HOVER — duidelijke kleurinversie
   ============================================ */

/* Afspraak maken (wit knop, paarse tekst) → inverteer naar paars */
.btn-primary:hover {
  background: var(--paars) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(140,38,114,0.35) !important;
}
.btn-primary:hover svg path,
.btn-primary:hover svg rect {
  stroke: #fff !important;
}

/* Bekijk onze diensten (transparant, witte rand) → wit met paarse tekst */
.btn-secondary:hover {
  background: #fff !important;
  color: var(--paars) !important;
  border-color: #fff !important;
}

/* Spoed-knop in openingstijdenbalk — outline stijl, hover: wit vlak */
.hours-spoed:hover {
  background: #fff !important;
  color: var(--paars) !important;
  border-color: #fff !important;
}

/* ============================================
   BUTTON HOVER — consistente inversie-stijl
   Wit knop → paars | Paars knop → wit
   ============================================ */

/* WIT → PAARS: btn-primary, footer-cta-btn */
.btn-primary:hover,
.footer-cta-btn:hover,
a.footer-cta-btn:hover,
.site-footer-v2 a.footer-cta-btn:hover {
  background: var(--paars) !important;
  color: #fff !important;
  border-color: var(--paars) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(140,38,114,0.35) !important;
}
.btn-primary:hover svg path,
.btn-primary:hover svg rect,
.hours-spoed:hover svg path,
.footer-cta-btn:hover svg path,
.footer-cta-btn:hover svg line,
.footer-cta-btn:hover svg rect {
  stroke: #fff !important;
  fill: none !important;
}

/* PAARS → WIT: btn-afspraak (nav) */
.btn-afspraak:hover {
  background: #fff !important;
  color: var(--paars) !important;
  border: 2px solid var(--paars) !important;
  box-shadow: 0 6px 20px rgba(140,38,114,0.2) !important;
}
.btn-afspraak:hover svg path,
.btn-afspraak:hover svg rect {
  stroke: var(--paars) !important;
}

/* TRANSPARANT/WIT → WIT/PAARS: btn-secondary (hero) */
.btn-secondary:hover {
  background: #fff !important;
  color: var(--paars) !important;
  border-color: #fff !important;
}

/* ============================================
   HOVER CORRECTIE — alleen hero + footer CTA
   Vorige blokken voor nav/spoed overschreven
   ============================================ */

/* 1. Hero "Afspraak maken" (wit → paars) */
.btn-primary:hover {
  background: var(--paars) !important;
  color: #fff !important;
  box-shadow: 0 10px 32px rgba(140,38,114,0.35) !important;
  transform: translateY(-2px);
}
.btn-primary:hover svg path,
.btn-primary:hover svg rect {
  stroke: #fff !important;
}

/* 2. "Bekijk onze diensten" (witte outline op paars → wit vlak, paarse tekst) */
.btn-secondary:hover {
  background: #fff !important;
  color: var(--paars) !important;
  border-color: #fff !important;
}

/* 3. Footer CTA (wit → paars) */
.footer-cta-btn:hover,
a.footer-cta-btn:hover,
.site-footer-v2 a.footer-cta-btn:hover {
  background: var(--paars) !important;
  color: #fff !important;
  border-color: var(--paars) !important;
  transform: translateY(-2px);
}
.footer-cta-btn:hover svg path,
.footer-cta-btn:hover svg line,
.footer-cta-btn:hover svg rect {
  stroke: #fff !important;
}

/* Nav "Afspraak maken" — terugzetten naar donkerder paars (origineel) */
.btn-afspraak:hover {
  background: var(--paars-hover) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(140,38,114,0.35) !important;
}
.btn-afspraak:hover svg path,
.btn-afspraak:hover svg rect {
  stroke: #fff !important;
}

/* Spoed-knop — terugzetten naar origineel */
.hours-spoed:hover {
  background: var(--paars) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ============================================
   DEFINITIEVE HOVER — hero CTA + footer CTA
   Hoge specificiteit, overschrijft alles
   ============================================ */

/* Standaard: transparante border zodat layout niet springt op hover */
body .btn-primary {
  border: 2px solid transparent !important;
}

/* Hero "Afspraak maken": wit → paars + witte omlijning */
body .btn-primary:hover {
  background: var(--paars) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(140,38,114,0.35) !important;
}
body .btn-primary:hover svg path,
body .btn-primary:hover svg rect {
  stroke: #fff !important;
}

/* Footer CTA: wit → paars + witte omlijning */
body .site-footer-v2 a.footer-cta-btn:hover,
body .footer-cta-btn:hover {
  background: var(--paars) !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  transform: translateY(-2px);
}
body .site-footer-v2 a.footer-cta-btn:hover svg path,
body .footer-cta-btn:hover svg path,
body .footer-cta-btn:hover svg line,
body .footer-cta-btn:hover svg rect {
  stroke: #fff !important;
  fill: none !important;
}

/* Hero knoppen — zelfde grootte en gewicht */
body .btn-secondary {
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 14px 28px !important;
}

/* Nav "Afspraak maken" — donkerder paars op hover, geen witte border */
body .btn-afspraak {
  border: none !important;
}
body .btn-afspraak:hover {
  background: var(--paars-hover) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(140,38,114,0.35) !important;
}
body .btn-afspraak:hover svg path,
body .btn-afspraak:hover svg rect {
  stroke: #fff !important;
}

/* ============================================
   SUBPAGINA OVERRIDES — footer + header
   Astra kan footer/header overschrijven op
   interne pagina's; dit forceert de stijlen
   ============================================ */

/* Footer achtergrond en layout forceren */
.site-footer-v2 {
  background: var(--paars) !important;
  color: #fff !important;
  padding: 64px 0 0 !important;
  margin-top: 0 !important;
}
.site-footer-v2 .footer-v2-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 0 !important;
}
.site-footer-v2 .footer-v2-col {
  padding: 0 48px !important;
  border-right: 1px solid rgba(255,255,255,0.15) !important;
  display: block !important;
}
.site-footer-v2 .footer-v2-col:first-child { padding-left: 0 !important; }
.site-footer-v2 .footer-v2-col:last-child {
  padding-right: 0 !important;
  border-right: none !important;
}
.site-footer-v2 h4 {
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  margin-bottom: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.site-footer-v2 p,
.site-footer-v2 span,
.site-footer-v2 li,
.site-footer-v2 td {
  color: rgba(255,255,255,0.8) !important;
}
.site-footer-v2 a {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
}
.site-footer-v2 a:hover { color: #fff !important; }

/* Footer hours list */
.site-footer-v2 .footer-hours-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.site-footer-v2 .footer-hours-list li {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 0.9rem !important;
  padding: 4px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}
.site-footer-v2 .footer-hours-list .gesloten {
  color: var(--salmon) !important;
}

/* Footer contact items */
.site-footer-v2 .footer-v2-contact {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}
.site-footer-v2 .footer-v2-contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.9rem !important;
}

/* Social buttons in footer */
.site-footer-v2 .footer-v2-social {
  display: flex !important;
  gap: 10px !important;
}
.site-footer-v2 .social-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Footer bottom bar */
.footer-v2-bottom {
  margin-top: 48px !important;
  padding: 20px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.6) !important;
}
.footer-v2-bottom .footer-links {
  display: flex !important;
  gap: 20px !important;
}
.footer-v2-bottom a { color: rgba(255,255,255,0.6) !important; }
.footer-v2-bottom a:hover { color: #fff !important; }

/* Mobiel footer */
@media (max-width: 768px) {
  .site-footer-v2 .footer-v2-grid {
    grid-template-columns: 1fr !important;
  }
  .site-footer-v2 .footer-v2-col {
    padding: 24px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  }
  .site-footer-v2 .footer-v2-col:last-child { border-bottom: none !important; }
}

/* ============================================
   PAGE HERO — witte tekst, geen paars streepje
   ============================================ */
.page-hero .section-label {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 700 !important;
}
.page-hero .section-label::before {
  background: rgba(255,255,255,0.5) !important;
}

/* Astra overschrijft geërfde color op h1/p — forceer wit */
body .page-hero h1,
body .page-hero h2,
body .page-hero p,
body .page-hero strong {
  color: #fff !important;
}

/* ============================================
   CTA SECTIE BOVEN FOOTER — zalm + witte tekst
   ============================================ */
.page-cta-salmon {
  background: var(--salmon) !important;
  color: #fff !important;
}
body .page-cta-salmon h2,
body .page-cta-salmon h3,
body .page-cta-salmon p,
body .page-cta-salmon strong {
  color: #fff !important;
}

/* ============================================
   FOOTER V2 — witte tekst met body-prefix
   (hogere specificiteit dan Astra-overrides)
   ============================================ */
body .site-footer-v2 h4,
body .site-footer-v2 p,
body .site-footer-v2 span,
body .site-footer-v2 li,
body .site-footer-v2 td,
body .site-footer-v2 a,
body .site-footer-v2 .footer-v2-bottom,
body .site-footer-v2 .footer-v2-bottom span,
body .site-footer-v2 .footer-v2-bottom a {
  color: #fff !important;
}
body .site-footer-v2 .footer-hours-list .gesloten {
  color: var(--salmon) !important;
}

/* ============================================
   BTN-CTA-WIT — aparte klasse voor witte knoppen
   op zalm/gekleurde achtergrond
   body-prefix + !important voor Astra-override
   ============================================ */
body a.btn-cta-wit,
body .btn-cta-wit {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  background: transparent !important;
  background-color: transparent !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 12px 24px !important;
  border-radius: var(--radius) !important;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease !important;
  cursor: pointer !important;
  box-shadow: none !important;
}
body a.btn-cta-wit:hover,
body a.btn-cta-wit:focus,
body .btn-cta-wit:hover,
body .btn-cta-wit:focus {
  background: #fff !important;
  background-color: #fff !important;
  color: var(--paars) !important;
  border-color: #fff !important;
  text-decoration: none !important;
}
body a.btn-cta-wit:hover svg path,
body a.btn-cta-wit:hover svg rect,
body a.btn-cta-wit:hover svg polyline {
  stroke: var(--paars) !important;
}

/* ============================================
   SCROLL-TO-TOP — nuclear final override
   Staat onderaan het bestand: wint altijd
   ============================================ */
html body #ast-scroll-top,
html body .ast-scroll-top,
html body button#ast-scroll-top,
html body a#ast-scroll-top,
html body div#ast-scroll-top,
html body span#ast-scroll-top {
  background: var(--paars) !important;
  background-color: var(--paars) !important;
  background-image: none !important;
  border: none !important;
  border-color: var(--paars) !important;
  color: #fff !important;
  fill: #fff !important;
  box-shadow: 0 4px 14px rgba(140,38,114,0.35) !important;
  border-radius: 8px !important;
}
html body #ast-scroll-top *,
html body #ast-scroll-top svg,
html body #ast-scroll-top svg path,
html body #ast-scroll-top svg polygon,
html body #ast-scroll-top svg polyline,
html body #ast-scroll-top svg rect,
html body #ast-scroll-top i,
html body #ast-scroll-top span,
html body #ast-scroll-top .ast-icon,
html body #ast-scroll-top .ast-icon svg,
html body #ast-scroll-top .ast-icon svg path,
html body .ast-scroll-top svg path {
  color: #fff !important;
  fill: #fff !important;
  stroke: none !important;
}
@media (max-width: 768px) {
  html body #ast-scroll-top,
  html body .ast-scroll-top {
    background: var(--paars) !important;
    background-color: var(--paars) !important;
    color: #fff !important;
  }
  html body #ast-scroll-top svg path,
  html body .ast-scroll-top svg path {
    fill: #fff !important;
    stroke: none !important;
  }
}

/* ============================================
   FOOTER CTA KNOP — nuclear final override
   Witte knop met paarse letters (normale staat)
   Staat onderaan het bestand: wint altijd
   ============================================ */
html body .site-footer-v2 a.footer-cta-btn,
html body .site-footer-v2 .footer-cta-btn,
html body footer a.footer-cta-btn,
html body a.footer-cta-btn {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #8c2672 !important;
  text-decoration: none !important;
}
html body .site-footer-v2 a.footer-cta-btn *,
html body footer a.footer-cta-btn svg path,
html body a.footer-cta-btn span {
  color: #8c2672 !important;
}
html body .site-footer-v2 a.footer-cta-btn svg,
html body .site-footer-v2 a.footer-cta-btn svg path,
html body .site-footer-v2 a.footer-cta-btn svg rect,
html body .site-footer-v2 a.footer-cta-btn svg line,
html body a.footer-cta-btn svg path,
html body a.footer-cta-btn svg rect,
html body a.footer-cta-btn svg line {
  stroke: #8c2672 !important;
  fill: none !important;
  color: #8c2672 !important;
}
/* Hover staat: paarse knop met witte letters */
html body .site-footer-v2 a.footer-cta-btn:hover,
html body footer a.footer-cta-btn:hover,
html body a.footer-cta-btn:hover {
  background: #8c2672 !important;
  background-color: #8c2672 !important;
  color: #ffffff !important;
}
html body a.footer-cta-btn:hover *,
html body a.footer-cta-btn:hover span {
  color: #ffffff !important;
}
html body a.footer-cta-btn:hover svg path,
html body a.footer-cta-btn:hover svg rect,
html body a.footer-cta-btn:hover svg line {
  stroke: #ffffff !important;
}

/* ============================================
   MOBIEL — HAMBURGER & NAV OPTIMALISATIES v2.4
   ============================================ */

/* Hamburger span transitie — Ook buiten media query voor soepele animatie */
.hamburger span {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

/* Mobile nav header (logo-balk boven de nav-items) — op desktop verborgen */
.nav-mobile-header { display: none; }

/* Slide-in animatie mobile nav overlay */
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {

  /* ── Hamburger hover/active feedback ─── */
  html body .hamburger {
    padding: 8px !important;
    border-radius: 8px !important;
    transition: background 0.2s ease !important;
  }
  html body .hamburger:hover  { background: rgba(140,38,114,0.07) !important; }
  html body .hamburger:active { background: rgba(140,38,114,0.14) !important; }

  /* Betere bezier voor de ☰ → ✕ animatie */
  html body .hamburger span {
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
                opacity 0.22s ease !important;
  }

  /* ── Mobile menu open — slide-in ─────── */
  html body .main-nav.open {
    padding: 18px 28px 40px !important;
    animation: mobile-nav-in 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  }

  /* ── Logo-balk bovenin het mobile menu ─ */
  .nav-mobile-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 52px18px 0 !important; /* rechts ruimte voor de X-knop */
    margin-bottom: 4px !important;
    border-bottom: 1px solid rgba(140,38,114,0.12) !important;
  }
  .nav-mobile-header img {
    height: 36px !important;
    width: auto !important;
  }

  /* ── Nav items — chevron + tap-state ─── */
  html body .main-nav.open ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 17px 2px !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.01em !important;
  }
  /* Chevron › rechts van elke link */
  html body .main-nav.open ul li a::after {
    content: '\203A' !important;
    font-size: 1.4em !important;
    line-height: 1 !important;
    opacity: 0.3 !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
    transition: transform 0.15s ease, opacity 0.15s ease !important;
  }
  html body .main-nav.open ul li a:hover::after {
    transform: translateX(4px) !important;
    opacity: 0.65 !important;
  }
  /* Tap-state: lichte paarse gloed */
  html body .main-nav.open ul li a:active {
    background: rgba(140,38,114,0.07) !important;
    border-radius: 6px !important;
  }

  /* ── Afspraak-knop in mobile menu ────── */
  html body .main-nav.open .btn-afspraak {
    margin-top: 20px !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
  }

  /* ── Footer bottom ┐ stapelen op mobiel ─ */
  html body .footer-v2-bottom > .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    justify-content: center !important;
  }
  html body .footer-v2-bottom .footer-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 16px !important;
  }
}

/* ============================================
   MOBIEL LANDSCAPE — Hamburger nav
   Ook op landscape orientatie op mobiel
   ============================================ */

@media (max-width: 900px) and (orientation: landscape) {
  /* Header-top verbergen op landscape mobiel */
  .header-top { display: none !important; }

  /* Hamburger menu tonen, navigatie verbergen */
  html body .hamburger {
    display: flex !important;
    z-index: 10000 !important;
  }
  html body .main-nav::not(.open) {
    display: none !important;
  }

  /* Logo kleiner */
  .site-logo img {
    height: 38px !important;
    width: auto !important;
  }

  /* Header compact */
  .header-main {
    padding: 7px.0 !important;
  }
}

/* ============================================
   MOBIEL — HAMBURGER & NAV OPTIMALISATIES v2.4
   ============================================ */

/* Hamburger span transitie — Ook buiten media query voor soepele animatie */
.hamburger span {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}


/* Mobile nav header (logo-balk boven de nav-items) — Op desktop verborgen */
.nav-mobile-header { display: none; }

/* Slide-in animatie mobile nav overlay */
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {

  /* ── Hamburger hover/active feedback ─── */
  html body .hamburger {
    padding: 8px !important;
    border-radius: 8px !important;
    transition: background 0.2s ease !important;
  }
  html body .hamburger:hover  { background: rgba(140,38,114,0.07) !important; }
  html body .hamburger:active { background: rgba(140,38,114,0.14) !important; }

  /* Betere bezier voor de ☰→ ✕ animatie */
  html body .hamburger span {
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
                opacity 0.22s ease !important;
  }

  /* ── Mobile menu open — slide-in ─────── */
  html body .main-nav.open {
    padding: 18px 28px 40px !important;
    animation: mobile-nav-in 0.25s cubic-bezier(0.4,0,0.2,1) !important;
  }

  /* ── Logo-balk bovenin het mobile menu ─ */
  .nav-mobile-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 52px18px 0 !important;
    margin-bottom: 4px !important;
    border-bottom: 1px solid rgba(140,38,114,0.12) !important;
  }
  .nav-mobile-header img {
    height: 36px !important;
    width: auto !important;
  }

  /* ── Nav items — chevron + tap-state ─── */
  html body .main-nav.open ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 17px 2px !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.01em !important;
  }
  /* Chevron › rechts van elke link */
  html body .main-nav.open ul li a::after {
    content: "\203A" !important;
    font-size: 1.4em !important;
    line-height: 1 !important;
    opacity: 0.3 !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
    transition: transform 0.15s ease, opacity 0.15s ease !important;
  }
  html body .main-nav.open ul li a:hover::after {
    transform: translateX(4px) !important;
    opacity: 0.65 !important;
  }
  /* Tap-state: lichte paarse gloed */
  html body .main-nav.open ul li a:active {
    background: rgba(140,38,114,0.07) !important;
    border-radius: 6px !important;
  }

  /* ── Afspraak-knop in mobile menu ────── */
  html body .main-nav.open .btn-afspraak {
    margin-top: 20px !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
  }

  /* ── Footer bottom — stapelen op mobiel ─ */
  html body .footer-v2-bottom > .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    justify-content: center !important;
  }
  html body .footer-v2-bottom .footer-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 16px !important;
  }
}


/* ============================================
   MOBIEL LANDSCAPE — Header compact + logo fix
   header-top verdwijnt op mobiel (<= 900px)
   ============================================ */

@media (max-width: 900px) {
  .header-top { display: none !important; }
  .header-main { padding: 10px 0 !important; }
  .site-logo img { height: 44px !important; width: auto !important; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .header-main { padding: 7px 0 !important; }
  .site-logo img { height: 38px !important; width: auto !important; }
}
