/* ═══════════════════════════════════
   DOEL2020 – GEDEELDE STIJLEN
   ═══════════════════════════════════ */
:root {
  --rood: #c0392b;
  --rood-donker: #922b21;
  --bg: #fff1e5;
  --wit: #ffffff;
  --tekst: #1a1a1a;
  --tekst-licht: #666666;
  --rand: #d9c4af;
  --rand-licht: #ecddd0;
  --kop: 'Playfair Display', Georgia, serif;
  --body: 'Source Serif 4', Georgia, serif;
}

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

body {
  background: var(--bg);
  color: var(--tekst);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
}


.logo-div {
    --tw-shadow-color: rgb(196 30 58 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-bg-opacity: 1;
  background-color: var(--rood);
  border-radius: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.logo-span {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  font-weight: 700;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 640px) {
  .logo-span {
    font-size: 1.5rem;
    line-height: 2rem;
  }

.logo-div {
      width: 3.5rem;
      height: 3.5rem;
}

}

/* ── TOPBALK ── */
.topbalk {
  background: var(--rood);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 15px;
  font-family: var(--body);
  font-weight: 600;
}

.topbalk a {
  color: #fff;
  text-decoration: underline;
}

.topbalk a:hover {
  opacity: .85;
}

/* ── HEADER ── */
header {
  background: var(--wit);
  border-bottom: 3px solid var(--rood);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  gap: 20px;
}

.logo-blok {
  text-decoration: none;
}

.logo-naam {
  font-family: var(--kop);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--rood);
  letter-spacing: -.02em;
  line-height: 1;
}

.logo-sub {
  font-size: .78rem;
  color: var(--tekst-licht);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.header-aankondiging {
  flex: 1;
  font-family: var(--body);
  font-size: .92rem;
  font-style: italic;
  color: var(--tekst);
  text-align: center;
  line-height: 1.5;
  padding: 0 10px;
}

.header-aankondiging a {
  color: var(--rood);
  font-weight: 700;
  text-decoration: none;
}

.header-aankondiging a:hover {
  text-decoration: underline;
}

.header-fb {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.header-fb a {
  display: inline-block;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wit);
  background: #1877f2;
}

.header-fb a.en {
  background: #555;
}

.header-fb a:hover {
  opacity: .85;
}
/* ── NAV ── */
nav {
  background: var(--wit);
  border-bottom: 2px solid var(--rand);
}
.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

nav a {
  display: block;
  padding: 13px 20px;
  font-family: var(--kop);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tekst);
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
nav a:hover,
nav a.actief {
  color: var(--rood);
}

.nav-inner > a:hover,
.nav-inner > a.actief {
  border-bottom: 3px solid var(--rood);
}
.nav-item > a.actief {
  border-bottom: 3px solid var(--rood);
}

/* ── DROPDOWN ── */
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wit);
  border: 1px solid var(--rand);
  min-width: 200px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease;
  z-index: 100;
}
.nav-item:hover .dropdown {
  max-height: 500px;
}

.dropdown a {
  display: block;
  padding: 11px 20px;
  font-family: var(--kop);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tekst);
  text-decoration: none;
  border-bottom: 1px solid var(--rand-licht);
  border-left: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.dropdown a:last-child {
  border-bottom: none;
}

/* ── RESPONSIVE ── */
@media (hover: none) {
  .nav-item {
    width: auto;
  }

  .dropdown {
    position: absolute;
    border: 1px solid var(--rand);
    max-height: 0;
    width: 200px;
  }

  .nav-item:hover .dropdown {
    max-height: 0;
  }
}

/* ── PAGINA WRAPPER ── */
.pagina {
  max-width: 1400px;
  margin: 28px auto 60px;
  padding: 0 20px;
}

/* ── SECTIE LABEL ── */
.label {
  font-family: var(--kop);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tekst-licht);
  border-bottom: 1px solid var(--rand);
  padding-bottom: 7px;
  margin-bottom: 18px;
}

.label span {
  color: var(--rood);
}

/* ── KOLOM TITEL (h2 boven sectie) ── */
.kolom-titel {
  font-family: var(--kop);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tekst);
  border-top: 3px solid var(--tekst);
  padding-top: 10px;
  margin-bottom: 16px;
}

.kolom-titel.rood {
  border-top-color: var(--rood);
  color: var(--rood);
}

/* ── NIEUWSOVERZICHT ZIJBALK (rechts, alle pagina's) ── */
.nieuwsoverzicht {
  list-style: none;
}

.nieuwsoverzicht li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rand-licht);
  align-items: flex-start;
}

.nieuwsoverzicht li:first-child {
  padding-top: 0;
}

.nieuwsoverzicht li:last-child {
  border-bottom: none;
}

.nieuwsoverzicht .thumb {
  width: 56px;
  height: 44px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--rand-licht);
  display: block;
}

.thumb-placeholder {
  width: 56px;
  height: 44px;
  flex-shrink: 0;
  background: var(--rand-licht);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--tekst-licht);
  text-align: center;
}

.nieuwsoverzicht .info a {
  font-family: var(--body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--tekst);
  text-decoration: none;
  line-height: 1.35;
  display: block;
}

.nieuwsoverzicht .info a:hover {
  color: var(--rood);
}

.nieuwsoverzicht .datum {
  font-size: .75rem;
  color: var(--tekst-licht);
  font-style: italic;
  margin-top: 3px;
  display: block;
}

/* ── MEDIA ITEMS (links kolom home) ── */
.media-lijst {
  list-style: none;
}

.media-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--rand-licht);
}

.media-item:first-child {
  padding-top: 0;
}

.media-item:last-child {
  border-bottom: none;
}

.media-bron {
  font-family: var(--kop);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wit);
  background: var(--tekst);
  display: inline-block;
  padding: 2px 7px;
  margin-bottom: 5px;
}

.media-bron.rood {
  background: var(--rood);
}

.media-item a {
  font-family: var(--kop);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tekst);
  text-decoration: none;
  line-height: 1.35;
  display: block;
  margin-bottom: 3px;
}

.media-item a:hover {
  color: var(--rood);
}

.media-item .datum {
  font-size: .78rem;
  color: var(--tekst-licht);
  font-style: italic;
}

/* ── PERS/LIJST ITEMS (midden kolom oplijsting) ── */
.pers-lijst {
  list-style: none;
}

.pers-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--rand-licht);
}

.pers-item:first-child {
  padding-top: 0;
}

.pers-item:last-child {
  border-bottom: none;
}

.pers-item a {
  font-family: var(--kop);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rood);
  text-decoration: none;
  display: block;
  line-height: 1.35;
  margin-bottom: 3px;
}

.pers-item a:hover {
  text-decoration: underline;
}

.pers-item .subtitel {
  font-size: .88rem;
  color: var(--tekst);
  font-style: italic;
}

.pers-item .meta {
  font-size: .78rem;
  color: var(--tekst-licht);
  margin-top: 2px;
}

/* ── ARTIKEL PAGINA ── */
.artikel-meta {
  font-family: var(--body);
  font-size: .88rem;
  color: var(--tekst-licht);
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 600;
}

.artikel-titel {
  font-family: var(--kop);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--tekst);
}

.artikel-lead {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 22px;
  border-left: 4px solid var(--rood);
  padding-left: 16px;
}

.artikel-body h3 {
  font-family: var(--kop);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--tekst);
}

.artikel-body p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ── MEER KNOP ── */
.meer-knop {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: var(--tekst);
  color: var(--wit);
  font-family: var(--kop);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .15s;
}

.meer-knop:hover {
  background: var(--rood);
}

/* ── FOOTER ── */
footer {
  background: var(--tekst);
  color: #aaa;
  padding: 32px 20px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  font-family: var(--kop);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--rood);
  margin-bottom: 8px;
}

.footer-omschrijving {
  font-size: .85rem;
  line-height: 1.6;
  color: #888;
}

.footer-kop {
  font-family: var(--kop);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #888;
  font-size: .87rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--rood);
}

.footer-onderaan {
  max-width: 1060px;
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid #333;
  font-size: .78rem;
  color: #555;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .header-fb {
    display: none;
  }

  .header-aankondiging {
    font-size: .82rem;
  }


  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .logo-naam {
    font-size: 1.6rem;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .artikel-titel {
    font-size: 1.4rem;
  }
}


/* ARTIKEL: 2 kolommen – links artikel, rechts nieuwsoverzicht */
.artikel-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}

.artikel-grid>aside {
  border-left: 1px solid var(--rand);
  padding-left: 32px;
}

/* Terug-link */
.terug-link {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--body);
  font-size: .85rem;
  color: var(--tekst-licht);
  text-decoration: none;
}

.terug-link:hover {
  color: var(--rood);
}

.terug-link::before {
  content: "← ";
}

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

  .artikel-grid>aside {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rand);
    padding-top: 24px;
  }
}


/* HOME: 3 kolommen */
.home-grid {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 32px;
  align-items: start;
}

/* Divider tussen kolommen */
.home-grid>*+* {
  border-left: 1px solid var(--rand);
  padding-left: 28px;
}

/* Uitgelicht artikel midden */
.uitgelicht-box {
  background: var(--wit);
  border-top: 3px solid var(--rood);
  padding: 22px 20px 20px;
  margin-bottom: 24px;
}

.uitgelicht-label {
  font-family: var(--kop);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rood);
  margin-bottom: 8px;
}

.uitgelicht-box a {
  font-family: var(--kop);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--tekst);
  text-decoration: none;
  line-height: 1.35;
  display: block;
}

.uitgelicht-box a:hover {
  color: var(--rood);
}

.uitgelicht-box .datum {
  font-size: .8rem;
  color: var(--tekst-licht);
  font-style: italic;
  margin-top: 6px;
}

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

  .home-grid>*+* {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rand);
    padding-top: 24px;
  }
}


/* OPLIJSTING: 3 kolommen – links nieuwsartikels, midden lijst, rechts nieuwsoverzicht */
.lijst-grid {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 32px;
  align-items: start;
}

.lijst-grid>*+* {
  border-left: 1px solid var(--rand);
  padding-left: 28px;
}

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

  .lijst-grid>*+* {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rand);
    padding-top: 24px;
  }
}