/* -----------------------------------------------------------
   BASISVARIABELE & THEMA
----------------------------------------------------------- */
:root {
  --fg: #222;
  --fg-muted: #777;
  --bg: #ffffff;

  --accent: #e11e1e;
  --accent-soft: #ffdddd;

  --border: #e1e1e1;
  --border-soft: #f1f1f1;

  --card-bg: #ffffff;
  --shadow: rgba(0,0,0,0.06);

  --container-narrow: 960px;
  --container-wide: 1100px;

  --radius: 18px;
  --radius-soft: 12px;
}

/* -----------------------------------------------------------
   RESET & BASISSTIJLEN
----------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------
   LAYOUT CONTAINERS
----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 22px;
}

.container.narrow {
  max-width: var(--container-narrow);
}

/* -----------------------------------------------------------
   NAVIGATIE
----------------------------------------------------------- */
.page-border {
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.top-nav {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 10;
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 600;
  color: var(--fg);
  font-size: 17px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--fg);
  font-size: 15px;
  padding: 4px 6px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links a.active {
  color: var(--accent);
}

/* Hamburger knop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
}

/* Taalwissel */
.lang-switch {
  position: absolute;
  top: 14px;
  right: 22px;
  margin: 0;
  font-size: 13px;
  color: var(--fg-muted);
  z-index: 20;
}

.lang-switch a {
  font-weight: 600;
}

.lang-switch a.active {
  color: var(--accent);
}

/* Subnav */
.subnav {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}

.subnav-inner {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.subnav-link {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.subnav-link:hover {
  text-decoration: underline;
}

.subnav-link.active {
  color: var(--fg);
}

/* -----------------------------------------------------------
   HEADER
----------------------------------------------------------- */
.site-header {
  padding: 40px 0 30px;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}

.small-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.hero h1 {
  margin: 14px 0 6px;
  font-size: 42px;
  font-weight: 600;
}

.hero-sub {
  color: var(--fg-muted);
  white-space: normal;
}

/* -----------------------------------------------------------
   SECTIES & INHOUD
----------------------------------------------------------- */
.section {
  padding: 40px 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
}

.text-block {
  margin-bottom: 24px;
}

.text-block h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.text-block p {
  margin: 0 0 12px;
  font-size: 16px;
}

.text-block.narrow {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------------------
   KAARTEN & GRID
----------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 24px;
}

.card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  padding: 22px 20px 20px;
  border-radius: var(--radius);
  color: var(--fg);
  box-shadow: 0 4px 14px var(--shadow);
  transition: 0.15s ease;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--fg);
}

.card p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--fg-muted);
}

.card-cta {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.site-footer {
  margin-top: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.site-footer .small-text {
  font-size: 14px;
  color: var(--fg-muted);
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------------------- */
@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding: 16px 22px;
    background: #fff;
    display: none;
    border-top: 1px solid var(--border-soft);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .lang-switch {
    position: static;
    text-align: center;
    margin-top: 10px;
  }
}

@media (max-width: 580px) {
  .hero h1 {
    font-size: 34px;
  }

  .section {
    padding: 30px 0;
  }
}
