/* =============================================================
   Ons Bakbeest — één pagina met Home / Polarsteps in het menu
   ============================================================= */

:root {
  --kleur-achtergrond: #FFFFFF;
  --kleur-tekst: #24211D;
  --kleur-tekst-zacht: #55504A;
  --kleur-accent: #B5563B;
  --kleur-lijn: #E7E2D8;
  --kleur-menu-achtergrond: #1B1B18;
  --kleur-menu-tekst: #C9C4B8;
  --kleur-menu-tekst-actief: #FFFFFF;

  --font-koppen: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-tekst: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-interface: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --breedte-max: 62rem;
}

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

body {
  margin: 0;
  background: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  line-height: 1.65;
  font-size: 1.05rem;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--kleur-accent); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--kleur-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Header / hero ---------- */

.hero {
  max-width: var(--breedte-max);
  margin: 0 auto;
}

.hero__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.25rem 1rem;
}

.hero__title {
  font-family: var(--font-koppen);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin: 0;
}

.hero__subtitle {
  font-style: italic;
  color: var(--kleur-tekst-zacht);
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
}

.hero__image {
  width: 100%;
  aspect-ratio: 1460 / 555;
  object-fit: cover;
}

.hero__nav {
  display: flex;
  gap: 1.75rem;
  background: var(--kleur-menu-achtergrond);
  padding: 0.9rem 1.25rem;
}

.hero__nav-link {
  font-family: var(--font-interface);
  background: none;
  border: none;
  color: var(--kleur-menu-tekst);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0.25rem 0.1rem;
}

.hero__nav-link.is-active,
.hero__nav-link:hover {
  color: var(--kleur-menu-tekst-actief);
}

/* ---------- Content: Home ---------- */

main {
  max-width: var(--breedte-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.intro p {
  margin: 0 0 1.25rem;
}

.foto-rij {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}

.foto-rij__foto {
  border-radius: 2px;
}

.foto-rij__bijschrift {
  margin: 0;
  color: var(--kleur-tekst-zacht);
  font-style: italic;
}

@media (min-width: 40rem) {
  .foto-rij {
    grid-template-columns: minmax(0, 26rem) 1fr;
  }
}

/* ---------- Content: Polarsteps ---------- */

.polarsteps-fallback {
  margin: 0 0 1rem;
  color: var(--kleur-tekst-zacht);
  font-size: 0.95rem;
}

.polarsteps-frame {
  display: block;
  width: 100%;
  height: 760px;
  max-width: 100%;
  border: 1px solid #e7e2d8;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin: 1.5rem 0;
  background: #f7f5f0;
}

@media (max-width: 600px) {
  .polarsteps-frame { height: 560px; border-radius: 8px; }
}





/* ---------- Footer ---------- */

.footer {
  max-width: var(--breedte-max);
  margin: 0 auto;
  border-top: 1px solid var(--kleur-lijn);
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--kleur-tekst-zacht);
  font-size: 0.9rem;
}

.footer p { margin: 0; }
