:root{
  --green:#86b01f;
  --overlay:rgba(245,245,245,.78);
  --text:#1f1f1f;
  --muted:#444;
  --max:1100px;
  --shadow:0 10px 30px rgba(0,0,0,.15);
  --cardShadow:0 8px 20px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{
  color:var(--text);
  background:#fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Topbar */
.topbar{
  background:var(--green);
  color:#fff;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:14px;
}
.topbar .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0;
}
.topbar .left{display:flex; align-items:center; gap:18px; flex-wrap:wrap}
.chip{display:flex; align-items:center; gap:10px; white-space:nowrap; opacity:.95}
.icon{width:16px; height:16px; display:inline-block}
.social{display:flex; align-items:center; gap:12px}
.social a{
  width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px; background:rgba(255,255,255,.18);
  transition:transform .12s ease, background .12s ease;
}
.social a:hover{transform:translateY(-1px); background:rgba(255,255,255,.26)}

/* Main header: logo + menu */
.header{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.header .inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .logo-wrap{
  background:transparent;
  display:flex; align-items:center;
}
.brand img{
  height:54px; width:auto;
}
.nav{
  display:flex; align-items:center; gap:18px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:15px;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  transition:background .12s ease;
}
.nav a:hover{background:rgba(134,176,31,.12)}
.nav a.active{background:rgba(134,176,31,.18); font-weight:600}

/* Mobile menu */
.burger{
  display:none;
  width:42px; height:42px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#fff;
}
.burger span{
  display:block; width:18px; height:2px; background:#222;
  margin:4px auto;
}
.mobile-nav{
  display:none;
  padding:10px 0 16px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.mobile-nav a{
  display:block;
  padding:10px 8px;
  border-radius:10px;
}
.mobile-nav a:hover{background:rgba(134,176,31,.12)}
.mobile-nav a.active{background:rgba(134,176,31,.18); font-weight:600}

/* Header slider (max 250px) */
.slider{
  position:relative;
  height:250px;
  overflow:hidden;
  background:#ddd;
}
.slide{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity .8s ease;
}
.slide.is-active{opacity:1}
.slide img{
  width:100%;
  height:250px;
  object-fit:cover;
  object-position:center;
}
.slider .overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.0) 55%);
  pointer-events:none;
}
.slider .caption{
  position:absolute;
  left:18px; top:50%;
  transform:translateY(-50%);
  color:#fff;
  max-width:min(520px, 85%);
  font-family: Georgia, "Times New Roman", Times, serif;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}
.slider .caption h1{
  margin:0 0 8px;
  font-size:34px;
  font-weight:700;
}
.slider .caption p{
  margin:0;
  font-style:italic;
  font-size:18px;
  opacity:.95;
}

/* Content panel */
.hero{
  background:
    radial-gradient(1200px 500px at 70% 10%, rgba(255,255,255,.35), rgba(255,255,255,0));
  padding:28px 0 60px;
}
.panel{
  background:var(--overlay);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--shadow);
  border-radius:2px;
}
.panel-inner{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:26px;
  padding:26px;
  align-items:start;
}
h2{margin:2px 0 12px; font-size:18px; font-weight:700}
p{font-style:italic; margin:0 0 18px; color:#333; font-size:17px}
.lead{font-style:italic; color:var(--muted); font-size:18px; margin:0 0 18px}

.photo{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  padding:10px;
}
.photo img{
  width:100%;
  /*aspect-ratio: 4 / 3;*/
  object-fit:cover;
}
.photo .cap{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-style:normal;
  font-size:12px;
  color:#555;
  margin-top:8px;
}

/* Cards */
.section{padding:26px 0}
.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--cardShadow);
  border-radius:14px;
  overflow:hidden;
}
.card .media{
  height:170px;
  background:#eee;
}
.card .media img{
  width:100%; height:170px;
  object-fit:cover;
}
.card .body{
  padding:14px 14px 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.card .body h3{margin:0 0 6px; font-size:16px}
.card .body p{margin:0; font-style:normal; font-size:14px; color:#444}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.thumb{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 8px 18px rgba(0,0,0,.10);
  cursor:pointer;
  background:#fff;
}
.thumb img{
  width:100%;
  height:160px;
  object-fit:cover;
}

/* Footer */
.footer{
  background:#f6f6f6;
  border-top:1px solid rgba(0,0,0,.08);
  padding:18px 0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:14px;
  color:#333;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background:rgba(0,0,0,.82);
  display:none;
  align-items:center; justify-content:center;
  padding:18px;
  z-index:9999;
}
.lightbox.is-open{display:flex}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height:88vh;
  object-fit:contain;
  border-radius:14px;
  background:#000;
}
.lightbox .close{
  position:absolute;
  top:14px; right:14px;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:20px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 980px){
  .grid{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr 1fr 1fr}
  .panel-inner{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav{display:none}
  .burger{display:block}
  .gallery{grid-template-columns:1fr 1fr}
  .slider .caption h1{font-size:26px}
  .slider .caption p{font-size:16px}
}


/* Prices table */
.prices{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  border-radius:12px;
  overflow:hidden;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.prices thead{
  background:rgba(134,176,31,.15);
}
.prices th, .prices td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid rgba(0,0,0,.08);
  font-size:14px;
}
.prices th{
  font-weight:600;
}
.prices tbody tr:hover{
  background:rgba(134,176,31,.08);
}
.prices td:last-child{
  white-space:nowrap;
  font-weight:600;
}

/* Header caption alignment + readability */
.slider .caption{
  left:50%;
  transform:translate(-50%, -50%);
  max-width:1100px;
  width:calc(100% - 36px);
}
.slider .caption h1,
.slider .caption p{
  color:#ffffff;
}
.slider .caption h1{
  text-shadow:0 3px 16px rgba(0,0,0,.6);
}
.slider .caption p{
  text-shadow:0 2px 10px rgba(0,0,0,.6);
}

/* Stronger overlay for contrast */
.slider .overlay{
  background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.15) 60%, rgba(0,0,0,.05));
}

/* Font Awesome icon tweaks */
.topbar i.fa-solid, .topbar i.fa-regular, .topbar i.fa-brands{
  font-size:15px;
  line-height:1;
}
.chip i{width:16px; text-align:center;}
.social a i{font-size:14px;}

/* Call To Action Button */
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  background:linear-gradient(135deg, #86b01f, #6f9518);
  color:#ffffff;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:.2px;
  box-shadow:0 10px 22px rgba(134,176,31,.35);
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(134,176,31,.45);
  filter:brightness(1.05);
}

.cta-btn:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(134,176,31,.35);
}

.cta-btn i{
  font-size:14px;
}

/* Sticky mobile CTA bar */
.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9996;

  display:none; /* only on mobile */
  padding:10px 12px;

  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-top:1px solid rgba(0,0,0,.10);
}

.sticky-cta .inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.sticky-cta a{
  flex:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:14px 16px;
  border-radius:14px;

  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
  font-size:15px;

  color:#fff;
  background:linear-gradient(135deg, #86b01f, #6f9518);
  box-shadow:0 10px 22px rgba(134,176,31,.32);
}

.sticky-cta a.secondary{
  flex:0 0 auto;
  width:52px;
  padding:14px 0;
  background:#25D366;
  box-shadow:0 10px 22px rgba(37,211,102,.28);
}

.sticky-cta a i{
  font-size:16px;
}

@media (max-width: 760px){
  .sticky-cta{ display:block; }
  /* extra ruimte zodat content niet achter de sticky bar valt */
  body{ padding-bottom:82px; }
}


/* Floating WhatsApp button */
.fab-whatsapp{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:9998;

  width:56px;
  height:56px;
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#25D366;
  color:#fff;

  box-shadow:0 12px 26px rgba(0,0,0,.22);
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.fab-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(0,0,0,.26);
  filter:brightness(1.03);
}

.fab-whatsapp i{
  font-size:26px;
}
@media (max-width: 520px){
  .fab-whatsapp{ display:none; }
}

/* Small label bubble (optional) */
.fab-whatsapp-label{
  position:fixed;
  right:84px;
  bottom:26px;
  z-index:9997;

  background:rgba(0,0,0,.78);
  color:#fff;
  padding:10px 12px;
  border-radius:12px;

  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:13px;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

@media (max-width: 520px){
  .fab-whatsapp-label{ display:none; }
}

/* Mobiele optimalisatie voor tarieven tabel */
@media (max-width: 760px){
  .prices{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
  }

  .prices thead{
    display:none; /* kop verbergen op mobiel */
  }

  .prices tr{
    display:block;
    margin-bottom:12px;
    border-bottom:1px solid rgba(0,0,0,.08);
  }

  .prices td{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:10px 12px;
    font-size:14px;
  }

  .prices td::before{
    content: attr(data-label);
    font-weight:600;
    color:#555;
  }
}

/* Home: kolommen onder elkaar op mobiel */
@media (max-width: 760px){
  .panel-inner{
    grid-template-columns: 1fr !important;
  }

  .grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px){
  .photo{
    margin-top:12px;
  }

  h2{
    font-size:18px;
  }

  .lead{
    font-size:16px;
  }
}

.credit-link{
  display:inline-flex;
  align-items:center;
  gap:4px;
  text-decoration:none;
}

.credit-icon{
  display:block;
  width:15px;
  height:15px;
  border-radius:6px;       /* subtiele rounding */
}

/* Google reviews */
.google-reviews-badge{
  display:inline-block;
  color:#fff;
  text-decoration:none;
}
.google-reviews-badge .fa-star{
  color:#FFFF00;
}


