/* Overgenomen uit overons.html */
/* ─── INTRO SECTION ─── */
.over-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 60px;
  align-items: start;
}
.over-tekst h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  color: #102649;
  line-height: 1.05;
  margin-bottom: 24px;
}
.over-tekst h2 em {
  font-style: italic;
  font-weight: 400;
  color: #2a5298;
  text-transform: none;
}
.over-tekst p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.75;
  margin-bottom: 16px;
}
.over-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1b3d72;
  text-decoration: none;
  border-bottom: 2px solid #1b3d72;
  padding-bottom: 2px;
  margin-top: 16px;
  transition: gap 0.2s;
}
.over-link:hover { gap: 14px; }

/* ─── TIMELINE ─── */
.timeline {
  padding-left: 24px;
  border-left: 2px solid #ede7da;
}
.tl-item {
  position: relative;
  padding: 0 0 32px 28px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s, transform 0.5s;
}
.tl-item.visible { opacity: 1; transform: none; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #f5f1ea;
  border: 2px solid #2a5298;
}
.tl-year {
  font-size: 14px;
  font-weight: 700;
  color: #2a5298;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.tl-desc { font-size: 15px; color: #6b6b6b; line-height: 1.6; }

/* ─── HISTORISCHE FOTO ─── */
.foto-sectie {
  background: #102649;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.foto-wrap {
  position: relative;
  overflow: hidden;
}
.foto-wrap img {
  width: 100%;
  display: block;
  filter: grayscale(20%) sepia(10%);
}
.foto-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,48,0.85));
  padding: 32px 20px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  font-style: italic;
}
.foto-tekst {}
.foto-tekst .quote {
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin-bottom: 28px;
}
.foto-tekst .quote::before { content: '"'; font-size: 1.4em; color: rgba(255,255,255,0.3); }
.foto-tekst .quote::after  { content: '"'; font-size: 1.4em; color: rgba(255,255,255,0.3); }
.foto-tekst p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.foto-tekst .jaar-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  margin-bottom: 20px;
}

/* ─── CTA ─── */
.cta-strip {
  background: #ede7da;
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: #102649;
  line-height: 1.1;
}
.cta-strip h2 em {
  font-style: italic;
  font-weight: 400;
  color: #2a5298;
  text-transform: none;
}
.cta-strip p {
  font-size: 15px;
  color: #6b6b6b;
  margin-top: 10px;
  max-width: 420px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .over-intro, .foto-sectie, .cta-strip { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .foto-tekst .quote { font-size: 20px; }
}
@media (max-width: 480px) {
  .over-tekst h2 { font-size: 32px; }
  .cta-strip { padding: 40px 24px; }
}
