/* ==========================================================================
   De Aftrap — basisstijl
   Simpele, platte CSS: alle kleuren en maten staan hierboven als variabelen,
   dus je kunt het hele uiterlijk aanpassen door alleen dit blok te wijzigen.
   ========================================================================== */

:root {
  --kleur-achtergrond: #ffffff;
  --kleur-tekst: #1a1a1a;
  --kleur-tekst-zacht: #555555;
  --kleur-accent: #37003c;      /* Premier League paars */
  --kleur-accent-licht: #f2e9f4;
  --kleur-rand: #e5e5e5;
  --lettertype: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --breedte-inhoud: 860px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--lettertype);
  color: var(--kleur-tekst);
  background: var(--kleur-achtergrond);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/* ---- Header & navigatie ---- */

header.site-header {
  border-bottom: 1px solid var(--kleur-rand);
}

.header-inner {
  max-width: var(--breedte-inhoud);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-titel {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--kleur-tekst);
  letter-spacing: -0.02em;
}

.site-titel span {
  color: var(--kleur-accent);
}

nav.hoofdmenu ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

nav.hoofdmenu a {
  color: var(--kleur-tekst);
  font-weight: 500;
}

nav.hoofdmenu a.actief {
  color: var(--kleur-accent);
  font-weight: 700;
}

/* ---- Layout / inhoud ---- */

main {
  max-width: var(--breedte-inhoud);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

section {
  margin-bottom: 3rem;
}

section:last-child {
  margin-bottom: 0;
}

/* ---- Hero (homepage) ---- */

.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--kleur-rand);
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.hero .subtitel {
  font-size: 1.3rem;
  color: var(--kleur-accent);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.hero p.intro {
  font-size: 1.1rem;
  color: var(--kleur-tekst-zacht);
  max-width: 640px;
}

/* ---- Pijlers (homepage) ---- */

.pijlers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) {
  .pijlers {
    grid-template-columns: 1fr;
  }
}

.pijler {
  border: 1px solid var(--kleur-rand);
  border-radius: 8px;
  padding: 1.75rem;
  background: var(--kleur-accent-licht);
}

.pijler h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.pijler p {
  color: var(--kleur-tekst-zacht);
}

.pijler .lees-meer {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ---- Over-teaser (homepage) ---- */

.over-teaser {
  border-top: 1px solid var(--kleur-rand);
  padding-top: 2rem;
  text-align: center;
}

.over-teaser p {
  font-size: 1.1rem;
  color: var(--kleur-tekst-zacht);
  font-style: italic;
}

/* ---- Sectiepagina's (Premier League / FPL Journaal / Over) ---- */

.paginakop h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.paginakop .inleiding {
  color: var(--kleur-tekst-zacht);
  font-size: 1.05rem;
  max-width: 640px;
}

.onderdeel {
  border-top: 1px solid var(--kleur-rand);
  padding-top: 1.75rem;
}

.onderdeel h2 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.onderdeel p {
  color: var(--kleur-tekst-zacht);
}

.placeholder-artikelen {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.placeholder-artikelen li {
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--kleur-rand);
  color: var(--kleur-tekst-zacht);
  font-style: italic;
}

/* ---- Footer ---- */

footer.site-footer {
  border-top: 1px solid var(--kleur-rand);
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--breedte-inhoud);
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--kleur-tekst-zacht);
  text-align: center;
}
