* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Caveat";
  src: url("font/Caveat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Unsichtbare Anker ohne Fokus-Rahmen */
.anchor {
  display: block;
  position: relative;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

h1 {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, 6vw, 64px);
  color: #ffd684;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.hero {
  min-height: 100vh;
  background-image: url("assets/img/backgroung_img.webp");
  background-size: cover;
  background-position: center; /* reicht völlig */
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikal */
  align-items: center; /* horizontal */

  padding: 1rem;
}

.logo {
  max-width: 360px; /* Logo Größe anpassen */
  width: 100%;
  padding: 0 1rem;
  height: auto;
}

.impressum-Datenschutz-link,
a {
  font-family: "Arial", sans-serif;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #a09f9f;
  text-decoration: none;
}

.sign-wrap {
  width: min(480px, 90vw);
  margin: 0 auto;
}

/* optional responsive */
@media (max-width: 560px) {
  .sign-wrap {
    width: 92vw;
  }
}

.sign-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.sign-base {
  pointer-events: none;
}

.hit {
  cursor: pointer;
}

.hit-g {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 180ms ease,
    filter 180ms ease;
  will-change: transform;
}

.hit:hover .hit-g,
.hit:focus .hit-g {
  transform: scale(1.06);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

/* mobile etwas dezenter */
@media (max-width: 420px) {
  .hit:hover .hit-g,
  .hit:focus .hit-g {
    transform: scale(1.04);
  }
}

/* =========================
   LEGAL PAGES (Impressum & Datenschutz)
   ========================= */

.legal-page {
  max-width: 820px;
  margin: clamp(3rem, 6vh, 6rem) auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  line-height: 1.7;
}

.legal-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin: 2.5rem 0 1rem;
}

.legal-page p {
  margin-bottom: 1rem;
}

.legal-page a {
  color: inherit;
  text-decoration: underline;
}

.legal-page a:hover {
  opacity: 0.8;
}

/* Listen (z. B. DSGVO Punkte) */
.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

/* Footer unter Legal Pages */
.legal-footer {
  text-align: center;
  padding: 3rem 1rem 2rem;
  font-size: 0.9rem;
}

.legal-footer a {
  text-decoration: none;
  opacity: 0.8;
}

.legal-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Optional: dezente Trennung */
.legal-page section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
}

.legal-page section:last-of-type {
  border-bottom: none;
}
