@import url("fonts.css");

:root {
  --blue: #1d5b86;
  --blue-dark: #15486b;
  --text: #2b2b2b;
  --text-soft: #4a4a4a;
  --card-bg: rgba(255, 255, 255, 0.66);
  --card-border: rgba(255, 255, 255, 0.55);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  /* seitenfüllender Hintergrund, fixiert */
  background: url("bg.webp") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 3.5rem) 1rem;
}

/* Glas / milchige Karte */
.card {
  width: min(760px, 100%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.42) 0%,
    var(--card-bg) 55%,
    rgba(255, 255, 255, 0.82) 100%
  );
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: clamp(1.6rem, 4.5vw, 3.2rem);
}

/* Fallback, falls der Browser kein backdrop-filter kann */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .card { background: rgba(255, 255, 255, 0.92); }
}

.logo {
  display: block;
  width: min(360px, 80%);
  height: auto;
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
}

.eyebrow {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--blue);
  margin: 0 0 0.4rem;
}

h1 {
  font-weight: 600;
  font-size: clamp(1.5rem, 4.2vw, 2.1rem);
  line-height: 1.25;
  color: var(--blue-dark);
  text-align: center;
  margin: 0 0 1.6rem;
}

h1.page-title { margin-bottom: 0.4rem; }

.subtitle {
  text-align: center;
  font-weight: 300;
  color: var(--text-soft);
  margin: 0 0 2rem;
}

p { margin: 0 0 1.1rem; color: var(--text); }

.lead { font-weight: 300; }

/* Hesse-Zitat: zentriert mit großem Schmuck-Anführungszeichen */
.quote {
  margin: 2.4rem auto 1.2rem;
  max-width: 34ch;
  text-align: center;
}

.quote::before {
  content: "\275D";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 0.6;
  color: var(--blue);
  opacity: 0.25;
  margin-bottom: -0.4rem;
}

.quote blockquote {
  margin: 0;
  padding: 0;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 3vw, 1.42rem);
  line-height: 1.55;
  color: var(--blue-dark);
}

.quote blockquote p { margin: 0; }

.quote figcaption {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.quote figcaption::before {
  content: "\2014\00a0";
  color: var(--blue);
}

.signature {
  margin-top: 1.8rem;
  font-weight: 600;
  color: var(--blue-dark);
}

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); }

/* Footer-Links */
.footer-links {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
  font-size: 0.92rem;
}
.footer-links a { margin: 0 0.5rem; }
.footer-links .sep { color: rgba(0, 0, 0, 0.35); }

/* Rechtsseiten */
.legal h2 {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin: 2rem 0 0.6rem;
}
.legal h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue);
  margin: 1.4rem 0 0.4rem;
}
.legal p, .legal li { color: var(--text-soft); }
.legal ul { margin: 0 0 1.1rem; padding-left: 1.2rem; }
.legal .uppercase-note { font-size: 0.82rem; }

.back-link {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  body { line-height: 1.7; }
  .card { border-radius: 16px; }
}
