/* ================================
   🌍 UNIVERSAL BASE STYLE SHEET
   Ziel: Einheitliche Darstellung auf allen Browsern & Geräten
   Keine optischen Änderungen — nur Stabilisierung & Responsiveness
   ================================ */

/* --- RESET / NORMALIZE --- */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* iOS Zoom-Fix */
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

/* --- BODY BASIS --- */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: inherit;
  background-color: inherit;
  overflow-x: hidden;
}

/* --- MEDIENELEMENTE --- */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- FORMULAR- & TEXTFELDER --- */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- LINKS --- */
a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* --- LISTEN --- */
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* --- CONTAINER (optionaler Wrapper für dein Layout) --- */
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- RESPONSIVE SCALING --- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}