/* ========= Basis / reset ========= */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --brand: #0f172a;
  --link: #c7d2fe;
}
body {
  min-height: 100dvh;            /* houdt rekening met mobiele toolbars */
  display: grid;
  grid-template-rows: 1fr auto;  /* hero groeit, footer past eronder */
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ========= Hero: schermvullende afbeelding ========= */
/*.hero {
  min-height: 100dvh;
  position: relative;
  isolation: isolate;
}*/
.hero {
  position: relative;
  isolation: isolate;
  /* laat de hero het 1fr-vak vullen */
  block-size: 100%;
}
/* Zorg dat de afbeelding het hero-vak volledig opvult */
.hero picture,
.hero img {
  display: block;
  width: 100%;
  height: 100%;
}
*/.hero img {
  object-fit: cover;
  object-position: center;
  inline-size: 100%;
  block-size: 100%;
}*/
.hero img {
  object-fit: cover;
  object-position: center;
}
.hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 4cqi;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,.15) 40%, rgba(0,0,0,.0));
  pointer-events: none;
  opacity: 0;
}
.hero__title {
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

/* ========= Footer ========= */
footer {
  background: var(--brand);
  color: #b0c60f;
}
.footer__inner {
  max-width: auto;
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 2px) clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 10px;
  flex: 1 1 auto;
}
.brand__logo {
  display: inline-block;
  width: clamp(110px, 6vw, 44px);
  height: auto;
  flex: 0 0 auto;
}
*/.brand__name {
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
*/
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(5px, 1.0vw, 2px);
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 0.05rem);
  color: var(--link);
  padding: 8px 6px;
  border-radius: 6px;
}
nav a:hover { color: #ffffff; }
nav a:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 2px;
  background: rgba(167,139,250,.08);
}
.footer__aside {
  margin-left: auto;
  text-align: right;
  flex: 0 1 auto;
  max-width: 780px;
  font-size: clamp(0.7rem, 0.3vw + 0.5rem, 1rem);
  color: #b0c60f;
}
.footer__aside strong { color: #fff; }
.footer__aside i { 
	color: #cbc4c0; 
	font-size: clamp(0.3rem, 0.2vw + 0.6rem, 1rem);
	line-height: 2.4;
}

@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .footer__aside { text-align: left; }
}

/* Social icons */
.social-icons {
  display: block;
  gap: 12px;
  margin-top: 2px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s ease;
}
.social-icons a:hover {
  background: rgba(255,255,255,0.25);
}
.social-icons img {
  width: 18px;
  height: 18px;
  display: block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
