/* Vendily publieke website — carte blanche qua vormgeving (analyse/15),
   maar dezelfde stijltokens als de app voor merkherkenning
   (analyse/13-stijlgids.md): kleurpalet, border-radius, spacingritme. */

:root {
  --teal: #2bb3c9;
  --teal-dark: #1f8fa1;
  --orange: #fe6402;
  --ink: #22313a;
  --muted: #6b7d84;
  --border: #e2e8e6;
  --bg: #f6f9f8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

a { color: var(--teal-dark); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

header.site {
  background: var(--teal);
  color: #fff;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem; flex-wrap: wrap; gap: 0.75rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.15rem; color: #fff; text-decoration: none; }
.logo img { width: 32px; height: 32px; border-radius: 8px; }
nav.site a {
  color: rgba(255,255,255,0.92); text-decoration: none; margin-left: 1.1rem;
  font-size: 0.95rem;
}
nav.site a:hover, nav.site a[aria-current="page"] { color: #fff; text-decoration: underline; }
.knop-hoofd {
  display: inline-block; background: #fff; color: var(--teal-dark);
  border-radius: 999px; padding: 0.5rem 1.1rem; font-weight: 700;
  text-decoration: none; margin-left: 1.1rem;
}
.knop-hoofd:hover { background: var(--bg); }

.hero {
  background: linear-gradient(180deg, var(--bg), #fff);
  padding: 3.5rem 0 3rem;
}
.hero h1 { font-size: 2.2rem; margin: 0 0 1rem; max-width: 34ch; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; margin: 0 0 1.5rem; }
.hero-acties { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.button {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal); color: #fff; border: 0; border-radius: 8px;
  padding: 0.7rem 1.4rem; font-size: 1rem; font-weight: 700; text-decoration: none;
}
.button:hover { background: var(--teal-dark); }
.button.secundair { background: #fff; color: var(--ink); border: 1px solid var(--border); }

section.blok { padding: 3rem 0; border-top: 1px solid var(--border); }
section.blok:first-of-type { border-top: 0; }
h2.sectiekop {
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem;
  color: var(--muted); margin: 0 0 0.4rem;
}
h2.titel { font-size: 1.6rem; margin: 0 0 1.5rem; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 1.25rem; text-align: left;
}
.card .icoon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 1.3rem; margin-bottom: 0.75rem;
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

table.prijzen { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
table.prijzen th, table.prijzen td {
  text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--border);
}
table.prijzen th { color: var(--muted); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; }
table.prijzen td.bedrag { font-weight: 700; text-align: right; }

.badge { display: inline-block; background: var(--orange); color: #fff; border-radius: 999px; padding: 0.15rem 0.7rem; font-size: 0.78rem; font-weight: 600; }

.uitleglijst { padding-left: 1.1rem; }
.uitleglijst li { margin-bottom: 0.6rem; }

.cta-strook {
  background: var(--bg); border-radius: 12px; padding: 2rem; text-align: center;
  margin-top: 1rem;
}
.cta-strook h2 { margin: 0 0 0.5rem; font-size: 1.4rem; }
.cta-strook p { color: var(--muted); margin: 0 0 1.2rem; }

.tekstpagina h1 { font-size: 1.7rem; margin-top: 0.5rem; }
.tekstpagina h2 { font-size: 1.15rem; margin-top: 1.8rem; }
.tekstpagina p, .tekstpagina li { color: var(--ink); }
.tekstpagina .placeholder {
  background: #fff7e6; border: 1px dashed #e0b34d; border-radius: 6px;
  padding: 0.1rem 0.4rem; font-size: 0.92em;
}

footer.site {
  background: var(--ink); color: rgba(255,255,255,0.85);
  padding: 2.5rem 0; margin-top: 2rem; font-size: 0.9rem;
}
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
footer.site a { color: rgba(255,255,255,0.85); }
footer.site .footer-links a { margin-right: 1rem; }
footer.site .footer-links a:last-child { margin-right: 0; }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.7rem; }
  nav.site { display: none; } /* mobiel: hoofdknop + logo volstaan op deze eenvoudige site */
}
