/* ---------------------------------------------------------
   Bondgenoten onderweg — mobile-first stylesheet
   Palet: Pure & Original — Landscape / Moonstone / Black Hills
   Stijl: modern en strak, leesbaar in fel (Thais) zonlicht.
--------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Pure & Original-palet */
  --landscape: #a4a88d;    /* licht saliegroen */
  --moonstone: #6f7b6b;    /* midden grijsgroen */
  --blackhills: #49534e;   /* diep grijsgroen */

  --papier: #f7f7f3;       /* warm gebroken wit met groene zweem */
  --inkt: #2c332f;         /* bijna-zwart groen (donkerder dan Black Hills) */
  --inkt-zacht: #6f7b6b;
  --lijn: #dfe1d8;
  --kaart: #ffffff;
  --accent-zacht: #eef0e8; /* Landscape sterk verdund, voor chips */

  --radius: 12px;
  --schaduw: 0 1px 2px rgba(44, 51, 47, 0.05), 0 6px 18px rgba(44, 51, 47, 0.05);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--inkt);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, .dagteller strong, .klok time {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 18px 90px;
}

/* ---------- Koptekst ---------- */
header.site { padding: 24px 0 0; }

header.site .eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moonstone);
}

header.site h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin: 4px 0 14px;
}

/* ---------- Twee klokken ---------- */
.klokken {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.klok {
  background: var(--blackhills);
  color: #f2f3ee;
  border-radius: var(--radius);
  padding: 12px 14px;
}

.klok--thai { background: var(--moonstone); }

.klok .zone {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.klok time {
  display: block;
  font-size: 27px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  margin-top: 2px;
}

.klok .datum {
  font-size: 12px;
  opacity: 0.75;
}

/* ---------- Dagteller ---------- */
.dagteller {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.dagteller strong { font-size: 19px; font-weight: 700; color: var(--blackhills); }
.dagteller span { color: var(--inkt-zacht); font-size: 14px; }

.voortgang {
  height: 5px;
  background: var(--lijn);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}

.voortgang i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--moonstone), var(--landscape));
  border-radius: 99px;
  transition: width 0.6s ease;
}

/* ---------- Hamburger menu ---------- */
header.site { position: relative; }

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.15s;
}

.hamburger:hover { background: var(--accent-zacht); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--inkt);
  border-radius: 2px;
  transition: transform 0.2s;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 51, 47, 0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.nav-overlay--open {
  opacity: 1;
  pointer-events: all;
}

.nav-lade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 85vw);
  background: var(--kaart);
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(44,51,47,0.12);
}

.nav-overlay--open .nav-lade { transform: translateX(0); }

.nav-sluit {
  align-self: flex-end;
  margin-right: 16px;
  margin-bottom: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--inkt-zacht);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
}

.nav-sluit:hover { background: var(--accent-zacht); color: var(--inkt); }

.nav-menu { display: flex; flex-direction: column; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--inkt);
  text-decoration: none;
  transition: background 0.12s;
}

.nav-item:hover { background: var(--accent-zacht); }

.nav-item--actief {
  background: var(--accent-zacht);
  color: var(--blackhills);
}

.nav-icon { font-size: 20px; width: 28px; text-align: center; }

.nav-chevron {
  margin-left: auto;
  font-size: 18px;
  transition: transform 0.2s;
  opacity: 0.5;
}

.nav-accordion-trigger { cursor: pointer; user-select: none; }
.nav-accordion-trigger--open .nav-chevron { transform: rotate(90deg); }

.nav-accordion {
  display: none;
  flex-direction: column;
  background: var(--accent-zacht);
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  padding: 6px 0;
}

.nav-accordion--open { display: flex; }

.nav-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px 10px 36px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--inkt-zacht);
  text-decoration: none;
  transition: background 0.1s;
}

.nav-sub:hover { background: var(--lijn); color: var(--inkt); }
.nav-sub--actief { color: var(--blackhills); }

.nav-bondjes-lijst { padding: 6px 16px 4px; }

.nav-bondje { margin-bottom: 10px; }

.nav-bondje-header {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  padding: 4px 8px;
  margin-bottom: 5px;
}

.nav-bondje-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-bondje-naam {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-bondje-leden {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-left: 4px;
}

.nav-bondje-lid {
  font-size: 12px;
  color: var(--inkt);
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: 6px;
  padding: 2px 7px;
}

.nav-bondje-lid--uit {
  color: var(--inkt-zacht);
  text-decoration: line-through;
  opacity: 0.6;
}

body.nav-open { overflow: hidden; }

/* ---------- Dashboard ---------- */
.dashboard { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

.dash-kaart {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 16px;
  text-decoration: none;
  color: var(--inkt);
  transition: transform 0.12s, box-shadow 0.12s;
}

.dash-kaart:active { transform: scale(0.98); }

.dash-kaart--accent {
  background: var(--blackhills);
  color: #f2f3ee;
  border-color: var(--blackhills);
}

.dash-kaart-icon { font-size: 26px; flex-shrink: 0; }

.dash-kaart-body { flex: 1; }

.dash-kaart-titel {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.dash-kaart-sub {
  font-size: 12.5px;
  opacity: 0.65;
  margin-top: 2px;
}

.dash-kaart-pijl {
  font-size: 22px;
  font-weight: 300;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---------- Ranking ---------- */
.rank-lijst {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.rank-rij {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 10px;
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 10px 12px;
  box-shadow: var(--schaduw);
}

.rank-positie {
  font-size: 18px;
  text-align: center;
}

.rank-groep {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.rank-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.rank-naam {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  border-radius: 6px;
  padding: 3px 9px;
  white-space: nowrap;
}

.rank-naam--gieren { border: 1px solid var(--lijn); }

.rank-balk-wrap {
  height: 8px;
  background: var(--lijn);
  border-radius: 99px;
  overflow: hidden;
  flex: 1;
}

.rank-balk {
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s ease;
}

.rank-punten {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blackhills);
  text-align: right;
  min-width: 36px;
}

/* ---------- Voorspellingsspel ---------- */
.vsp-scorebord {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blackhills);
  color: #f2f3ee;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
}

.vsp-speler { text-align: center; }

.vsp-speler-naam {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.vsp-score {
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.vsp-score-label {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
}

.vsp-vs {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.4;
}

.vsp-balken {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.vsp-balk-wrap {
  height: 5px;
  background: var(--lijn);
  border-radius: 99px;
  overflow: hidden;
}

.vsp-balk {
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s ease;
}

.vsp-balk--links  { background: var(--moonstone); }
.vsp-balk--rechts { background: var(--landscape); }

.vsp-actief {
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 16px;
  margin-top: 10px;
}

.vsp-actief-header { margin-bottom: 14px; }

.vsp-cyclus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moonstone);
}

.vsp-ton {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--inkt);
  margin-top: 2px;
}

.vsp-kaarten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vsp-kaart {
  background: var(--papier);
  border: 1px solid var(--lijn);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.vsp-kaart-speler {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  margin-bottom: 8px;
}

.vsp-keuze {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 10px;
}

.vsp-keuze--leeg {
  background: var(--lijn);
  color: var(--inkt-zacht);
  font-size: 12px;
  font-weight: 500;
}

.vsp-kaart-sub {
  font-size: 11px;
  color: var(--inkt-zacht);
  margin-top: 5px;
  text-transform: capitalize;
}

.vsp-historie { margin-top: 10px; display: flex; flex-direction: column; gap: 10px; }

.vsp-historie-rij {
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vsp-historie-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moonstone);
}

.vsp-historie-winnaar { display: flex; align-items: center; gap: 6px; }

.vsp-chip {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 10px;
}

.vsp-chip--klein { font-size: 11px; padding: 2px 7px; }

.vsp-historie-speler {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vsp-historie-naam {
  font-size: 12px;
  font-weight: 600;
  color: var(--inkt-zacht);
  min-width: 40px;
}

.vsp-score-icon { font-size: 14px; }

/* ---------- Polarsteps pagina ---------- */
.ps-hero {
  display: block;
  background: var(--blackhills);
  color: #f2f3ee;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 16px;
  transition: opacity 0.15s;
}

.ps-hero:hover { opacity: 0.9; }

.ps-hero-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
}

.ps-hero-icon { font-size: 32px; flex-shrink: 0; }

.ps-hero-titel {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.ps-hero-sub { font-size: 12.5px; opacity: 0.7; margin-top: 3px; }

.ps-hero-pijl {
  font-size: 22px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.6;
}

.ps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ps-stat {
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.ps-stat-waarde {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blackhills);
}

.ps-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  margin-top: 2px;
}

.ps-kaart {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--lijn);
  margin-top: 10px;
  position: relative;
  z-index: 0;
}

.kaart-marker {
  width: 14px;
  height: 14px;
  background: var(--moonstone);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.ps-steden {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.ps-stad {
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 10px 12px;
}

.ps-stad-naam {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--inkt);
}

.ps-stad-sub {
  font-size: 11.5px;
  color: var(--inkt-zacht);
  margin-top: 2px;
}

.ps-stad--bevestigd { border-color: var(--moonstone); }
.ps-stad--bevestigd .ps-stad-naam { color: var(--blackhills); }

.ps-stad--onbekend {
  border-style: dashed;
  opacity: 0.6;
}

/* ---------- Interne tabs (bijv. Bondgenoten) ---------- */
.inner-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--lijn);
  margin: 16px 0 0;
}

.inner-tab {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--inkt-zacht);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: color 0.15s, background 0.15s;
}

.inner-tab:hover { background: var(--accent-zacht); color: var(--inkt); }

.inner-tab--actief {
  color: var(--inkt);
  border-bottom-color: var(--blackhills);
}

/* ---------- Navigatie (tabs) ---------- */
nav.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--inkt);
  margin-bottom: 6px;
}

nav.tabs a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--inkt-zacht);
  text-decoration: none;
  padding: 9px 14px 8px;
  border-radius: 10px 10px 0 0;
}

nav.tabs a[aria-current="page"] {
  background: var(--inkt);
  color: #f2f3ee;
}

/* ---------- Tijdlijn ---------- */
.tijdlijn { position: relative; padding-left: 20px; margin-top: 18px; }

.tijdlijn::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 0;
  border-left: 2px dashed var(--landscape);
}

.dag { position: relative; margin: 26px 0; }

.dag::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--papier);
  border: 3px solid var(--moonstone);
}

.dag > h2 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }

.dag > h2 small {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moonstone);
  margin-left: 8px;
}

/* ---------- Kaarten ---------- */
.kaart {
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 14px 16px;
  margin-bottom: 10px;
}

.kaart .label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 3px 9px;
  margin-bottom: 8px;
}

.label--loods { background: var(--accent-zacht); color: var(--blackhills); }
.label--thuis { background: var(--blackhills); color: #f2f3ee; }

.kaart h3 { font-size: 16px; margin: 0 0 4px; line-height: 1.35; }
.kaart h3 a { color: var(--inkt); text-decoration: none; }
.kaart h3 a:active, .kaart h3 a:hover { color: var(--moonstone); }

.kaart p { margin: 4px 0 6px; color: var(--inkt-zacht); font-size: 14.5px; }

.kaart .bron { font-size: 12.5px; color: var(--inkt-zacht); }
.kaart .bron a { color: var(--moonstone); font-weight: 700; text-decoration: none; }

.kaart img.foto { width: 100%; border-radius: 8px; margin: 6px 0 4px; display: block; }

.kaart .noot { color: var(--inkt); font-size: 15.5px; white-space: pre-wrap; }

/* ---------- Vluchten ---------- */
.vlucht-blok { margin-top: 20px; }

.vlucht-blok > h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moonstone);
  margin: 0 0 10px;
}

.aftelkaart {
  background: var(--blackhills);
  color: #f2f3ee;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 18px;
}

.aftelkaart .zone { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }
.aftelkaart strong { font-family: "Space Grotesk", sans-serif; font-size: 24px; font-weight: 600; display: block; margin-top: 2px; font-variant-numeric: tabular-nums; }

.segment {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
}

.segment .code {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--blackhills);
}

.segment .duur {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--inkt-zacht);
  align-self: center;
}

.segment .route { grid-column: 1 / -1; }

.route .stap {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  font-size: 14.5px;
  padding: 3px 0;
}

.route .stap b {
  font-variant-numeric: tabular-nums;
  color: var(--inkt);
}

.route .stap span { color: var(--inkt-zacht); }

.overstap {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--moonstone);
  border-left: 3px solid var(--landscape);
  padding: 4px 0 4px 12px;
  margin: 6px 0 6px 6px;
}

/* ---------- Knoppen ---------- */
.knop {
  display: inline-block;
  background: var(--inkt);
  color: #f2f3ee;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 11px 18px;
  text-decoration: none;
  cursor: pointer;
}

.knop--groen { background: var(--moonstone); color: #f2f3ee; }
.knop--stil { background: transparent; color: var(--blackhills); border: 2px solid var(--landscape); }
.knop:disabled { opacity: 0.5; cursor: wait; }

.kijkbalk { display: flex; gap: 10px; margin: 4px 0 10px; flex-wrap: wrap; }

.vpn-tip { font-size: 12.5px; color: var(--inkt-zacht); margin: 0 0 4px; }

/* ---------- Leeg / status ---------- */
.leeg {
  color: var(--inkt-zacht);
  font-size: 14.5px;
  background: var(--kaart);
  border: 1px dashed var(--lijn);
  border-radius: var(--radius);
  padding: 14px 16px;
}

/* ---------- Bondgenoten filter ---------- */
.filter-balk {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 4px;
}

.filter-knop {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--lijn);
  border-radius: 99px;
  padding: 5px 13px;
  background: var(--kaart);
  color: var(--inkt-zacht);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-knop--actief,
.filter-knop:hover {
  background: var(--blackhills);
  color: #f2f3ee;
  border-color: var(--blackhills);
}

.filter-knop--logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
}

.filter-logo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---------- Bondgenoten tegels ---------- */
.sectie-titel {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moonstone);
  margin: 24px 0 0;
}

.sectie-titel--kandidaten { margin-top: 20px; }

.kandidaten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.kandidaat-tegel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.kandidaat-foto-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--lijn);
  box-shadow: var(--schaduw);
  background: var(--accent-zacht);
}

.kandidaat-groep--gieren {
  border: 1px solid var(--lijn);
}

.kandidaat-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kandidaat-initialen {
  width: 100%;
  height: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kandidaat-naam {
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  color: var(--inkt);
  line-height: 1.2;
}

.kandidaat-groep {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 2px 9px;
}

.kandidaten-grid--uit .kandidaat-foto-wrap {
  filter: grayscale(100%);
  opacity: 0.5;
}

.kandidaten-grid--uit .kandidaat-naam {
  color: var(--inkt-zacht);
  text-decoration: line-through;
}

.kandidaat-tegel--uit .kandidaat-groep { opacity: 0.45; }

/* ---------- Admin ---------- */
form.paneel {
  background: var(--kaart);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 18px;
  margin: 18px 0;
  display: grid;
  gap: 12px;
}

form.paneel label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  display: grid;
  gap: 6px;
}

form.paneel input,
form.paneel textarea {
  font: inherit;
  border: 1.5px solid var(--lijn);
  border-radius: 10px;
  padding: 10px 12px;
  width: 100%;
  background: var(--papier);
}

form.paneel textarea { min-height: 110px; resize: vertical; }

form.paneel input:focus,
form.paneel textarea:focus {
  outline: 2px solid var(--moonstone);
  outline-offset: 1px;
  border-color: var(--moonstone);
}

.status { font-size: 14px; font-weight: 600; }
.status--ok { color: var(--moonstone); }
.status--fout { color: #a4432f; }

@media (prefers-reduced-motion: reduce) {
  .voortgang i { transition: none; }
}
