@import url("./design-tokens.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  background: #f4f6f5;
  color: #0f1512;
  line-height: 1.5;
}

main {
  flex: 1 1 auto;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem var(--header-padding-x, 1rem) 4rem;
}

/* Homepage: main mag nooit op 720px blijven hangen — hero is echte full-bleed */
main.site-main--home {
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}
