/* OSS Volo Trainingsplanner — minimale huisstijl */

:root {
  --geel: #FEDD58;
  --zwart: #1d1d1b;
  --grijs: #54595F;
  --lichtgrijs: #8a8a84;
  --bg: #ffffff;
  --line: #ebe9e2;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--zwart);
  background: var(--bg);
}

header.site {
  padding: 34px 20px 24px;
  text-align: center;
  border-bottom: 3px solid var(--geel);
}
header.site h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 0.01em;
  line-height: 1.05;
}
header.site .subtitle {
  color: var(--lichtgrijs);
  font-size: 15px;
  margin-top: 6px;
}

nav.site {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 18px 20px 0;
}
nav.site a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--grijs);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
nav.site a:hover { color: var(--zwart); }
nav.site a.active { color: var(--zwart); border-bottom-color: var(--geel); }

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 20px 48px;
}

.card { padding: 8px 0 22px; }
.card + .card { border-top: 1px solid var(--line); padding-top: 22px; }

h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 10px;
}
h2 .marker { background: none; padding: 0; }
p + p, p + ol, ol + p { margin-top: 12px; }
p { color: var(--grijs); }

.updated { color: var(--lichtgrijs); font-size: 14px; margin-bottom: 22px; text-align: center; }

ol.steps {
  list-style: none;
  counter-reset: stap;
  margin-top: 14px;
}
ol.steps li {
  counter-increment: stap;
  position: relative;
  padding: 0 0 16px 46px;
  color: var(--grijs);
}
ol.steps li:last-child { padding-bottom: 0; }
ol.steps li::before {
  content: counter(stap);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--geel);
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  color: var(--zwart);
  display: grid;
  place-content: center;
}
ol.steps li strong { color: var(--zwart); font-weight: 600; }

.tip {
  border-left: 3px solid var(--geel);
  padding: 4px 0 4px 14px;
  font-size: 15px;
  margin-top: 16px;
  color: var(--grijs);
}
.tip strong { color: var(--zwart); font-weight: 600; }

.en p { color: var(--lichtgrijs); }

a { color: var(--zwart); }

footer.site {
  text-align: center;
  padding: 18px 20px 32px;
  color: var(--lichtgrijs);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.track-strip { display: none; }
