/* Einbindung der Schriften wie auf der Hauptseite */
@font-face {
  font-family: 'Noto Sans';
  src: url('Noto_Sans/static/NotoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 300;
  color: #3d3d3d;
  background: #ffffff;
  line-height: 1.6;
}

/* Wrapper für den Content */
.privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Zurück-Pfeil oben links */
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: black;
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif !important;
}

.back-button .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: 'FILL'0, 'wght'300, 'GRAD'0, 'opsz'48;
}

/* Lokale Inline-SVG-Icons (ersetzen die frueheren Google Material Symbols) */
.material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  vertical-align: middle;
}

.material-symbols-outlined > svg.ms-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}

/* Typografie */
h1,
h2,
h3 {
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 300;
  color: #000;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1.2em;
}

/* Links */
a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .privacy-wrapper {
    padding: 20px 16px;
    width: 100%;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .back-button {
    top: 10px;
    left: 10px;
    font-size: 18px;
  }

  .back-button .material-symbols-outlined {
    font-size: 24px;
  }
}

/* Anti-Scraper Kontakt-Platzhalter (E-Mail/Telefon) */
.cloak {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}

.cloak.revealed {
  cursor: auto;
}

.cloak a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}