/* Box-Sizing global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Default-Margins entfernen */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Bilder responsiv */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Formular-Elemente erben Schrift */
input,
button,
textarea,
select {
  font: inherit;
}

/* Liste ohne Standard-Punkte (wenn du sie meistens selbst styling willst) */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

html {
  font-size: 16px; /* falls du eine klare Basis willst */
  scroll-behavior: smooth;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

button:disabled,
button[disabled] {
  cursor: not-allowed;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

