/* ============================================================
   HAAFTEN KWIEK — MAIN CSS
   ============================================================ */

/* === RESET & VARIABELEN === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --groen: #3B6D11;
  --groen-licht: #639922;
  --groen-zacht: #EAF3DE;
  --groen-donker: #27500A;
  --lijn: #C0DD97;
  --wit: #FAFAF8;
  --tekst: #1a1a18;
  --grijs: #5F5E5A;
}
body { font-family: 'Source Sans 3', sans-serif; color: var(--tekst); background: var(--wit); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* === NAVIGATIE === */
#hoofd-nav {
  background: var(--groen-donker);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-bal { width: 38px; height: 38px; background: var(--groen-licht); border-radius: 50%; position: relative; overflow: hidden; flex-shrink: 0; }
.logo-bal::before { content: ''; position: absolute; width: 100%; height: 2px; background: var(--groen-donker); top: 50%; transform: translateY(-50%); opacity: .6; }
.logo-bal::after  { content: ''; position: absolute; width: 2px; height: 100%; background: var(--groen-donker); left: 50%; transform: translateX(-50%); opacity: .6; }
.logo-tekst { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: white; }
.logo-sub { font-size: 11px; color: var(--lijn); letter-spacing: 1px; text-transform: uppercase; display: block; line-height: 1; margin-top: 2px; }

#nav-links { display: flex; list-style: none; gap: 0; align-items: center; }
#nav-links li a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 14px; font-weight: 500; padding: .5rem 1rem; display: block; transition: color .2s; }
#nav-links li a:hover { color: white; }
.nav-cta { background: var(--groen-licht) !important; color: white !important; border-radius: 4px; padding: .4rem 1rem !important; }
.current-menu-item > a { color: white !important; }

/* === HERO === */
.hero { background: var(--groen-donker); position: relative; padding: 5rem 2rem 4rem; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.hero-patroon { position: absolute; inset: 0; opacity: .07; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, var(--lijn) 40px, var(--lijn) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, var(--lijn) 40px, var(--lijn) 41px); }
.hero-inhoud { position: relative; max-width: 700px; }
.hero-badge { display: inline-block; background: var(--groen-licht); color: white; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 56px; font-weight: 700; color: white; line-height: 1.05; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--lijn); }
.hero p { font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 2rem; max-width: 520px; }
.hero-knoppen { display: flex; gap: 12px; flex-wrap: wrap; }
.knop-primair { background: var(--groen-licht); color: white; border: none; padding: .75rem 1.75rem; font-family: 'Source Sans 3', sans-serif; font-size: 15px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block; }
.knop-primair:hover { background: #7ab827; color: white; }
.knop-secundair { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.4); padding: .75rem 1.75rem; font-family: 'Source Sans 3', sans-serif; font-size: 15px; font-weight: 500; border-radius: 4px; cursor: pointer; transition: border-color .2s, background .2s; text-decoration: none; display: inline-block; }
.knop-secundair:hover { border-color: white; background: rgba(255,255,255,.08); color: white; }
.hero-bal-deco { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 340px; height: 340px; border-radius: 50%; border: 40px solid rgba(99,153,34,.15); }
.hero-bal-deco::after { content: ''; width: 200px; height: 200px; border-radius: 50%; background: rgba(99,153,34,.1); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* === STATS === */
.stats-balk { background: var(--groen-licht); display: flex; justify-content: center; }
.stats-grid { display: flex; max-width: 800px; width: 100%; }
.stat-item { flex: 1; text-align: center; padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.25); }
.stat-item:last-child { border-right: none; }
.stat-getal { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: white; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }
.scheiding { height: 3px; background: var(--groen-licht); opacity: .4; }

/* === SECTIES === */
section { padding: 3.5rem 2rem; max-width: 960px; margin: 0 auto; }
.sectie-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--groen-licht); margin-bottom: .5rem; }
h2 { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 600; color: var(--tekst); line-height: 1.15; margin-bottom: 1rem; }
.sectie-intro { font-size: 16px; color: var(--grijs); line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem; }

/* === VERSLAGEN === */
.verslagen-sectie { background: var(--groen-donker); padding: 3.5rem 2rem; }
.verslagen-inner { max-width: 960px; margin: 0 auto; }
.verslagen-sectie .sectie-label { color: var(--lijn); }
.verslagen-sectie h2 { color: white; }
.verslagen-sectie .sectie-intro { color: rgba(255,255,255,.65); }
.verslag-filter { display: flex; gap: 8px; margin-bottom: 1.75rem; flex-wrap: wrap; }
.filter-knop { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 5px 16px; font-size: 13px; font-family: 'Source Sans 3', sans-serif; cursor: pointer; transition: all .2s; }
.filter-knop:hover, .filter-knop.actief { background: var(--groen-licht); color: white; border-color: var(--groen-licht); }
.verslagen-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.verslag-kaart { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.verslag-kaart:hover { border-color: var(--lijn); }
.verslag-kaart.verborgen { display: none; }
.verslag-score-balk { padding: 1rem 1.1rem .75rem; display: flex; align-items: center; justify-content: space-between; }
.verslag-team-naam-klein { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: white; }
.verslag-score { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--lijn); letter-spacing: 2px; }
.verslag-sets { display: flex; justify-content: center; gap: 6px; padding: 0 1.1rem .75rem; flex-wrap: wrap; }
.set-pill { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; }
.set-win { background: rgba(99,153,34,.3); color: var(--lijn); }
.set-loss { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.verslag-body { border-top: 1px solid rgba(255,255,255,.08); padding: .85rem 1.1rem; }
.verslag-meta-rij { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.verslag-datum { font-size: 11px; color: rgba(255,255,255,.45); }
.verslag-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.25); }
.verslag-team-badge { font-size: 11px; color: var(--lijn); font-weight: 600; }
.verslag-tekst { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.55; margin-top: 4px; }
.verslag-meer-link { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--lijn); text-decoration: none; font-weight: 600; }
.verslag-meer-link:hover { color: white; }
.verslag-uitslag-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 2px 8px; border-radius: 3px; margin-bottom: 6px; }
.badge-win  { background: rgba(99,153,34,.3); color: var(--lijn); }
.badge-loss { background: rgba(226,75,74,.2); color: #F09595; }
.badge-draw { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.verslagen-leeg { color: rgba(255,255,255,.4); font-size: 14px; text-align: center; padding: 2rem; grid-column: 1/-1; }

/* Verslag foto galerij (op kaart) */
.verslag-fotos { display: grid; gap: 4px; padding: 0 .75rem .75rem; }
.verslag-fotos.fotos-1 { grid-template-columns: 1fr; }
.verslag-fotos.fotos-2 { grid-template-columns: 1fr 1fr; }
.verslag-fotos.fotos-3 { grid-template-columns: 1fr 1fr; }
.verslag-fotos.fotos-3 .foto-item:first-child { grid-column: 1/-1; }
.verslag-fotos.fotos-meer { grid-template-columns: 1fr 1fr; }
.foto-item { position: relative; overflow: hidden; border-radius: 5px; cursor: pointer; }
.foto-item img { width: 100%; height: 110px; object-fit: cover; display: block; transition: transform .2s; }
.foto-item:hover img { transform: scale(1.04); }
.fotos-1 .foto-item img { height: 160px; }
.foto-meer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: white; }

/* Verslag detailpagina fotos */
.verslag-fotos-volledig { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 8px; margin-bottom: 2rem; }
.foto-item-groot { overflow: hidden; border-radius: 8px; cursor: pointer; }
.foto-item-groot img { width: 100%; height: 200px; object-fit: cover; transition: transform .2s; }
.foto-item-groot:hover img { transform: scale(1.03); }
.verslag-volledig-tekst { font-size: 16px; line-height: 1.8; color: var(--tekst); max-width: 720px; }
.verslag-volledig-tekst p { margin-bottom: 1rem; }

/* === TEAMS === */
.teams-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.team-kaart { background: var(--groen-zacht); border-radius: 8px; padding: 1.25rem; border-left: 4px solid var(--groen-licht); transition: transform .2s, box-shadow .2s; cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-decoration: none; }
.team-kaart:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(59,109,17,.12); }
.team-naam { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: var(--groen-donker); margin-bottom: 4px; }
.team-info-tekst { font-size: 13px; color: var(--groen); font-weight: 500; }
.team-pijl { color: var(--groen-licht); font-size: 18px; opacity: .6; }
.team-kaart:hover .team-pijl { opacity: 1; }

/* === AGENDA === */
.agenda-sectie { background: #f5f4ef; padding: 3.5rem 2rem; }
.agenda-inner { max-width: 960px; margin: 0 auto; }
.agenda-lijst { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.agenda-item { background: white; border-radius: 8px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1.25rem; border: .5px solid #dddbd2; }
.agenda-datum-blok { background: var(--groen-donker); color: white; border-radius: 6px; padding: .5rem .75rem; text-align: center; min-width: 52px; flex-shrink: 0; }
.datum-dag { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; line-height: 1; color: var(--lijn); }
.datum-maand { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; opacity: .8; margin-top: 2px; }
.agenda-details { flex: 1; }
.agenda-titel { font-weight: 600; font-size: 15px; color: var(--tekst); }
.agenda-meta { font-size: 13px; color: var(--grijs); margin-top: 2px; }
.agenda-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; flex-shrink: 0; }
.badge-wedstrijd { background: #EAF3DE; color: var(--groen-donker); }
.badge-training  { background: #f0eeea; color: var(--grijs); }
.badge-evenement { background: #faeeda; color: #854F0B; }
.agenda-leeg { text-align: center; color: var(--grijs); padding: 2rem; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-tekst p { font-size: 16px; color: var(--grijs); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.contact-rij { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--tekst); }
.contact-icoon { width: 32px; height: 32px; background: var(--groen-zacht); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aanmeld-formulier { background: var(--groen-donker); border-radius: 10px; padding: 1.75rem; }
.form-titel { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; color: white; margin-bottom: 1.25rem; }
.veld-groep { margin-bottom: 12px; }
.veld-groep label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 5px; }
.veld-groep input, .veld-groep select { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 5px; padding: .6rem .85rem; font-size: 14px; color: white; font-family: 'Source Sans 3', sans-serif; outline: none; }
.veld-groep input::placeholder { color: rgba(255,255,255,.4); }
.veld-groep select { color: rgba(255,255,255,.8); }
.form-knop { width: 100%; background: var(--groen-licht); color: white; border: none; padding: .75rem; font-family: 'Source Sans 3', sans-serif; font-size: 15px; font-weight: 600; border-radius: 5px; cursor: pointer; margin-top: 6px; }
.form-knop:hover { background: #7ab827; }

/* === TEAMPAGINA === */
.team-header { background: var(--groen-donker); padding: 3rem 2rem 2.5rem; position: relative; overflow: hidden; }
.team-header-patroon { position: absolute; inset: 0; opacity: .07; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, var(--lijn) 40px, var(--lijn) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, var(--lijn) 40px, var(--lijn) 41px); }
.team-header-inner { position: relative; max-width: 960px; margin: 0 auto; }
.terug-knop { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 1.5rem; text-decoration: none; }
.terug-knop:hover { color: white; }
.team-cat-badge { display: inline-block; background: var(--groen-licht); color: white; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 1rem; }
.team-header-meta { color: rgba(255,255,255,.7); font-size: 15px; }
.team-body { max-width: 960px; margin: 0 auto; padding: 2.5rem 2rem; }
.team-kolommen { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.info-kaart { background: var(--groen-zacht); border-radius: 8px; padding: 1.25rem; }
.info-kaart-titel { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: var(--groen-donker); margin-bottom: 1rem; }
.info-rij { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(59,109,17,.12); font-size: 14px; }
.info-rij:last-child { border-bottom: none; }
.info-label { color: var(--groen); font-weight: 500; }
.info-waarde { color: var(--groen-donker); font-weight: 600; }
.spelers-titel { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 600; color: var(--tekst); margin-bottom: 1.25rem; }
.spelers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 10px; }
.speler-kaart { background: white; border: .5px solid #dddbd2; border-radius: 8px; padding: 1rem; text-align: center; }
.speler-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--groen-donker); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; color: var(--lijn); margin: 0 auto 10px; }
.speler-naam { font-size: 13px; font-weight: 600; color: var(--tekst); }
.wed-lijst { display: flex; flex-direction: column; gap: 8px; }
.wed-item { background: white; border: .5px solid #dddbd2; border-radius: 8px; padding: .9rem 1.1rem; display: flex; align-items: center; gap: 1rem; font-size: 13px; }
.wed-datum { color: var(--grijs); min-width: 80px; }
.wed-teg { flex: 1; font-weight: 600; }
.wed-badge { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.thuis { background: #EAF3DE; color: var(--groen-donker); }
.uit   { background: #f0eeea; color: var(--grijs); }

/* === FOOTER === */
footer { background: var(--groen-donker); color: rgba(255,255,255,.65); text-align: center; padding: 1.75rem 2rem; font-size: 13px; }
footer strong { color: white; }

/* === LIGHTBOX === */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 5000; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: 6px; object-fit: contain; }
.lightbox-nav { display: flex; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.lightbox-knop { background: rgba(255,255,255,.12); border: none; color: white; border-radius: 50%; width: 40px; height: 40px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-knop:hover { background: rgba(255,255,255,.22); }
.lightbox-teller { color: rgba(255,255,255,.6); font-size: 13px; min-width: 50px; text-align: center; }
.lightbox-sluiten { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: white; font-size: 28px; cursor: pointer; opacity: .7; }
.lightbox-sluiten:hover { opacity: 1; }

/* === VERSLAG DETAILPAGINA === */

.verslag-header { background: var(--groen-donker); position: relative; padding: 2.5rem 2rem 0; overflow: hidden; }
.verslag-header-patroon { position: absolute; inset: 0; opacity: .07; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, var(--lijn) 40px, var(--lijn) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, var(--lijn) 40px, var(--lijn) 41px); }
.verslag-header-inner { position: relative; max-width: 960px; margin: 0 auto; }
.verslag-team-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.verslag-team-link { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--lijn); text-decoration: none; background: rgba(255,255,255,.08); padding: 4px 14px; border-radius: 20px; transition: background .2s; }
.verslag-team-link:hover { background: rgba(255,255,255,.16); }
.verslag-header-datum { font-size: 13px; color: rgba(255,255,255,.55); }

.scorebord { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; background: rgba(0,0,0,.2); border-radius: 12px 12px 0 0; padding: 2rem; }
.scorebord-ploeg { text-align: center; }
.scorebord-naam { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: white; line-height: 1.1; }
.scorebord-subtitel { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }
.scorebord-midden { text-align: center; }
.scorebord-score { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: .6rem; }
.score-getal { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: rgba(255,255,255,.35); line-height: 1; }
.score-getal.score-win { color: var(--lijn); }
.score-streep { font-family: 'Oswald', sans-serif; font-size: 36px; color: rgba(255,255,255,.25); }
.badge-groot { font-size: 12px !important; padding: 5px 16px !important; display: inline-block; margin-bottom: .75rem; }
.scorebord-sets { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: .25rem; }
.set-blok { text-align: center; padding: 5px 10px; border-radius: 6px; min-width: 56px; }
.set-blok-win  { background: rgba(99,153,34,.3); }
.set-blok-loss { background: rgba(255,255,255,.08); }
.set-blok-label { display: block; font-size: 9px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; }
.set-blok-score { display: block; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-top: 2px; }

.verslag-stats-balk { background: var(--groen-licht); display: flex; justify-content: center; }
.verslag-stat { flex: 1; max-width: 200px; text-align: center; padding: 1rem .5rem; border-right: 1px solid rgba(255,255,255,.2); }
.verslag-stat:last-child { border-right: none; }
.verslag-stat-getal { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: white; }
.verslag-stat-label { font-size: 11px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

.verslag-body-wrap { max-width: 960px; margin: 0 auto; padding: 2.5rem 2rem; }
.verslag-kolommen { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; margin-bottom: 3rem; }
.verslag-sectie-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--groen-licht); margin-bottom: .75rem; }

.verslag-galerij { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 2rem; border-radius: 10px; overflow: hidden; }
.galerij-hoofd { grid-row: 1/3; }
.galerij-zij { display: flex; flex-direction: column; gap: 6px; }
.foto-item-groot { position: relative; overflow: hidden; cursor: pointer; }
.foto-item-groot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.foto-item-groot:hover img { transform: scale(1.04); }
.galerij-hoofd img { height: 300px; }
.galerij-zij .foto-item-groot img { height: 143px; }
.foto-met-meer { position: relative; }
.foto-meer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: white; }

.verslag-tekst-blok { margin-top: 0; }
.verslag-volledig-tekst { font-size: 16px; line-height: 1.8; color: var(--tekst); }
.verslag-volledig-tekst p { margin-bottom: 1rem; }
.verslag-volledig-tekst h3 { font-family: 'Oswald', sans-serif; font-size: 20px; margin: 1.5rem 0 .5rem; color: var(--groen-donker); }

.verslag-info-kaart { background: var(--groen-zacht); border-radius: 10px; padding: 1.25rem; margin-bottom: 1rem; }
.verslag-info-titel { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; color: var(--groen-donker); margin-bottom: .85rem; }
.info-link { color: var(--groen-licht) !important; text-decoration: none; font-weight: 600 !important; }
.info-link:hover { text-decoration: underline; }

.set-detail { margin-bottom: .75rem; }
.set-detail:last-child { margin-bottom: 0; }
.set-detail-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; font-size: 13px; }
.set-detail-label { color: var(--groen); font-weight: 500; }
.set-detail-score { font-weight: 700; }
.set-detail-win  { color: var(--groen-donker); }
.set-detail-loss { color: #A32D2D; }
.set-balk { height: 6px; background: rgba(0,0,0,.1); border-radius: 3px; overflow: hidden; }
.set-balk-vul { height: 100%; border-radius: 3px; }
.set-balk-win  { background: var(--groen-licht); }
.set-balk-loss { background: #E24B4A; }

.zijbalk-fotos { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.zijbalk-foto { aspect-ratio: 1; overflow: hidden; border-radius: 6px; cursor: pointer; }
.zijbalk-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.zijbalk-foto:hover img { transform: scale(1.08); }

.gerelateerd-sectie { border-top: 1px solid #e8e6e0; padding-top: 2.5rem; }
.gerelateerd-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 1rem; }
.gerelateerd-kaart { text-decoration: none; background: white; border: .5px solid #dddbd2; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.gerelateerd-kaart:hover { border-color: var(--lijn); transform: translateY(-2px); }
.gerelateerd-foto { height: 120px; overflow: hidden; background: var(--groen-donker); display: flex; align-items: center; justify-content: center; }
.gerelateerd-foto img { width: 100%; height: 100%; object-fit: cover; }
.gerelateerd-geen-foto span { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--lijn); }
.gerelateerd-info { padding: .85rem 1rem; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.gerelateerd-datum { font-size: 11px; color: var(--grijs); }
.gerelateerd-teg { font-size: 14px; font-weight: 600; color: var(--tekst); }
.gerelateerd-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.gerelateerd-score { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; color: var(--groen-donker); }

/* === OVER ONS === */
.over-ons-sectie { background: #f5f4ef; padding: 3.5rem 2rem; }
.over-ons-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.over-ons-tekst p { font-size: 16px; color: var(--grijs); line-height: 1.75; margin-bottom: 1rem; }
.over-ons-inhoud p { font-size: 16px; color: var(--grijs); line-height: 1.75; margin-bottom: 1rem; }
.over-ons-kenmerken { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
.kenmerk { display: flex; align-items: flex-start; gap: 12px; }
.kenmerk-icoon { width: 40px; height: 40px; background: var(--groen-zacht); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--groen); }
.kenmerk-titel { font-size: 14px; font-weight: 600; color: var(--tekst); }
.kenmerk-omschrijving { font-size: 12px; color: var(--grijs); margin-top: 2px; }
.over-ons-meer-knop { display: inline-block; margin-top: .5rem; font-size: 14px; font-weight: 600; color: var(--groen-licht); text-decoration: none; }
.over-ons-meer-knop:hover { color: var(--groen); }

.bestuur-kaart { background: white; border: .5px solid #dddbd2; border-radius: 10px; padding: 1.5rem; }
.bestuur-titel { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: var(--groen-donker); margin-bottom: 1.1rem; }
.bestuur-lid { display: flex; align-items: center; gap: 12px; padding: .6rem 0; border-bottom: .5px solid #f0efea; }
.bestuur-lid:last-of-type { border-bottom: none; }
.bestuur-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--groen-donker); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: var(--lijn); flex-shrink: 0; }
.bestuur-naam { font-size: 14px; font-weight: 600; color: var(--tekst); }
.bestuur-functie { font-size: 12px; color: var(--grijs); }
.bestuur-contact-hint { display: flex; align-items: center; gap: 6px; margin-top: 1rem; font-size: 12px; color: var(--groen); padding-top: .75rem; border-top: .5px solid #f0efea; }

/* Over ons pagina */
.over-ons-pagina-intro { margin-bottom: 2rem; }
.kenmerken-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.kenmerk-blok { background: var(--groen-zacht); border-radius: 10px; padding: 1.25rem; text-align: center; }
.kenmerk-blok-icoon { color: var(--groen); margin-bottom: .5rem; display: flex; justify-content: center; }
.kenmerk-blok-getal { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; color: var(--groen-donker); line-height: 1; }
.kenmerk-blok-label { font-size: 12px; color: var(--groen); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .verslagen-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-kolommen { grid-template-columns: 1fr; }
  .over-ons-grid { grid-template-columns: 1fr; }
  .over-ons-kenmerken { grid-template-columns: 1fr; }
  .kenmerken-grid { grid-template-columns: repeat(2,1fr); }
  nav #nav-links { display: none; }
  .hero-bal-deco { display: none; }
  .scorebord { grid-template-columns: 1fr; gap: 1rem; }
  .scorebord-ploeg.scorebord-uit { order: 3; }
  .scorebord-midden { order: 2; }
  .score-getal { font-size: 36px; }
  .verslag-kolommen { grid-template-columns: 1fr; }
  .verslag-galerij { grid-template-columns: 1fr; }
  .galerij-hoofd { grid-row: auto; }
  .galerij-zij { flex-direction: row; }
  .galerij-zij .foto-item-groot img { height: 100px; }
  .gerelateerd-grid { grid-template-columns: 1fr; }
  .verslag-stats-balk { flex-wrap: wrap; }
  .verslag-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
}
