/* ─────────────────────────────────────────────────────────────
   STÖRER-BAR — Hinweis Brücke Zell / Anreise
   Zentral ausgelagert, damit Entfernen 2027 (nach Brückenneubau)
   nur eine Datei + die Snippet-Einbindung pro HTML betrifft.
   ───────────────────────────────────────────────────────────── */

:root {
  --stoerer-h: 0px;
}

body.has-stoerer {
  --stoerer-h: 44px;
}

body.has-stoerer nav {
  top: var(--stoerer-h);
}

.stoerer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  background: var(--green-deep, #3d5c3a);
  color: var(--white, #f5f0e8);
  border-bottom: 1px solid rgba(200, 169, 110, 0.35);
  font-family: var(--font-body, "Jost", sans-serif);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.45;
}

body.has-stoerer .stoerer {
  display: block;
}

.stoerer .lucide {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

.stoerer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--stoerer-h);
}

.stoerer-icon {
  flex-shrink: 0;
  color: var(--gold-light, #dfc08a);
  display: inline-flex;
}

.stoerer-icon .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.stoerer-text {
  flex: 1;
  min-width: 0;
}

.stoerer-text strong {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gold-light, #dfc08a);
  margin-right: 0.4em;
}

.stoerer-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold, #c8a96e);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 2rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.stoerer-link:hover {
  background: var(--gold, #c8a96e);
  color: var(--green-deep, #243d24);
  border-color: var(--gold, #c8a96e);
}

.stoerer-link .lucide {
  width: 14px;
  height: 14px;
}

.stoerer-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(245, 240, 232, 0.55);
  cursor: pointer;
  padding: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.stoerer-close:hover {
  color: var(--white, #f5f0e8);
  background: rgba(255, 255, 255, 0.08);
}

.stoerer-close .lucide {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  body.has-stoerer {
    --stoerer-h: 88px;
  }
  .stoerer {
    font-size: 0.76rem;
  }
  .stoerer-inner {
    padding: 0.55rem 1rem;
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .stoerer-text {
    flex: 1 1 100%;
    order: 2;
  }
  .stoerer-icon {
    order: 1;
  }
  .stoerer-close {
    order: 1;
    margin-left: auto;
  }
  .stoerer-link {
    order: 3;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }
}

@media (max-width: 480px) {
  body.has-stoerer {
    --stoerer-h: 96px;
  }
  .stoerer-link {
    flex: 1;
    justify-content: center;
  }
}
