/* ------------------------------------------
   Datenschutzerklärung Heading - Titel & Lucide Icon
------------------------------------------ */
.datenschutz-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 150px;
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.dark-mode .datenschutz-heading {
  color: var(--text-dark);
}

/* Lucide Icon innerhalb der Datenschutzerklärung Heading */
.datenschutz-heading-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  flex-shrink: 0;
  color: var(--text-light);
  stroke: var(--text-light);
  transform: translateY(2px);
  transition: transform 0.3s ease, color 0.3s ease, stroke 0.3s ease;
}

body.dark-mode .datenschutz-heading-icon {
  color: var(--text-dark);
  stroke: var(--text-dark);
}


/* ------------------------------------------
   Datenschutz Heading
------------------------------------------ */

.datenschutz-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 150px;
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.dark-mode .datenschutz-heading {
  color: var(--text-dark);
}

.datenschutz-heading-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  transform: translateY(2px);
}


/* =========================================================
   Datenschutz – SECTION
========================================================= */

.privacy-section {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto 2rem;
  padding: 0 1rem;
}


/* =========================================================
   Datenschutz – CARD (A4 Look)
========================================================= */

.privacy-card {
  width: 100%;
  max-width: 210mm;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32mm 25mm;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

body.dark-mode .privacy-card {
  background: var(--bg-dark);
}


/* =========================================================
   Datenschutz – Text
========================================================= */

.privacy-title {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

body.dark-mode .privacy-title {
  color: var(--text-dark);
}

.privacy-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
}

body.dark-mode .privacy-card p {
  color: var(--text-dark);
}

/* =========================================================
   Datenschutz – Listen (nur privacy.html)
========================================================= */

.privacy-list {
  margin: 0.6rem 0 1.2rem 1.2rem;
  padding: 0;
}

.privacy-list li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #374151;
}

/* Dark Mode */
body.dark-mode .privacy-list li {
  color: var(--text-dark);
}

/* =========================================================
   Datenschutz – Kontakt / Adresse
========================================================= */

.privacy-address {
  margin: 0.6rem 0 1.2rem 0;
  font-style: normal;          /* kein Kursiv */
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

body.dark-mode .privacy-address {
  color: var(--text-dark);
}

.privacy-address a {
  color: var(--button-filter-hover-light);
  text-decoration: none;
}

body.dark-mode .privacy-address a {
  color: var(--button-search-hover-dark);
}

.privacy-address a:hover {
  text-decoration: underline;
}

/* =========================================================
   Scroll to Top Button
========================================================= */

.scroll-top-btn {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--button-filter-light);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.25s ease, transform 0.15s ease;
}

body.dark-mode .scroll-top-btn {
  background-color: var(--button-filter-dark);
}

.scroll-top-btn:hover {
  background-color: var(--button-filter-hover-light);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

body.dark-mode .scroll-top-btn:hover {
  background-color: var(--button-filter-hover-dark);
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 768px) {
  .privacy-card {
    max-width: 100%;
    padding: 1.6rem 1.3rem;
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .datenschutz-heading {
    font-size: 1.3rem;
    margin-top: 120px;
  }

  .privacy-title {
    font-size: 1rem;
  }

  .privacy-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}
