/* ---------------------------
DESIGN TOKENS
--------------------------- */
:root{
  /* Fonts */
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Colors */
  --bg: #f7f7f7;
  --surface: #ffffff;
  --surface-2: #fbfbfc;

  --text: #0b1220;
  --muted: #6b7280;
  --muted-2: #374151;

  --brand: #0f766e;
  --brand-dark: #0b5f59;
  --brand-soft: rgba(15,118,110,0.12);

  --border: rgba(17,24,39,0.10);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;

  /* Shadows */
  --shadow-sm: 0 6px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.10);

  /* Layout */
  --container: 1400px;

  /* Spacing */
  --s1: 0.5rem;
  --s2: 0.75rem;
  --s3: 1rem;
  --s4: 1.5rem;
  --s5: 2rem;
  --s6: 3rem;
  --s7: 4.5rem;

  /* Motion */
  --ease: 180ms ease;
  --ease-slow: 260ms ease;
}

/* ---------------------------
BASE / RESET
--------------------------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--muted-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
strong{ color: var(--text); }

h1,h2,h3,h4,h5,h6{
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

p{
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--muted-2);
}

ul{ margin: 0; padding: 0; }

a:focus-visible, button:focus-visible{
  outline: 3px solid rgba(15,118,110,0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Helpers */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section{
  padding: var(--s7) 0;
}

/* ---------------------------
 BUTTON SYSTEM (UNIFORM)
--------------------------- */
.btn,
.cta-button,
.package-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  user-select: none;
  border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.btn:active,
.cta-button:active,
.package-button:active{
  transform: translateY(1px);
}

.btn--primary,
.cta-button,
.package-button{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 22px rgba(15,118,110,0.18);
}

.btn--primary:hover,
.cta-button:hover,
.package-button:hover{
  background: var(--brand-dark);
}

.btn--outline{
  background: transparent;
  border-color: rgba(17,24,39,0.18);
  color: var(--text);
}
.btn--outline:hover{
  border-color: rgba(15,118,110,0.35);
  color: var(--brand);
}

.btn--secondary{
  background: #111827;
  color: #fff;
  box-shadow: 0 12px 22px rgba(17,24,39,0.15);
}
.btn--secondary:hover{ background: #0b1220; }

.btn--ghost{
  background: transparent;
  border-color: rgba(17,24,39,0.14);
  color: var(--text);
}
.btn--ghost:hover{
  border-color: rgba(17,24,39,0.28);
}

.btn--muted{
  background: rgba(107,114,128,0.08);
  border-color: rgba(107,114,128,0.16);
  color: var(--muted-2);
}
.btn--muted:hover{
  border-color: rgba(15,118,110,0.25);
  color: var(--brand);
}

/* ---------------------------
HERO
--------------------------- */
.hero{
  position: relative;
  height: 100vh;
  min-height: 560px;
  background: url("/Images/heroIndex.jpg") left center / cover no-repeat;
  overflow: hidden;
}

/* per body class background */
body.camper .hero{ background: url("/Images/CamperHeroCompressed.jpg") center/cover no-repeat; }
body.wagen .hero{ background: url("/Images/heroPersonenwagen.png") center/cover no-repeat; }
body.btwob .hero{ background: url("/Images/heroBestelwagens.jpg") center/cover no-repeat; }
body.vrachtwagen .hero{ background: url("/Images/heroVrachtwagen.webp") center/cover no-repeat; }




/* overlay: premium gradient */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(90deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.80) 100%),
  linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.50) 100%);
  z-index: 0;
}

/* hero-content: glas in top-right */
.hero-content{
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  max-width: 720px;
  text-align: left;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-xl);
  background: rgba(17,24,39,0.52);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-content h1{
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 3.8vw, 3.05rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
 
  
}
.hero-content .brand-line{
  display:block;
  margin-top: 0.4rem;
  font-weight: 900;
  Color:#ffffff
}
.hero-content .sub-line{
  display:block;
  margin-top: 0.55rem;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 500;
  opacity: 0.92;
  Color:#ffffff
}

/* scroll indicator */
.scroll-indicator{
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 24px;
  opacity: 0.85;
}
.scroll-indicator span{
  display:block;
  width: 46px;
  height: 46px;
  border-bottom: 5px solid rgba(255,255,255,0.65);
  border-right: 5px solid rgba(255,255,255,0.65);
  border-radius: 0 0 10px 0;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite ease-in-out;
}
@keyframes bounce{
  0%   { transform: translateY(0) rotate(45deg); }
  50%  { transform: translateY(14px) rotate(45deg); }
  100% { transform: translateY(0) rotate(45deg); }
}


.hero-logo{
  width: 150px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  transition: opacity var(--ease);
  
}


/* mobile hero */

@media (max-width: 768px){ 

  .hero-content{
    left: 1rem;
    right: 1rem;
    top: 1.25rem;
    text-align: center;
    max-width: 90%;
    padding: 0.85rem 1rem;
  }

  .hero-content h1{
    font-size: clamp(1.35rem, 4.5vw, 2.1rem);
  }

  .hero-content .brand-line{
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }

  .hero-content .sub-line{
    font-size: clamp(0.9rem, 3.5vw, 1.25rem);
  }

  .hero-logo{
    display: block;
    margin: 0 auto 0.5rem auto;
    width: 160px;
    opacity: 0.9;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
  }

  .scroll-indicator{
    bottom: 120px;
  }
}

/* ---------------------------
Calendr link (card)
--------------------------- */

.vbshine-availability-wrapper{
  margin-top: var(--s5);
  text-align: center;
}

.vbshine-availability-line{
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

/* ---------------------------
TRUST (CARD)
--------------------------- */

/* TRUST SECTION */
.vb-trust-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.vb-trust-eyebrow{
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.vb-trust-title{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* GRID */
.vb-trust-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}

.vb-trust-item{
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vb-trust-item img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vb-trust-item:hover{
  transform: scale(1.02);
  opacity: 0.96;
}

/* META */
.vb-trust-meta{
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}


/* ---------------------------
ABOUT (CARD)
--------------------------- */
.about-container{
  max-width: var(--container);
  margin: 60px auto;
  padding: 0 1.5rem;
}
.about-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.about-text h2{
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 0.8rem;
}
.about-text p{ color: var(--muted-2); }

.about-image{
  display:flex;
  justify-content:center;
}
.about-image img{
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

@media (max-width: 900px){
  .about-card{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image img{ max-width: 360px; }
}

/* ---------------------------
ROUTE / WEGWIJZER
--------------------------- */
.route {
  padding: 4.75rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 45%, var(--bg) 100%);
}

.route__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.route__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.4rem;
}

.route__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.route__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--text);
}

.route__subtitle {
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted-2);
}

.route__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

@media (max-width: 1024px) {
  .route__grid {
    grid-template-columns: 1fr;
  }
}

.route-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.75rem 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.route-card--uniform {
  border-color: rgba(15,118,110,0.22);
  box-shadow: 0 18px 44px rgba(15,118,110,0.10), var(--shadow-md);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  
}

.route-card--uniform::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), #1aa39a);
}

.route-card--uniform:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,118,110,0.28);
}

.route-card__title {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--text);
  min-height: 2.8rem; /* vaste hoogte voor titels */
  display: flex;
  align-items: center; /* centreert tekst verticaal */
  justify-content: center; /* optioneel: centreert horizontaal */
  text-align: center;
}

.route-card__image {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  margin: 0 0 1.4rem;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.route-card__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}


/* ---------------------------
SERVICES
--------------------------- */

/* Sectie spacing: minder leegte bovenaan, strakker premium */
.services{
  padding: 3.25rem 0 4rem;
}

/* Titel*/
.services > h2{
  max-width: var(--container);
  margin: 0 auto 0.25rem; /* minder ruimte tussen titel en ondertekst */
  padding: 0 1.5rem;
  text-align: left;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  letter-spacing: -0.02em;
}

/* Ondertekst (kleiner, subtiel, premium) */
.services-sub{
  max-width: var(--container);
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); /* duidelijk kleiner */
  color: var(--muted); /* premium subtiele kleur */
  letter-spacing: -0.01em;
}

/* Grid container: consistent met andere secties */
.service-grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

/* Desktop: mooi 3-koloms gedrag zoals op je screenshot */
@media (min-width: 1100px){
  .service-grid{
    grid-template-columns: repeat(3, minmax(320px, 1fr));
  }
}

/* Card: premium, rustig, hover lift */
.package-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.package-card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,118,110,0.20);
}

/* Titel/intro blok (meer ademruimte) */
.package-title{
  font-size: 1.22rem;
  margin: 0 0 0.45rem;
  padding: 1.25rem 1.35rem 0;
  color: var(--text);
}
.package-intro{
  margin: 0;
  padding: 0 1.35rem 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
  
  /* Zorgt dat de foto’s onderaan op gelijke hoogte beginnen */
  min-height: 6em;
}

/* Afbeelding */
.package-card img{
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Checklist */
.package-list{
  list-style: none;
  padding: 1.1rem 1.35rem 0.6rem;
  color: var(--muted-2);
  flex: 1; /* maakt cards gelijker qua hoogte */
}
.step{
  position: relative;
  padding-left: 1.35rem;
  margin: 0.65rem 0;
  line-height: 1.55;
  color: var(--muted-2);
}
.step::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

/* Prijsblok */
.package-price{
  margin-top: auto;
  padding: 0.95rem 1.35rem 0.9rem;
}
.price-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.price-row:last-child{ border-bottom: none; }

.price-label{ color: var(--muted-2); font-weight: 650; }
.price-value{ color: var(--brand); font-weight: 900; }

/* Single price row variant (prijs op aanvraag etc.) */
.package-price > span{
  color: var(--text);
  font-weight: 800;
}
.package-price span + span{
  color: var(--brand);
}

/* Ultra-subtiele uitbreidingen */
.package-extras{
  margin: 0.35rem 1.35rem 0.6rem;
  padding: 0;                 /* geen padding → verdwijnt visueel */
  background: none;           /* geen achtergrond */
  border: none;               /* geen border */
}

.extras-title{
  margin: 0 0 0.25rem 0;
  font-size: 0.78rem;         /* kleiner, premium subtiel */
  font-weight: 600;           /* minder nadruk */
  color: var(--muted-2);      /* zachte kleur */
  letter-spacing: -0.01em;
}

.extra-item{
  padding: 0.15rem 0;         /* minimale spacing */
  font-size: 0.78rem;         /* subtieler */
  color: var(--muted-2);
  border: none;               /* geen lijntjes */
}

.extra-item:last-child{ border-bottom: none; }
.extra-price{ color: var(--brand); font-weight: 850}

/* Button: full width binnen card voor premium CTA */
.package-button{
  margin: 1rem 1.35rem 1.35rem;
  width: calc(100% - 2.7rem);
  justify-content: center;
  text-align: center;
}

/* Mobile: padding en grid aanpassen */
@media (max-width: 600px){
  .services{
    padding: 2.75rem 0 3.25rem;
  }
  .services > h2{
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  .service-grid{
    padding: 0 1rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .package-card img{
    height: 210px;
  }
}

/* --------------------------
Card naar beurtenkaart/abonnementen
--------------------------- */

/* CTA Beurtenkaart */
.beurtenkaart-cta{
  margin-top: 2.5rem;
  padding: 1.8rem 0;
}

.beurtenkaart-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.beurtenkaart-icon{
  font-size: 1.6rem;
  line-height: 1;
  opacity: 0.85;
}

.beurtenkaart-content h3{
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.beurtenkaart-content p{
  margin: 0 0 0.6rem;
  color: var(--muted-2);
  line-height: 1.6;
}

.beurtenkaart-link{
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.beurtenkaart-link:hover{
  text-decoration: underline;
}

@media (max-width: 600px){
  .beurtenkaart-inner{
    flex-direction: column;
    gap: 0.8rem;
  }
}





/* === Standaard: 1 regel === */
.price-row
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-label,
.price-value,
.extra-item > span,
.extra-price{
  white-space: nowrap;
}

/* Op héél smalle schermen: stapel onder elkaar */
@media (max-width: 360px){
  .price-row,
  .extra-item{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


/* ---------------------------
  FAQ
--------------------------- */


.faq { padding: 64px 0; }
.faq-inner { width: min(1000px, 92%); margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 16px 18px; margin: 12px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; }
.faq-content { margin-top: 10px; opacity: 0.95; }
.faq-cta { margin-top: 18px; }
.faq-cta a { text-decoration: underline; }


/* ---------------------------
CTA BLOK (CARD + GRADIENT)
--------------------------- */
.cta-blok{
  margin: 60px auto;
  max-width: 980px;
  padding: 0 1.5rem;
}
.cta-container{
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfd 55%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2.25rem;
  text-align: center;
}

.cta-container h2{
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
}
.cta-container p{
  max-width: 740px;
  margin: 0 auto 1.75rem;
  color: var(--muted-2);
}

.cta-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.cta-button{
  min-width: 210px;
}

@media (max-width: 600px){
  .cta-buttons{ flex-direction: column; }
  .cta-button{ width: 100%; max-width: 340px; }
}

/* ---------------------------
WERKGEBIED (UNIFORM GRID)
--------------------------- */
.vb-werkgebied{
  padding: 3.75rem 1.5rem;
  background: var(--bg);
}
.vb-werkgebied-inner{
  max-width: var(--container);
  margin: 0 auto;
}
.vb-werkgebied h2{
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  margin-bottom: 1rem;
}
.vb-werkgebied p{
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.vb-werkgebied-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.vb-werkgebied-item{
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align:center;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.vb-werkgebied-note{
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------------------------
FOOTER
--------------------------- */
.footer{
  background: #0b1220;
  color: #e5e7eb;
  padding: 10px 10px 10px;
  margin-top: 10px;
}
.footer-container{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 40px;
}
.footer-brand h3{
  font-size: 1.85rem; 
  color: #ffffff;
}
.footer-brand p,
.footer-brand a,
.footer-brand address{
  color: rgba(229,231,235,0.78);
}

.footer-social h4{
  margin-bottom: 0.9rem;
  font-size: 1.15rem;
  color: #ffffff;
}
.social-links{
  display:flex;
  gap: 14px;
  align-items:center;
}
.social-links img{
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter var(--ease);
}
.social-links a:hover img{
  filter: brightness(0.85) invert(1);
}

.footer-bottom{
  text-align:center; 
  color: rgba(229,231,235,0.55);
  font-size: 0.95rem;
}

#open_preferences_center{
  display:inline-block;
  color: rgba(229,231,235,0.60);
  text-decoration: none;
  cursor: pointer;
}
#open_preferences_center:hover{
  color: rgba(229,231,235,0.82);
  text-decoration: underline;
}


@media (max-width: 768px){
  .footer-container{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .social-links{ justify-content:center; }
}

.footer-newsletter-btn {
  margin-top: 1.2rem;
  display: inline-flex;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15,118,110,0.18);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.footer-newsletter-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15,118,110,0.22);
}

@media (max-width: 768px){
  .footer-newsletter-btn {
    margin-top: 1.5rem;
  }
}


/* ================================
   FLOATING WHATSAPP BUTTON
  ================================ */
.wa-floating{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.85rem 1.15rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;

  border-radius: var(--radius-lg);
  box-shadow: 0 12px 22px rgba(15,118,110,0.22);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.wa-floating img{
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.wa-floating:hover{
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15,118,110,0.28);
}

/* Mobile: iets compacter */
@media (max-width: 600px){
  .wa-floating{
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    right: 16px;
    bottom: 16px;
  }
  .wa-floating span{
    display: none; /* enkel icoon op kleine schermen */
  }
}

.gdpr-check {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gdpr-check input {
  margin-top: 3px;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
BEURTENKAART PAGINA
========================================= */


/* Container */
.kaart-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* BENEFITS GRID */
.kaart-benefits{
  padding: 2.5rem 0;
}
.kaart-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.kaart-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.kaart-card h3{
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}
.kaart-card p{
  margin: 0;
  color: var(--muted-2);
  line-height: 1.6;
}

@media(max-width: 900px){
  .kaart-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* Smartphone (1 kolom) */
@media(max-width: 600px){
  .kaart-grid{
    grid-template-columns: 1fr;
  }
}

/* DEMO SECTION */
.kaart-demo{
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.kaart-demo h2{
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.4rem;
}

.kaart-demo-sub{
  color: var(--muted-2);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.1;
  Font-size:1.5em;
}

/* Wrapper met premium uitstraling */
.kaart-demo-wrapper{
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Subtiele gradient achtergrond */
.kaart-demo-bg{
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(15,118,110,0.08),
    rgba(15,118,110,0.02)
  );
  z-index: 1;
}

/* De kaart zelf */
.kaart-demo-img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* PRICING / HOW IT WORKS */
.kaart-pricing{
  padding: 2.5rem 0;
}
.kaart-pricing-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.kaart-pricing-card h2{
  margin-bottom: 0.6rem;
}
.kaart-pricing-card p{
  color: var(--muted-2);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.kaart-list{
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.kaart-list li{
  margin: 0.3rem 0;
  color: var(--muted-2);
}

/* CTA BUTTON */
.kaart-cta{
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background: var(--brand);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.kaart-cta:hover{
  opacity: 0.85;
}

/* Formulierbox */


.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: flex-start; /* belangrijk: niet centreren op mobiel */
  padding: 2rem 1rem; /* ruimte boven/onder */
  overflow-y: auto; /* scrollen mogelijk */
  z-index: 9999;
}

/* =========================================
   VB SHINE – Beschikbaarheid
========================================= */

/* --- Pagina layout */
.vbshine-agenda-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 10px;
  font-family: 'Inter', sans-serif;
}


/* --- HEADER: LOGO + TITEL naast elkaar --- */
.vbshine-agenda-header {
  display: flex;
  align-items:end;
  justify-content:flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

/* LOGO */
.vbshine-logo-wrapper img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.10));
  opacity: 0.9;
}

/* TITEL */
.vbshine-agenda-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #0b1220;
}

.vbshine-agenda-title p {
  font-size: 15px;
  color: #6b7280;
  margin-top: 4px;
}

/* --- Kalender wrapper --- */
.vbshine-agenda-wrapper {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow-x: auto; /* belangrijk voor mobiel */
}

/* --- Event blokken --- */
.fc-event {
  border-radius: 6px !important;
  padding: 4px !important;
  background-color: #e6e6e6 !important;
  border: 1px solid #c8c8c8 !important;
}

.fc-event-title {
  font-size: 13px;
  font-weight: 500;
  color: #000 !important;
  text-align: center;
}

/* --- CTA knop --- */
.vbshine-agenda-cta {
  text-align: center;
  margin-top: 30px;
}

.vbshine-btn {
  display: inline-block;
  background: #0f766e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none; 
  transition: 0.2s ease;
}

.vbshine-btn:hover {
  background: #0c5f58;
}

.vbshine-agenda-title p.vbshine-opening-hours {
    font-size: 0.80rem;          /* kleiner dan de lijn erboven */
    color: #7a7a7a;              /* premium subtiele grijstint */    
    font-weight: 300;           /* elegante dunne stijl */
}


@media (max-width: 768px) {
  .vbshine-agenda-header {
    flex-direction: column;  /* onder elkaar */
    align-items: center;     /* centreren */
    text-align: center;      /* tekst centreren */
    gap: 12px;               /* iets compacter */
  }

  .vbshine-logo-wrapper img {
    width: 90px;             /* iets kleiner op mobiel */
  }

  .vbshine-agenda-title h1 {
    font-size: 22px;
  }
}
