/* =====================
   WIREFRAME — tekst & structuur zichtbaar
   Geen kleur, geen opmaak
   ===================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: #111;
  background: #fff;
}
a { color: #111; text-decoration: underline; }
img { max-width: 100%; display: block; border: 1px dashed #999; }
ul { list-style: none; }

/* =====================
   LAYOUT
   ===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 48px 0; border-bottom: 2px solid #111; }
section.bg-light,
section.bg-dark,
section.bg-gold { background: #fff !important; color: #111 !important; }

/* =====================
   TYPOGRAFIE
   ===================== */
h1 { font-size: 32px; font-weight: bold; margin-bottom: 12px; border-bottom: 2px solid #111; padding-bottom: 8px; }
h2 { font-size: 24px; font-weight: bold; margin-bottom: 8px; }
h3 { font-size: 18px; font-weight: bold; margin-bottom: 6px; }
h4 { font-size: 15px; font-weight: bold; margin-bottom: 6px; }
p { margin-bottom: 12px; }
.subtitle { font-size: 15px; color: #333; margin-bottom: 24px; font-style: italic; }
.bg-dark .subtitle,
.bg-gold .subtitle { color: #333 !important; }

/* Kleur overschrijvingen */
h1 span, h2 span, h3 span,
[style*="color:#C9A84C"],
[style*="color: #C9A84C"] { color: #111 !important; }

[style*="color:#fff"],
[style*="color: #fff"],
[style*="color:white"],
[style*="color:#ccc"],
[style*="color:#aaa"] { color: #111 !important; }

[style*="background:#111"],
[style*="background: #111"],
[style*="background:#1a1a1a"],
[style*="background:#C9A84C"],
[style*="background: #C9A84C"] {
  background: #fff !important;
  color: #111 !important;
}

/* =====================
   KNOPPEN
   ===================== */
.btn,
.btn-outline,
.btn-white,
.btn-dark {
  display: inline-block;
  background: #fff !important;
  color: #111 !important;
  padding: 8px 18px;
  border: 1.5px solid #111 !important;
  border-radius: 0;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none !important;
  font-family: Georgia, serif;
}
button.btn {
  cursor: pointer;
  font-family: Georgia, serif;
}

/* =====================
   HEADER
   ===================== */
.site-header {
  background: #fff !important;
  border-bottom: 2px solid #111;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.logo-box { font-size: 24px; color: #111 !important; }
.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: bold;
  color: #111 !important;
  font-family: Georgia, serif;
}
.logo-text small { font-size: 10px; font-weight: normal; color: #555; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  color: #111 !important;
  font-size: 13px;
  padding: 4px 8px;
  text-decoration: none;
  border: 1px solid transparent;
}
nav a:hover { border-color: #111; }
nav .btn { border: 1.5px solid #111 !important; margin-left: 6px; }

/* =====================
   HERO BADGE
   ===================== */
.hero-badge {
  display: inline-block;
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #111 !important;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* =====================
   HERO STATS
   ===================== */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #999;
  flex-wrap: wrap;
}
.hero-stat h3 { font-size: 24px; color: #111 !important; margin-bottom: 2px; }
.hero-stat p { font-size: 13px; color: #333; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* =====================
   GRIDS
   ===================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =====================
   CARDS
   ===================== */
.card {
  background: #fff !important;
  border: 1px solid #999;
  border-radius: 0;
  padding: 20px;
}
.card:hover { box-shadow: none; transform: none; }
.card-icon {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  font-size: 18px;
  margin-bottom: 8px;
}
.card p { color: #333 !important; font-size: 14px; }
.card .card-link { display: inline-block; margin-top: 10px; font-size: 13px; color: #111; }

/* =====================
   PLACEHOLDER IMAGES
   ===================== */
.img-placeholder {
  background: #f0f0f0 !important;
  border: 1px dashed #999;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 13px;
  font-style: italic;
}
.img-placeholder.tall { height: 280px; }
.img-placeholder.medium { height: 200px; }
.img-placeholder.short { height: 120px; }

/* =====================
   USP SECTIE
   ===================== */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.usp-item { padding: 20px 12px; border: 1px solid #ccc; }
.usp-number { font-size: 32px; font-weight: bold; color: #111 !important; line-height: 1; margin-bottom: 6px; }
.usp-label { font-size: 13px; color: #333 !important; }

/* =====================
   REVIEWS
   ===================== */
.review-card {
  background: #fff !important;
  border: 1px solid #999;
  border-radius: 0;
  padding: 20px;
}
.review-stars { color: #111 !important; font-size: 14px; margin-bottom: 8px; }
.review-text { color: #333 !important; font-size: 14px; font-style: italic; margin-bottom: 12px; }
.review-author { font-weight: bold; font-size: 13px; color: #111 !important; }
.review-company { font-size: 12px; color: #555; }

/* =====================
   STAPPEN
   ===================== */
.stappen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stap {
  text-align: left;
  padding: 20px;
  background: #fff !important;
  border: 1px solid #999;
  border-radius: 0;
}
.stap-nummer {
  width: 36px;
  height: 36px;
  background: #fff !important;
  color: #111 !important;
  border: 2px solid #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
.stap p { color: #333 !important; font-size: 14px; }

/* =====================
   BEFORE/AFTER SLIDER
   ===================== */
.ba-slider {
  position: relative;
  overflow: hidden;
  border: 1px dashed #999;
  cursor: ew-resize;
  user-select: none;
}
.ba-after, .ba-before {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #111 !important;
}
.ba-before { background: #e8e8e8 !important; }
.ba-after { background: #d0d0d0 !important; position: absolute; top: 0; left: 0; }
.ba-handle {
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background: #111;
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}
.ba-handle::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #111;
  padding: 4px 8px;
  border: 1px solid #111;
  font-size: 11px;
  white-space: nowrap;
}

/* =====================
   PROJECT GALLERY
   ===================== */
.project-item { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #ccc; }
.project-item:last-child { border-bottom: none; }
.gallery-slider { position: relative; }
.gallery-track { display: flex; overflow: hidden; border: 1px dashed #999; }
.gallery-slide {
  min-width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #666;
  font-style: italic;
  background: #f0f0f0 !important;
}
.gallery-nav { display: flex; gap: 8px; margin-top: 10px; align-items: center; }
.gallery-btn {
  background: #fff !important;
  color: #111 !important;
  border: 1.5px solid #111;
  width: 32px;
  height: 32px;
  border-radius: 0;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-dots { display: flex; gap: 4px; }
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: 1px solid #999;
}
.gallery-dot.active { background: #111; }
.project-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.project-tag {
  background: #fff !important;
  color: #111 !important;
  padding: 2px 8px;
  border: 1px solid #999;
  font-size: 12px;
  font-weight: bold;
}

/* =====================
   ACCORDION FAQ
   ===================== */
.accordion-item { border-bottom: 1px solid #ccc; }
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 14px 0;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  font-family: Georgia, serif;
}
.accordion-btn .icon { font-size: 18px; color: #111; transition: transform 0.2s; }
.accordion-btn.open .icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 16px; color: #333; line-height: 1.7; }
.accordion-body.open { display: block; }

/* =====================
   CONTACTFORMULIER
   ===================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: bold; color: #111; }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid #999;
  border-radius: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-family: Georgia, serif;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { outline: 2px solid #111; }
.form-group textarea { min-height: 120px; resize: vertical; }

/* =====================
   CHECKLIST
   ===================== */
.checklist li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: #111;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #111;
  font-weight: bold;
}

/* =====================
   TODO PAGINA
   ===================== */
.todo-section { margin-bottom: 32px; }
.todo-header {
  background: #f8f8f8 !important;
  border-left: 3px solid #111;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.todo-header h3 { color: #111 !important; }
.todo-header p { font-size: 13px; color: #555; }
.todo-items { display: flex; flex-direction: column; gap: 8px; }
.todo-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff !important;
  border: 1px solid #ddd;
  padding: 12px;
}
.todo-priority {
  font-size: 11px;
  font-weight: bold;
  padding: 2px 8px;
  border: 1px solid #999;
  flex-shrink: 0;
  margin-top: 2px;
  background: #fff !important;
  color: #111 !important;
}
.prio-high, .prio-med, .prio-low { background: #fff !important; color: #111 !important; }
.todo-item h4 { font-size: 14px; margin-bottom: 2px; }
.todo-item p { font-size: 13px; color: #555; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: #fff !important;
  color: #111 !important;
  padding: 40px 0 0;
  border-top: 2px solid #111;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-logo { font-size: 16px; font-weight: bold; color: #111 !important; margin-bottom: 10px; }
footer h4 { color: #111 !important; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
footer ul li { margin-bottom: 6px; }
footer ul li a { color: #111 !important; font-size: 13px; }
footer p { font-size: 13px; color: #333 !important; }
.footer-bottom {
  border-top: 1px solid #ccc;
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
}
.footer-bottom a { color: #111 !important; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .stappen-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  nav a:not(.btn) { display: none; }
}
@media (max-width: 600px) {
  section { padding: 32px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
}

/* ── NAV DROPDOWN (wireframe) ───────────────────────────────────────────── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger {
  cursor: pointer; color: #000 !important; font-size: 14px; font-weight: 600;
  padding: 6px 0; display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% - 8px); left: 0;
  background: #fff !important; border: 1px solid #000; min-width: 200px;
  z-index: 200; padding-top: 8px; padding-bottom: 4px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 16px; color: #000 !important; font-size: 13px;
  font-weight: 400; text-decoration: none; border-bottom: 1px dashed #ccc;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: #f0f0f0 !important; }

/* ── BA FULL-WIDTH SLIDER (wireframe) ────────────────────────────────────── */
.ba-full .ba-after,
.ba-full .ba-before { height: 500px !important; }
.ba-before { position: relative; }
.ba-label {
  position: absolute; bottom: 20px;
  background: #000; color: #fff;
  padding: 4px 12px; border-radius: 0;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  pointer-events: none; z-index: 2;
}
.ba-label-voor { left: 20px; }
.ba-label-na { right: 20px; }
.ba-caption { margin-top: 24px; }
.ba-caption h3 { font-size: 20px; margin-bottom: 6px; }
.ba-caption p { color: #333 !important; font-size: 15px; max-width: 760px; margin-top: 8px; }

/* ── PROJECT ROW (wireframe) ─────────────────────────────────────────────── */
.project-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid #000;
}
.project-row:last-child { border-bottom: none; }
.project-row .gallery-slide { height: 300px !important; }
.project-row h3 { font-size: 20px; margin-bottom: 10px; }
.project-werkzaamheden { color: #333 !important; font-size: 14px; line-height: 1.7; margin-top: 16px; }
.project-link { color: #000 !important; font-weight: 700; font-size: 14px; text-decoration: underline; display: inline-block; margin-top: 16px; }
@media (max-width: 900px) {
  .project-row { grid-template-columns: 1fr; gap: 24px; }
}
