/* Reset en Basis Stijlen */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@700;900&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-kop);
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--kleur-primair);
  text-decoration: none;
  transition: color var(--animatie-snelheid-normaal);
}

a:hover {
  color: var(--kleur-secundair);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1em;
}

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

/* Helper Klassen */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.text-rechts { text-align: right; }
.text-links { text-align: left; }

.verborgen { display: none !important; }
