/* --- Globale Stijlen en Variabelen --- */
:root {
    --primary-color: #ff6a00;
    --dark-color: #1a202c;
    --text-color: #4a5568;
    --light-gray-color: #f7fafc;
    --border-color: #e2e8f0;
    --white-color: #ffffff;
    --font-primary: 'Roboto', sans-serif;
    --font-headings: 'Nunito Sans', sans-serif;
}
body { margin: 0; font-family: var(--font-primary); color: var(--text-color); background-color: var(--white-color); line-height: 1.6; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section { padding: 60px 0; }
h1, h2, h3 { font-family: var(--font-headings); color: var(--dark-color); line-height: 1.3; }
p.lead { font-size: 18px; color: #2d3748; }

/* --- Knoppen --- */
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; border: 2px solid var(--primary-color); }
.btn-primary { background-color: var(--primary-color); color: var(--white-color); }
.btn-secondary { background-color: transparent; color: var(--primary-color); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-full { display: block; text-align: center; margin-top: 10px; }

/* --- Header --- */
.site-header { background: var(--white-color); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-headings); font-weight: 800; font-size: 24px; text-decoration: none; color: var(--dark-color); }
.logo .accent { color: var(--primary-color); }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 25px; }
.site-nav a { text-decoration: none; color: var(--text-color); font-weight: bold; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: all 0.3s; }
.site-nav a:hover, .site-nav a.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.header-phone-btn { display: inline-block; padding: 8px 16px; background-color: var(--primary-color); color: var(--white-color); border-radius: 8px; text-decoration: none; font-weight: bold; }

/* --- Algemene Pagina Layout (voor Over, Prijzen, etc.) --- */
.page-content.spaced {
    display: grid;
    grid-template-columns: 1fr; /* Standaard 1 kolom voor mobiel */
    gap: 40px;
    padding: 60px 0;
}
.content-main { max-width: 100%; } /* Zorgt dat content niet te breed wordt */
.content-main h1, .content-main h2 { margin-top: 0; }
.content-sidebar .card { margin-bottom: 20px; }

/* --- Kaarten en Specifieke Elementen --- */
.card { background: var(--white-color); border: 1px solid var(--border-color); padding: 25px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.03); }
.highlight-card { background-color: var(--light-gray-color); border-left: 4px solid var(--primary-color); }
.price-big { font-size: 36px; font-weight: bold; color: var(--dark-color); margin: 0 0 10px; }
.icon-list { list-style: none; padding: 0; }
.icon-list li { margin-bottom: 10px; padding-left: 25px; background-repeat: no-repeat; background-position: left center; background-size: 16px; }
.icon-list li:before { content: '✓'; color: var(--primary-color); font-weight: bold; margin-right: 10px; }
.contact-list-detailed { list-style: none; padding: 0; }
.contact-list-detailed li { margin-bottom: 15px; }
.contact-list-detailed a { color: var(--primary-color); text-decoration: none; font-weight: bold; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 12px; border-bottom: 1px solid var(--border-color); text-align: left; }
.price-table th { font-family: var(--font-headings); color: var(--dark-color); }

/* --- Contact Formulier --- */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-weight: bold; margin-bottom: 5px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; box-sizing: border-box; }

/* --- Responsive Design --- */
@media (min-width: 768px) {
    .page-content.spaced {
        grid-template-columns: 2fr 1fr; /* 2 kolommen op grotere schermen */
    }
}
@media (max-width: 860px) { /* Voor tablet en kleiner */
    .site-nav { display: none; } /* Simpele nav toggle voor mobiel */
    .header-phone-btn { display: none; }
}

/* --- Herbruikbare klassen en overige --- */
.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badges span { background: var(--light-gray-color); padding: 8px 15px; border-radius: 50px; font-weight: bold; font-size: 14px; }
/* ... (voeg hier de rest van uw bestaande CSS toe voor Hero, Footer, Cookie Banner etc.) ... */
/* Logo als afbeelding */
.logo img.logo-image {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Header layout fixes */
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle {
  display: none;
  background: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 18px;
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .site-nav ul { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
  .header-phone-btn { display: none; }
  .nav-toggle { display: inline-block; margin-left: auto; }
}

/* Home hero intact houden en centreren */
.hero {
  background: var(--dark-color);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 12px;
}
.hero .lead {
  color: #cbd5e0;
  max-width: 720px;
  margin: 8px auto 24px;
  font-size: 18px;
}
.hero .btn { margin: 4px 6px; }

@media (max-width: 768px) {
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16px; }
}

/* Main wrapper zodat content niet ‘in de hoeken’ zit */
.site-main {
  min-height: 60vh;
}
/* --- Footer --- */
.site-footer {
    background: var(--light-gray-color);
    color: var(--text-color);
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    /* Op grotere schermen 4 kolommen, op kleinere schermen vallen ze automatisch terug */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.footer-col h4 {
    font-family: var(--font-headings);
    color: var(--dark-color);
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
}
.footer-col p {
    margin: 0;
    font-size: 14px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul a, .footer-col ul li {
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}
.footer-col ul a:hover {
    color: var(--primary-color);
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: #a0aec0;
}
/* Cookie banner fix */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #2d3748;
  color: #fff;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  z-index: 10000;
  transform: translateY(0); /* zichtbaar wanneer nodig */
}
.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}
.cookie-banner a { color: var(--primary-color); text-decoration: underline; }
.cookie-banner .btn,
.cookie-banner button {
  white-space: nowrap;
  border: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner .btn,
  .cookie-banner button { width: 100%; text-align: center; }
}
/* Floating actieknoppen fix (alleen op pagina's met $showContactButtons=true) */
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.floating-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.floating-actions .btn.call { background: #111; }
.floating-actions .btn.whatsapp { background: #25D366; }

@media (max-width: 480px) {
  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}
/* Logo badge achtergrond voor contrast */
.logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04); /* heel lichte achtergrond */
}
.logo img.logo-image {
  height: 48px; width: auto; display: block;
}
/* Footer contact list uitlijning */
.footer-col .contact-list {
  display: grid;
  grid-template-columns: 1fr; /* kolom per regel, strak en consistent */
  gap: 8px;
  margin: 0; padding: 0; list-style: none;
}
.footer-col .contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col .contact-list li a {
  color: var(--primary-color);
  text-decoration: none;
  word-break: break-word; /* lange mails/links netjes afbreken */
}
.footer-col .contact-list li a:hover { text-decoration: underline; }
.footer-col .contact-list li::marker { content: ''; } /* safety in sommige browsers */
/* Vacatures layout */
.vacancies-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 960px) {
  .vacancies-layout { grid-template-columns: 1fr; }
}

.job-cards {
  display: grid;
  gap: 24px;
}
.job-card h2 { margin-top: 0; }
.job-card .meta {
  list-style: none; margin: 0 0 10px; padding: 0; display: flex; gap: 16px; flex-wrap: wrap;
}
.job-card .bullets {
  list-style: none; padding-left: 0; margin: 8px 0 0;
}
.job-card .bullets li {
  padding-left: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20'%3E%3Cpath fill='%23ff6a00' d='M7.629 13.233L3.396 9l1.414-1.414l2.819 2.818L15.19 2.842l1.414 1.415z'/%3E%3C/svg%3E") no-repeat left 4px/14px 14px;
  margin-bottom: 6px;
}

/* Sollicitatiekaart */
.apply-card h2 { margin-top: 0; }
.apply-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.apply-form .form-grid .full { grid-column: 1 / -1; }
.apply-form label { display: flex; flex-direction: column; gap: 6px; font-weight
/* --- Nieuwe Homepagina Stijlen --- */

/* Hero Sectie */
.hero-section { padding: 60px 0; background-color: var(--light-gray-color); }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 42px; margin-bottom: 15px; }
.hero-text .lead { font-size: 18px; margin-bottom: 30px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

@media (min-width: 768px) {
    .hero-inner { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 48px; }
}

/* Features Sectie */
.features-section .section-title, .testimonials-section .section-title { text-align: center; margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.feature-item h3 { color: var(--primary-color); }

/* Testimonials Sectie */
.testimonials-section { background-color: var(--light-gray-color); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonials-grid blockquote { margin: 0; padding: 20px; border-left: 4px solid var(--primary-color); }
.testimonials-grid footer { margin-top: 15px; font-weight: bold; color: var(--dark-color); }

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
/* Fix voor uitlijning van de checkbox op het sollicitatieformulier */
.apply-form .consent {
  display: flex; /* Zet checkbox en tekst op één lijn */
  flex-direction: row; /* Zorgt dat ze naast elkaar staan */
  align-items: center; /* Lijn ze verticaal perfect uit in het midden */
  gap: 10px; /* Voeg wat ruimte toe tussen het vinkje en de tekst */
  font-weight: 500;
  color: #4b5563;
  margin-top: 10px; /* Een beetje extra ruimte boven de checkbox-regel */
}

/* Maak het vinkje zelf iets groter en duidelijker klikbaar */
.apply-form .consent input[type="checkbox"] {
  width: 18px; /* Maak het vakje iets groter */
  height: 18px;
  margin: 0; /* Verwijder eventuele standaard marges */
  flex-shrink: 0; /* Voorkom dat het vakje kleiner wordt op smalle schermen */
  cursor: pointer; /* Toon een handje als je eroverheen hovert */
}
/* --- Volledig Custom Checkbox (Fix voor uitlijning) --- */

/* 1. De container voor de checkbox en de tekst */
.custom-checkbox {
  display: flex; /* Zet elementen naast elkaar */
  align-items: center; /* Lijn ze verticaal uit */
  gap: 12px; /* Ruimte tussen het vakje en de tekst */
  cursor: pointer; /* Maak de hele regel klikbaar */
  user-select: none; /* Voorkom dat de tekst geselecteerd wordt bij klikken */
  font-weight: 500;
  color: #4b5563;
  margin-top: 10px;
}

/* 2. Verberg de lelijke standaard checkbox */
.custom-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

/* 3. Style ons eigen, nieuwe vakje */
.custom-checkbox .checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #6b7280; /* Randkleur van het vakje */
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Voorkom dat het vakje krimpt */
  transition: all 0.2s ease;
}

/* 4. Voeg het vinkje toe wanneer de checkbox is aangeklikt */
.custom-checkbox input[type="checkbox"]:checked + .checkbox-box {
  background-color: var(--primary-color); /* Oranje achtergrond als aangevinkt */
  border-color: var(--primary-color);
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
  content: '✓'; /* Het vinkje-symbool */
  color: white; /* Kleur van het vinkje */
  font-size: 16px;
  font-weight: bold;
}

/* 5. Style de tekst naast het vakje */
.custom-checkbox .checkbox-label {
  line-height: 1.4;
}
/* --- Homepagina Afbeelding (Hero Sectie) Fix --- */

/* De container van de afbeelding */
.hero-image {
  display: flex; /* Maakt centreren makkelijker */
  align-items: center;
  justify-content: center;
}

/* De afbeelding zelf */
.hero-image img {
  max-width: 100%;      /* Zorg dat de afbeelding nooit breder is dan zijn container */
  height: auto;         /* Behoud de hoogte-breedteverhouding */
  max-height: 400px;    /* Stel een maximale hoogte in voor grote schermen */
  object-fit: cover;    /* Zorgt dat de afbeelding de ruimte mooi vult zonder te vervormen */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Pas de maximale hoogte aan voor mobiele apparaten */
@media (max-width: 768px) {
  .hero-image img {
    max-height: 300px; /* Een iets kleinere maximale hoogte op mobiel */
  }
}
/* public/assets/css/main.css */
:root {
  --bg: #ffffff;
  --text: #1b1b1b;
  --muted: #6a6a6a;
  --brand: #ff6a00; /* Oranje accent */
  --brand-2: #444444; /* Donkergrijs */
  --surface: #f6f6f6;
  --border-color: #eaeaea;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }

main {
  min-height: calc(100vh - 250px); /* Voorkomt dat footer omhoog kruipt */
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* --- Header & Navigatie --- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-2);
}

.main-nav a {
  margin: 0 0.5rem;
  font-weight: 500;
  color: var(--text);
}

/* --- Knoppen --- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 0.4rem;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-2);
  border-color: #ddd;
}

.btn-link {
  background: transparent;
  color: var(--brand);
  border: none;
  padding: 0;
}

/* --- Hero Sectie (Homepage) --- */
.hero {
  padding: 2rem 1rem;
  background: var(--surface);
  text-align: center;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: inline-block;
  text-align: left;
}

.ticks li {
  padding-left: 1.8rem;
  position: relative;
  margin: 0.5rem 0;
}

.ticks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 1.2rem;
}

/* --- Prijslijsten & CTA --- */
.prices { list-style: none; padding: 0; margin-top: 1rem; }
.prices li { display: flex; justify-content: space-between; border-bottom: 1px dashed #e5e5e5; padding: 0.5rem 0; }
.cta-row { display: flex; gap: 1rem; margin-top: 1.5rem; }

/* --- Formulieren --- */
.form { margin-top: 2rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
label { margin-bottom: 0.3rem; font-weight: 600; }
input, textarea {
  font: inherit;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 0.35rem;
  width: 100%;
}
input:focus, textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: -1px;
  border-color: var(--brand);
}

/* --- Footer --- */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: #f9f9f9;
  text-align: center;
}
.footer-grid { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.contact-visuals { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.legal { margin-top: 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Cookie Banner --- */
.cookiebar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  z-index: 200;
  text-align: center;
}
.cookiebar[hidden] {
  display: none;
}
.cookiebar-buttons {
  display: flex;
  gap: 1rem;
}

/* --- Media Queries voor Responsiveness --- */
@media (max-width: 768px) {
  .main-nav { display: none; /* Voorbeeld: verberg voor nu, kan later een burgermenu worden */ }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .cta-row { flex-direction: column; }
}

@media (min-width: 769px) {
  .content-wrapper { padding: 3rem 2rem; }
  .hero { padding: 4rem 2rem; }
  .cookiebar { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-grid { flex-direction: row; justify-content: space-between; }
  .contact-visuals { flex-direction: row; gap: 1.5rem; }
}


/* Form message */
.form-message { margin-top: 12px; padding: 10px; border-radius: 6px; font-weight: 600; }
.form-message.ok { background: #e6ffed; color: #065f46; border: 1px solid #d1fae5; }
.form-message.error { background: #fff5f5; color: #7f1d1d; border: 1px solid #fecaca; }

/* Accessibility & reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
/* --- Professionele checkbox styling --- */
/* --- Definitieve Checkbox Styling --- */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer; /* Maakt de hele regel klikbaar */
  user-select: none; /* Voorkomt tekstselectie bij klikken */
}

.checkbox-group .checkbox-label {
  line-height: 1.5;
  color: var(--dark-color);
}

.checkbox-group .checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group .checkbox-label a:hover {
  text-decoration: underline;
}

/* Verberg de standaard browser-checkbox */
.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  /* Afmetingen van onze custom box */
  width: 22px;
  height: 22px;
  flex-shrink: 0; /* Voorkomt dat de box krimpt */

  /* Styling van de box */
  border: 2px solid #adb5bd; /* Neutrale grijze rand */
  border-radius: 6px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* Stijl bij hover */
.checkbox-group:hover input[type="checkbox"] {
  border-color: var(--primary-color);
}

/* Stijl wanneer aangevinkt */
.checkbox-group input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Het vinkje zelf (::after pseudo-element) */
.checkbox-group input[type="checkbox"]:checked::after {
  content: '\\2713'; /* Unicode voor een vinkje ✓ */
  font-size: 16px;
  color: white;
  font-weight: bold;
  
  /* Positionering van het vinkje in het midden */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
