* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: rgba(251,228,180,0.2);
  --text: #0f172a;
  --muted: #475569;
  --brand: #53c3d9;
  --brand-dark: #134a63;
  --accent: #22c55e;
  --card: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
  --radius: 16px;
  --maxw: 1100px;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
   display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1; /* neemt alle beschikbare ruimte in */
}

.container { margin: 0 auto; width: 92%; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(6px);
  background: linear-gradient(90deg, #22c55e 0%, #134a63 60%, #53c3d9 100%);
  box-shadow: 0 4px 16px -8px rgba(20, 74, 99, 0.12);
  border-bottom: 1px solid rgba(20, 74, 99, 0.10);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 175px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 150px; width: auto; }

nav ul { list-style: none; display: flex; gap: 20px; }
nav a {
  text-decoration: none;
  font-weight: 600;
}
header nav a {
  color: #fff !important;
}
/* Header links */
header nav a {
  color: #fff;
  transition: color 0.3s, background 0.3s;
}

header nav a:hover {
  color: #000; /* gelijk aan de CTA hover tekstkleur */
  background: rgba(255,255,255,0.2); /* lichte overlay op hover */
  border-radius: 8px; /* maakt het netter */
  /*padding: 4px 8px;*/
}


/*.cta {
  padding: 8px 16px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}*/
.cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: none;              /* verwijder standaard knoprand */
  cursor: pointer;
  font-family: inherit;      /* zelfde font */
  font-size: inherit;
  transition: background 0.2s ease;
}
.cta:hover { background: var(--brand); color: #000; }
button.cta {
  font-family: inherit;
  font-size: inherit;
}
header .cta:hover {
  color: #000 !important;
  background: var(--brand);
}

/* haal browserstijl van knoppen weg */
button.cta {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Mobile nav */
.mobile-menu { display: none; }
.burger { display:none; background:none; border:none; font-size: 28px; }
@media (max-width: 820px) {
  nav ul { display: none; }
  .burger { display:block; }
  .mobile-menu { display:none; position: absolute; left:0; right:0; top:175px; background:#fff; border-bottom:1px solid var(--border); }
  .mobile-menu a { display:block; padding:14px 20px; color:var(--muted); text-decoration:none; font-weight:600; }
  .mobile-menu a:hover { background: var(--card); color: var(--text); }
}

/* Hero */
.hero { padding: 72px 0 48px; }
.hero-inner { display:grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items:start; }
.badge { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border:2px solid var(--border); padding:6px; border-radius:999px; }
.badge img {
  height: 150px; width: 150px; object-fit: cover;
  border-radius: 999px; background: #fff; border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
h1 { font-size: clamp(28px, 4vw, 46px); line-height:1.1; margin: 14px 0 12px; }
.lead { font-size: 18px; color: var(--muted); margin-bottom: 22px; }
.hero-calls { display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 24px; }
.taglist { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; margin-bottom: 24px; }
/* Ensure any section inside .taglist (like hero title) takes full width */
.taglist > section { flex-basis: 100%; display: block; }
.taglist > section h1, .taglist > section p { width: 100%; }
.tag { font-size:36px; padding:6px 10px; background: var(--card); border:1px solid var(--border); border-radius:999px; font-weight: bold }
.hero-card { background: linear-gradient(90deg, #53c3d9 0%, #134a63 60%,#22c55e 100%), #fff; border:1px solid var(--border); border-radius: var(--radius); padding:28px; box-shadow: var(--shadow); color: #fff; }

/* Grid */
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:22px; box-shadow: var(--shadow); margin-bottom:6px }
.card h3 { margin-top:0; margin-bottom:6px; }
.card p { margin:0; color: var(--muted); }
.card p strong {  display: inline-block;  margin-bottom: 12px;}
@media (max-width: 980px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } .hero-inner { grid-template-columns: 1fr; } }

/* Sections */
.section-title { font-size: clamp(22px, 3vw, 34px); margin: 0 0 10px; }
.muted { color: var(--muted); }
.section-light { background: var(--card); border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin-bottom: 48px 0; padding: 32px 0; }
section:not(:first-of-type) { margin-top: 10px; }
#over, #aanbod, #themas, #contact { scroll-margin-top: 180px; }
/*tabel tarieven*/
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tariff-table thead {
  background: linear-gradient(90deg, #53c3d9 0%, #134a63 90%);
  color: #fff;
}

.tariff-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.tariff-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: #333;
}

.tariff-table tbody tr:hover {
  background-color: rgba(83, 195, 217, 0.05);
  transition: background-color 0.2s;
}

.tariff-table tbody tr:last-child td {
  border-bottom: none;
}

.tariff-table .price {
  font-weight: bold;
  color: var(--brand);
  font-size: 18px;
}

/* Responsive tabel op kleine schermen */
@media (max-width: 640px) {
  .tariff-table {
    font-size: 14px;
  }
  
  .tariff-table th,
  .tariff-table td {
    padding: 12px 8px;
  }
  
  .tariff-table .price {
    font-size: 16px;
  }
}
.tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 kolommen */
  gap: 24px;
  margin-top: 32px;
}

.table-wrapper h3 {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 20px;
}
.tariff-table .muted {
  font-size: 14px;
  color: #999;
  margin-left: 6px;
}

/* Responsive: op kleine schermen */
@media (max-width: 1024px) {
  .tables-grid {
    grid-template-columns: repeat(2, 1fr);  /* 2 kolommen op tablets */
  }
}

@media (max-width: 640px) {
  .tables-grid {
    grid-template-columns: 1fr;  /* 1 kolom op mobiel */
  }
}
/* Offer */
.offer { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer .card ul { padding-left:16px; margin: 6px 0 0; }
@media (max-width: 980px) { .offer { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .offer { grid-template-columns: 1fr; } }

/* Contact */
form { display:grid; gap:12px; max-width: 640px; }
label { font-weight:600; }
input, textarea { width:100%; padding:12px 14px; border:1px solid var(--border); border-radius:12px; font: inherit; }
textarea { min-height: 140px; resize: vertical; }
form > div:last-child { margin-bottom: 10px; }

/* Footer */
footer { border-top:1px solid var(--border); padding: 32px 0; background:#fff; }
footer .logo img { height: 60px; width: auto; }
.footer-grid { display:grid; grid-template-columns: 1fr auto; align-items:center; gap: 18px; }
.small { font-size: 14px; color: var(--muted); }

