/* =========================
   1) Basis
   ========================= */

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  padding: 2rem;
  line-height: 1.5;
}

li { margin-bottom: 0.75rem; }
h2 { margin-top: 4rem; }
h3 { margin-top: 3rem; }

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}


/* =========================
   2) Layout
   ========================= */

.container {
  max-width: 900px;
  margin: 0 auto;
}


/* =========================
   3) Header + navigatie
   ========================= */

.site-header {
  display: flex;
  align-items: flex-start;

  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.25rem;
}

/* Logo */
.site-logo img {
  width: auto;
  max-width: 100%;
  display: block;
  height: auto;  /* basis: geen vaste hoogte meer */
}

/* Home + alle toekomstige pagina's */
.site-logo img.logo-home {
  height: 100px;  /* kies jouw gewenste hoogte */
}

/* Alleen documenten */
.site-logo img.logo-documenten {
  height: 60px;  /* of juist kleiner, bv. 50px */
}

/* Subtiele hover op het logo */
.site-logo img {
  opacity: 0.85;
  transition: opacity 0.3s ease-in-out;
}

.site-logo:hover img {
  opacity: 1;
}


/* Header-menu */
.site-nav {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}

/* Alleen voor links in de header-nav */
.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.site-nav a.active {
  border-bottom: 2px solid #ddd;
  padding-bottom: 2px;
}


/* =========================
   4) Navigatie in de content
   ========================= */

main nav {
  margin-bottom: 1.5rem;
}

main nav a {
  margin-right: 1rem;
  text-decoration: none;
}

main nav a:hover {
  text-decoration: underline;
}
