/* ═══════════════════════════════════════════════════════════════════════════
   FUCHSLACHEN – Märchenerzählerin Lena Tiedtke
   Stylesheet  ·  keine externen Ressourcen  ·  cookie-frei
   Redesign 2026 – moderner, luftiger, personenmarken-zentriert
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN-TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Markenfarben */
  --color-sky:        #19d4ec;
  --color-lavender:   #7755e1;
  --color-violet:     #5219a8;
  --color-deep:       #3a1280;

  /* Neutrale Töne */
  --color-cream:      #faf8f4;
  --color-parchment:  #f2ece0;
  --color-ink:        #1e1428;
  --color-muted:      #6b5a82;
  --color-subtle:     #ede8f5;

  /* Verlauf */
  --gradient-brand:   linear-gradient(135deg, #1ec8e0 0%, #6644d4 55%, #4a17a0 100%);
  --gradient-hero:    linear-gradient(160deg, rgba(30,20,40,0.62) 0%, rgba(82,25,168,0.40) 100%);
  --gradient-soft:    linear-gradient(160deg, #f0f5fb 0%, #ece7f8 55%, #e4d9f4 100%);
  --gradient-section: linear-gradient(180deg, #faf8f4 0%, #f2edf8 100%);

  /* Typografie – EB Garamond lokal, Google Fonts als Fallback-Hinweis */
  --font-display: "EB Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body:    "EB Garamond", Garamond, Georgia, "Times New Roman", serif;

  /* Abstände */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   3.5rem;
  --space-xl:   6rem;
  --space-2xl:  9rem;

  /* Sonstiges */
  --radius:     0.6rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;
  --shadow-sm:  0 2px 12px rgba(82,25,168,0.08);
  --shadow:     0 6px 28px rgba(82,25,168,0.13);
  --shadow-lg:  0 16px 56px rgba(82,25,168,0.18);

  /* Übergänge */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET & GRUNDLAGEN ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 19px;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--color-deep); }

/* ─── HILFSKLASSEN ───────────────────────────────────────────────────────── */
.container {
  max-width: 980px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ─── SITE-NAVBAR (schmale, elegante obere Leiste) ───────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--space-md);
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(82,25,168,0.10);
  transition: box-shadow 0.3s var(--ease);
}

.site-nav.scrolled {
  box-shadow: 0 4px 20px rgba(82,25,168,0.10);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-violet);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-sub {
  font-size: 0.72rem;
  color: var(--color-muted);
  font-style: italic;
  letter-spacing: 0.04em;
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: var(--color-violet);
  border-bottom-color: var(--color-lavender);
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
/*
  LAYOUT-PRINZIP: Der Hero ist ein echter Flex-Container mit zwei Zonen:
    Zone 1 (.hero-background): nimmt verfügbaren Platz oben ein (flex: 1),
                                zeigt Logo zentriert darin.
    Zone 2 (.hero-content-container): sitzt immer unten, nimmt nur so viel
                                       Platz wie nötig.
  Dadurch können Logo und Text sich NIEMALS überlappen, egal wie klein der
  Bildschirm ist.
*/
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--gradient-brand);
  overflow: hidden;
  text-align: center;
}

/* Sternenhimmel – liegt hinter allem */
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 180px 180px, 120px 120px, 90px 90px;
  background-position: 10px 20px, 55px 80px, 30px 50px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

/* Zone 1: Logo-Bereich – wächst und gibt Platz an Logo */
.hero-background {
  position: relative;
  flex: 1;           /* Nimmt den gesamten verfügbaren Raum oberhalb des Texts */
  min-height: 120px; /* Absolutes Minimum, damit das Logo nie zu eng wird */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

/* Logo – zentriert innerhalb seiner Flex-Zone, nie absolut positioniert */
.hero-logo-large {
  width: min(260px, 45vw, 40vh); /* Passt sich Breite UND Höhe an */
  height: auto;
  opacity: 0.80;
  filter: none;
  pointer-events: none;
  display: block;
}

/* Zone 2: Text-Container – sitzt immer unten, kein min-height */
.hero-content-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
  width: 100%;
  background: linear-gradient(to top, rgba(30,20,40,0.8) 0%, transparent 100%);
}

.hero-content {
  color: white;
  max-width: 680px;
  padding: 0 var(--space-md);
  animation: heroFadeUp 1.1s var(--ease) both;
  animation-delay: 0.2s;
  text-align: center;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-style: italic;
  opacity: 0.85;
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.55;
}

/* ─── SECTION BASICS ─────────────────────────────────────────────────────── */
.section {
  padding: var(--space-xl) 0;
}

.section--light {
  background-color: var(--color-cream);
}

.section--tinted {
  background: var(--gradient-soft);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-lavender);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.15;
}

.section-title em {
  color: var(--color-violet);
  font-style: italic;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-top: 0.8rem;
  font-style: italic;
  max-width: 540px;
}

/* ─── ÜBER MICH ──────────────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Foto-Spalte */
.about-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-lg);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Platzhalter-Box bis Foto vorhanden */
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  color: var(--color-muted);
  text-align: center;
}

.portrait-placeholder .logo-placeholder {
  width: 120px;
  opacity: 0.35;
}

.portrait-placeholder p {
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Dekoratives Ornament */
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(82,25,168,0.12) 100%);
  z-index: 1;
  pointer-events: none;
}

.portrait-deco {
  display: none; /* Wird erst wieder aktiviert, wenn das Portrait-Foto eingebunden ist */
}

/* Text-Spalte */
.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--color-deep);
  font-weight: 600;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.85;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-violet);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--color-lavender);
  background: rgba(119,85,225,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: var(--space-xs);
  line-height: 1.5;
}

/* Kleine Schriftgröße */
.offer-item .text-small {
    font-size: 0.85rem;
    color: #555;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.fact-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1px solid rgba(119,85,225,0.18);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  box-shadow: var(--shadow-sm);
}

.fact-pill .fact-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── ANGEBOT ────────────────────────────────────────────────────────────── */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.offer-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(119,85,225,0.12);
}

.offer-item:last-child {
  border-bottom: none;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-deep);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.offer-item p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 660px;
}

/* ─── TERMINE ────────────────────────────────────────────────────────────── */
.termine-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(119,85,225,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: var(--space-md);
}

.termin-row {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: var(--space-md);
  background: white;
  padding: 1.2rem var(--space-md);
  transition: background 0.2s;
}

.termin-row:hover {
  background: rgba(119,85,225,0.04);
}

.termin-date-block {
  text-align: center;
  line-height: 1.05;
}

.termin-day {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-violet);
  display: block;
}

.termin-month {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 600;
}

.termin-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.2rem;
}

.termin-info p {
  font-size: 0.86rem;
  color: var(--color-muted);
}

.termin-badge {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-lavender);
  background: rgba(119,85,225,0.08);
  border: 1px solid rgba(119,85,225,0.2);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}

.termine-hinweis {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-muted);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  background: rgba(119,85,225,0.05);
  border: 1px dashed rgba(119,85,225,0.25);
}

/* ─── KONTAKT ────────────────────────────────────────────────────────────── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.kontakt-text .section-title {
  margin-bottom: var(--space-sm);
}

.kontakt-text p {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.kontakt-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/*.kontakt-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1.5px solid rgba(119,85,225,0.18);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  text-decoration: none;
  color: var(--color-ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}*/

.kontakt-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.3rem 0;
  text-decoration: none;
  color: var(--color-ink);
  box-shadow: none;
  transition: color 0.22s var(--ease);
}

/*.kontakt-link:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
  border-color: var(--color-lavender);
  color: var(--color-deep);
} */
.kontakt-link:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  color: var(--color-deep);
}

.kontakt-link-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.2rem;
  text-align: center;
}

.kontakt-link-body {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.kontakt-link-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}

.kontakt-link-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-violet);
}

/* Rechte Seite Kontakt – dekorativ */
.kontakt-deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-deco-inner {
  position: relative;
  width: 260px;
  height: 260px;
}

.kontakt-deco-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.kontakt-deco-logo {
  width: 180px;
  opacity: 0.85;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.6);
  padding: var(--space-lg) 0 var(--space-md);
  font-size: 0.86rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}

.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);  /* Weiß mit 85% Deckkraft */
  /* opacity: 0.55;  <-- Löschen oder kommentieren! */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-sky);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85); /* Weiß mit 85% Deckkraft */
  font-size: 0.8rem;
  /* opacity: 0.4;  <-- Diese Zeile löschen! */
}

/* ─── TRENNLINIE ORNAMENT ─────────────────────────────────────────────────── */
.section-divider {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.8rem;
  color: var(--color-lavender);
  opacity: 0.45;
  margin: 0;
  padding: 0.5rem 0;
}

/* ─── SECTION OUTRO ─────────────────────────────────────────────────────── */
.section-outro {
  margin-top: var(--space-md);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-violet);  /* Oder #5219a8 */
  max-width: 600px;
  opacity: 0.8;
}

.about-quote cite {
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--color-violet);  /* Dunkler (#5219a8) */
  margin-top: 0.4rem;
  opacity: 1;  /* Transparenz entfernen */
}

/* ─── LEGAL SEITEN ────────────────────────────────────────────────────────── */
.legal-wrap {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--color-violet);
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-deep);
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content ul {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content a {
  color: var(--color-violet);
}

/* ─── RESPONSIVE: TABLET ─────────────────────────────────────────────────── */
/* ─── RESPONSIVE: TABLET QUER (bis 1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  .about-layout {
    gap: var(--space-md);
  }
}

/* ─── RESPONSIVE: TABLET HOCH (bis 800px) ───────────────────────────────── */
@media (max-width: 800px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .portrait-frame {
    aspect-ratio: 3/2;
    max-height: 340px;
  }

  /* Termine: Badge in eigene Zeile, kein Abschneiden */
  .termin-row {
    grid-template-columns: 4.5rem 1fr;
    grid-template-rows: auto auto;
  }

  .termin-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.25rem;
    white-space: normal;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .kontakt-deco {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-links {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

/* ─── RESPONSIVE: MOBIL (bis 560px) ─────────────────────────────────────── */
@media (max-width: 560px) {
  :root {
	   /* Schriftgröße für Mobilgeräte leicht reduzieren */
    font-size: 17px; /* Von 19px auf 16px runter (ca. -15%) */
    
    /* Deine bestehenden Abstände */
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-md: 1.25rem;
  }

  /* Nav: Links ausblenden, nur Brand sichtbar */
  .nav-links {
    display: none;
  }

  .site-nav {
    padding: 0.75rem var(--space-sm);
  }

  /* ─── HERO STRUKTUR ─────────────────────────────────────────────────────── */
/* Die neue Flex-Zonen-Logik funktioniert auf allen Größen – nur Feintuning nötig */
.hero-logo-large {
  width: min(200px, 42vw, 32vh); /* Auf kleinen Screens etwas kompakter */
  opacity: 0.70;
}

.hero-content-container {
  padding-bottom: var(--space-xl);
  padding-top: 1rem;
}

/* Sternenhimmel etwas dezenter auf Mobil */
.hero-stars {
  opacity: 0.28;
}

  /* Über mich */
  .portrait-frame {
    aspect-ratio: 4/3;
    max-height: 280px;
  }

  .about-lead {
    font-size: 1.2rem;
  }

  .about-quote {
    padding: 0.75rem var(--space-sm);
    font-size: 1rem;
  }

  .about-facts {
    grid-template-columns: 1fr 1fr;
  }

  /* Termine */
  .termin-row {
    grid-template-columns: 3.5rem 1fr;
    padding: 1rem var(--space-sm);
    gap: var(--space-sm);
  }

  .termin-day {
    font-size: 1.7rem;
  }

  .termin-badge {
    display: none; /* zu eng auf kleinen Bildschirmen */
  }

  /* Kontakt */
  .kontakt-link {
    padding: 0.9rem 1rem;
  }

  /* Footer */
  .footer-top {
    gap: 0.75rem;
  }
}

/* ─── RESPONSIVE: KLEINES MOBIL (bis 380px) ─────────────────────────────── */
@media (max-width: 380px) {
  .about-facts {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .fact-pill {
    font-size: 0.82rem;
  }
}

/* ─── RESPONSIVE: QUERFORMAT / GERINGE HÖHE ──────────────────────────────── */
/* Bei wenig vertikaler Höhe (z.B. Handy quer) Logo kleiner machen,
   damit die Logo-Zone nicht zu viel Platz beansprucht */
@media (max-height: 768px) {
  .hero-logo-large {
    width: min(160px, 35vw, 28vh);
    opacity: 0.55;
  }

  .hero-background {
    min-height: 80px;
  }
}

@media (max-height: 500px) {
  .hero-logo-large {
    width: min(100px, 25vw, 22vh);
    opacity: 0.40;
  }

  .hero-background {
    min-height: 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }
}

/* ─── MOBILE MENÜ (Hamburger) ────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-violet);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(82,25,168,0.12);
  padding: var(--space-sm) var(--space-md);
  z-index: 99;
  box-shadow: 0 8px 24px rgba(82,25,168,0.1);
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(82,25,168,0.08);
  letter-spacing: 0.04em;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile-menu a:hover {
  color: var(--color-violet);
}

@media (max-width: 560px) {
  .nav-toggle {
    display: flex;
  }
}

/* ─── EINGABE-ANIMATIONEN ────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-Anker-Offset für fixe Nav */
:target { scroll-margin-top: 5rem; }

