/* ============================================
   Camper-Keuring.nl — Stylesheet
   ============================================ */

/* Geen externe lettertypen — gebruikt systeemfonts */

:root {
  --groen:        #1D9E75;
  --groen-donker: #0F6E56;
  --groen-diep:   #085041;
  --groen-licht:  #E1F5EE;
  --groen-mid:    #9FE1CB;
  --groen-tint:   #5DCAA5;

  --tekst:        #1a1a18;
  --tekst-muted:  #5F5E5A;
  --tekst-hint:   #888780;

  --bg:           #ffffff;
  --bg-zacht:     #F7F6F2;
  --rand:         rgba(0,0,0,0.09);
  --rand-mid:     rgba(0,0,0,0.14);

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --schaduw:      0 2px 12px rgba(0,0,0,0.07);

  --font-hoofd:   'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
  --font-tekst:   'Trebuchet MS', 'Segoe UI', Arial, sans-serif;

  --max:          1080px;
  --zij:          clamp(1rem, 5vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-tekst);
  font-size: 16px;
  color: var(--tekst);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--groen-donker); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Hulpklassen ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--zij);
}

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

/* ============================================
   NAVIGATIE
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--rand);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 var(--zij);
  max-width: var(--max);
  margin: 0 auto;
}

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

.nav-logo-mark {
  width: auto;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-mark img { width: auto; height: 80px; object-fit: contain; }

.nav-logo-naam {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--tekst-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--tekst); }

.nav-cta {
  background: var(--groen);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--groen-donker); }

/* Hamburger mobiel */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobiel {
  display: none;
  flex-direction: column;
  padding: 1rem var(--zij) 1.25rem;
  border-top: 0.5px solid var(--rand);
  gap: 0.25rem;
}

.nav-mobiel a {
  font-size: 15px;
  color: var(--tekst-muted);
  padding: 0.5rem 0;
  text-decoration: none;
  border-bottom: 0.5px solid var(--rand);
}

.nav-mobiel a:last-child { border-bottom: none; }
.nav-mobiel .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--groen);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-tekst {
  padding: clamp(2rem, 6vw, 4rem) var(--zij) clamp(2rem, 6vw, 4rem) var(--zij);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--groen-licht);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  width: fit-content;
  letter-spacing: 0.03em;
}

.hero-tekst h1 {
  font-family: var(--font-hoofd);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-tekst .hero-subtitel {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-tekst p {
  font-size: 15px;
  color: var(--groen-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 400px;
}

.hero-knoppen {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-wit {
  background: #fff;
  color: var(--groen-donker);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
  display: inline-block;
}

.btn-wit:hover { opacity: 0.9; text-decoration: none; }

.btn-outline-wit {
  background: transparent;
  color: var(--groen-licht);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.15s;
  display: inline-block;
}

.btn-outline-wit:hover { border-color: rgba(255,255,255,0.7); text-decoration: none; }

.hero-foto {
  position: relative;
  overflow: hidden;
}

.hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-prijs {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--schaduw);
}

.hero-prijs .bedrag {
  font-family: var(--font-hoofd);
  font-size: 28px;
  color: var(--groen-donker);
  line-height: 1;
}

.hero-prijs .label {
  font-size: 11px;
  color: var(--tekst-hint);
  margin-top: 2px;
}

.hero-foto-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(4, 52, 44, 0.8);
  color: var(--groen-mid);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 99px;
}

/* ============================================
   VERTROUWEN (icoonkaartjes)
   ============================================ */
.vertrouwen {
  padding: 2.5rem var(--zij);
  max-width: var(--max);
  margin: 0 auto;
}

.vertrouwen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

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

.vertrouwen-kaart {
  background: var(--bg);
  border: 0.5px solid var(--rand);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s;
}

.vertrouwen-kaart:hover { box-shadow: var(--schaduw); }

.vertrouwen-icoon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--groen-licht);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.vertrouwen-icoon svg { width: 18px; height: 18px; }

.vertrouwen-titel {
  font-size: 14px;
  font-weight: 500;
  color: var(--tekst);
  margin-bottom: 2px;
}

.vertrouwen-sub {
  font-size: 13px;
  color: var(--tekst-muted);
  line-height: 1.4;
}

/* ============================================
   INTRO TEKST
   ============================================ */
.intro {
  background: var(--bg-zacht);
  padding: 4rem var(--zij);
}

.intro-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sectie-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--groen);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.intro h2 {
  font-family: var(--font-hoofd);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--tekst);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.intro p {
  font-size: 15px;
  color: var(--tekst-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.tarief-kaart {
  background: var(--groen);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: #fff;
}

.tarief-kaart .bedrag {
  font-family: var(--font-hoofd);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tarief-kaart .omschrijving {
  font-size: 14px;
  color: var(--groen-mid);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tarief-lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.tarief-lijst li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--groen-licht);
}

.tarief-lijst li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5L12 5.5' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

.tarief-seizoen {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  border-top: 0.5px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* ============================================
   HOE WERKT HET
   ============================================ */
.hoe {
  padding: 4rem var(--zij);
  max-width: var(--max);
  margin: 0 auto;
}

.hoe-header {
  margin-bottom: 2rem;
}

.stappen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid var(--rand);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stap {
  padding: 1.75rem;
  border-right: 0.5px solid var(--rand);
  background: var(--bg);
  transition: background 0.2s;
}

.stap:last-child { border-right: none; }
.stap:hover { background: var(--bg-zacht); }

.stap-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--groen);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.stap-titel {
  font-size: 15px;
  font-weight: 500;
  color: var(--tekst);
  margin-bottom: 0.5rem;
}

.stap-tekst {
  font-size: 13px;
  color: var(--tekst-muted);
  line-height: 1.6;
}

/* ============================================
   CTA-BALK
   ============================================ */
.cta-balk {
  padding: 0 var(--zij) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}

.cta-balk-inner {
  background: var(--groen-licht);
  border: 0.5px solid var(--groen-mid);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-balk-titel {
  font-size: 17px;
  font-weight: 500;
  color: var(--groen-diep);
  margin-bottom: 4px;
}

.cta-balk-sub {
  font-size: 13px;
  color: var(--groen-donker);
}

.btn-groen {
  background: var(--groen);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  display: inline-block;
}

.btn-groen:hover { background: var(--groen-donker); text-decoration: none; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--tekst);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem var(--zij);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-mark {
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}

.footer-logo-mark img { width: 160px; height: auto; object-fit: contain; }

.footer-naam { font-size: 14px; font-weight: 500; color: #fff; }

.footer-contact { font-size: 13px; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #fff; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PAGINA-HEADER (voor subpagina's)
   ============================================ */
.pagina-header {
  background: var(--groen);
  padding: 3rem var(--zij);
  text-align: center;
}

.pagina-header h1 {
  font-family: var(--font-hoofd);
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pagina-header p {
  font-size: 15px;
  color: var(--groen-mid);
}

/* ============================================
   CONTENT BLOK (voor subpagina's)
   ============================================ */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem var(--zij) 4rem;
}

.content h2 {
  font-family: var(--font-hoofd);
  font-size: 24px;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  color: var(--tekst);
}

.content h2:first-child { margin-top: 0; }

.content p {
  font-size: 15px;
  color: var(--tekst-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content ul, .content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.content li {
  font-size: 15px;
  color: var(--tekst-muted);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.content strong { color: var(--tekst); font-weight: 500; }

/* ============================================
   CONTACT FORMULIER WRAPPER
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--zij) 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-hoofd);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 15px;
  color: var(--tekst-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-kanalen {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-kanaal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.875rem 1rem;
  background: var(--bg-zacht);
  border-radius: var(--radius-md);
  border: 0.5px solid var(--rand);
  text-decoration: none;
  color: var(--tekst);
  font-size: 14px;
  transition: border-color 0.15s;
}

.contact-kanaal:hover { border-color: var(--groen); text-decoration: none; }

.contact-kanaal-icoon {
  width: 32px; height: 32px;
  background: var(--groen-licht);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-kanaal-icoon svg { width: 16px; height: 16px; }

.formulier-kaart {
  background: var(--bg);
  border: 0.5px solid var(--rand);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--schaduw);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobiel.open { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-foto {
    height: 220px;
    order: -1;
    object-position: top;
  }

  .hero-tekst {
    padding: 1.75rem var(--zij);
  }

  .vertrouwen-grid {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stappen {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .stap {
    border-right: none;
    border-bottom: 0.5px solid var(--rand);
  }

  .stap:last-child { border-bottom: none; }

  .cta-balk-inner {
    flex-direction: column;
    text-align: center;
  }

  .btn-groen { width: 100%; text-align: center; }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================
   COOKIEBANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1a1a18;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem var(--zij);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-banner a {
  color: var(--groen-mid);
  text-decoration: underline;
}

.cookie-banner-knoppen {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-akkoord {
  background: var(--groen);
  color: #fff;
  border: none;
  padding: 5px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-tekst);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.cookie-akkoord:hover { background: var(--groen-donker); }

.cookie-weiger {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-tekst);
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-weiger:hover { border-color: rgba(255,255,255,0.4); }

@media (max-width: 600px) {
  .cookie-banner { flex-wrap: wrap; }
}

/* ============================================
   BLOG
   ============================================ */
.blog-wrap { max-width: var(--max); margin: 0 auto; padding: 3rem var(--zij) 4rem; }

.blog-kaart {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  border: 0.5px solid var(--rand);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg);
  transition: box-shadow 0.2s;
}
.blog-kaart:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.blog-kaart-img {
  background: var(--bg-zacht);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-kaart-img img { width:100%; height:100%; object-fit:cover; }

.blog-kaart-body { padding: 2rem 2rem 2rem 0; }

.blog-tag {
  display: inline-block;
  background: var(--groen-licht);
  color: var(--groen-donker);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.blog-kaart h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--tekst);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-kaart p {
  font-size: 14px;
  color: var(--tekst-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-lees-meer {
  font-size: 14px;
  font-weight: 500;
  color: var(--groen-donker);
  text-decoration: none;
}
.blog-lees-meer:hover { text-decoration: underline; }

.artikel-wrap { max-width: 720px; margin: 0 auto; padding: 3rem var(--zij) 4rem; }
.artikel-wrap h2 { font-size:22px; font-weight:500; margin:2rem 0 0.75rem; color:var(--tekst); }
.artikel-wrap h3 { font-size:16px; font-weight:500; margin:1.5rem 0 0.5rem; color:var(--tekst); }
.artikel-wrap p { font-size:15px; color:var(--tekst-muted); line-height:1.8; margin-bottom:1rem; }
.artikel-wrap ul { padding-left:1.25rem; margin-bottom:1rem; }
.artikel-wrap li { font-size:15px; color:var(--tekst-muted); line-height:1.8; margin-bottom:0.25rem; }
.artikel-wrap strong { color:var(--tekst); font-weight:500; }

.artikel-meta {
  font-size: 13px;
  color: var(--tekst-hint);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--rand);
}

.artikel-foto {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  background: var(--bg-zacht);
}
.artikel-foto img { width:100%; display:block; }
.artikel-foto figcaption { font-size:12px; color:var(--tekst-hint); padding:0.75rem 1rem; }

@media(max-width:768px){
  .blog-kaart { grid-template-columns:1fr; }
  .blog-kaart-img { min-height:180px; }
  .blog-kaart-body { padding:1.25rem; }
}
