/* ===========================================================
   TwistyMoto – reset.css (baseline / cross-browser consistency)
   =========================================================== */

/* Box model consistent maken */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Baseline document */
html, body {
  height: 100%;
}

body {
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

/* Media consistent schalen */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form controls: typografie en kleur erven */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Buttons klikbaar */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

/* Links: laat theme de kleur/stijl bepalen */
a {
  color: inherit;
  text-decoration: none;
}

/* Woordafbreking om overflow te voorkomen */
p,
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Tables voorspelbaar */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Respecteer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
