/**
 * Reset / Basis-Normalisierung für InovaTech Website
 * Moderner, schlanker Reset — Dark-First.
 */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anker-Sprünge landen unterhalb des fixierten Headers */
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul[class],
ol[class] {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Fokus-Ringe: sichtbar, markenkonform */
:focus-visible {
  outline: 2px solid var(--color-red-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Textauswahl in Markenfarbe */
::selection {
  background: var(--color-red);
  color: #FFFFFF;
}

/* Reduzierte Bewegung: System-Einstellung global respektieren */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
