body {
    font-family: 'Fira Sans', Arial, Helvetica, sans-serif;
    scroll-behavior: smooth; /* weiches Scrollen zu den Ankern */
}
.redpoint::before {
  content: "";
  display: inline-block;
  width: var(--rp-size);
  height: var(--rp-size);
  background-color: red;
  border-radius: 50%;
  margin-right: var(--rp-gap);
  vertical-align: 5px;
}

.redpoint {
  --rp-size: 0.4em;
  --rp-gap: 0.3em;
  --rp-indent: calc(var(--rp-size) + var(--rp-gap));
  text-indent: calc(-1 * var(--rp-indent));
}

/* VIDEO-Section ALT clippt sicher alles

.video-hero {
  overflow: hidden;
}
.video-grid {
  display: grid;
}
.video-grid > * {
  grid-area: 1 / 1;
}
.video-grid .video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 11 / 4;
  object-fit: cover;
}
.overlay-left {
  width: 33.333%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.logo-slot {
  pointer-events: auto;
  padding: 10px;
  line-height: 0;
}
.logo-slot img {
  width: 383px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 576px) {
  .overlay-left {
    width: 45%;
    justify-content: center;
  }
}
/* VIDEO-Section ALT ENDE */

/* VIDEO-Section NEU START */
/* --- Grundlayout --- */
.video-hero { overflow: hidden; }

/* Vollbreiter Frame: zeigt Farbe oder (optional) Blur-Backdrop */
.video-frame {
  position: relative;
  width: 100%;
  background: transparent; /* Pillarbars-Farbe (Variante 1) */
  overflow: hidden;
}

/* Zentrierte Stage: begrenzt die Video-Höhe auf großen Screens */
.stage {
  /* Video soll bis zu 80vh hoch werden, aber nie höher */
  --maxH-lg: 80vh;
  /* Padding oben/unten optional: */
  padding-block: clamp(0px, 0vh, 24px);
  display: flex;
  justify-content: center;
}

/* Grid-Stack für Video + Overlay */
.stage-grid {
  display: grid;
  grid-template-areas: "stack";
  place-items: stretch; /* Video füllt die Grid-Fläche */
}

/* Beide in dieselbe Zelle legen */
.stage-grid > * { grid-area: stack; }

/* Das eigentliche Video */
.hero-video {
  height: auto;
  width: 100%;
  aspect-ratio: 11 / 4;  /* Wunschformat */
  object-fit: cover;
  display: block;
  /* WICHTIG: Begrenzung auf großen Screens */
  max-height: var(--maxH-lg);
  /* Wenn Höhe limitiert wird, schrumpft die Breite automatisch -> Pillarbars */
}

/* Damit die Grid-Fläche die Breite des Videos annimmt, nicht 100% */
.stage-grid { width: min(100%, calc(var(--maxH-lg) * (16/9))); }

/* --- Overlay (links 1/3) & Logo --- */
.overlay-left {
  width: 33.333%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  pointer-events: none; /* Controls klickbar */
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.logo-slot {
  pointer-events: auto;
  padding: 10px;
  line-height: 0;
}
.logo-slot img {
  /*max-width: clamp(96px, 14vw, 220px); */
  max-width: 90%;
  height: auto;
  display: block;
}

/* Schmal: Overlay breiter, Logo mittig */
@media (max-width: 576px) {
  .overlay-left { width: 45%; justify-content: center; }
}

/* --- Variante 2: Blur-Backdrop (optional) --- */
.video-frame .bg-blur {
  display: none; /* default: aus (Variante 1 aktiv) */
}

.video-frame.has-blur .bg-blur {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(0.9);
  transform: scale(1.05); /* weichere Ränder */
  z-index: 0;
}

/* Stage liegt über dem Blur-Backdrop */
.video-frame .stage { position: relative; z-index: 1; }

/* VIDEO-Section NEU ENDE */

h1, h2 {
  color: #6aae88;
  font-size: 30px;
  text-transform: uppercase;
}

h3 {
  color: #3953a1;
  font-size: 30px;
  text-transform: uppercase;
}

p, li {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
}
li {
    margin-bottom: 5px;
}

strong.aufz {
  font-size: 22px;
  font-weight: 500;
}

#geschichte ul li::first-line {
  color: #3953a1;
  font-weight: 500;
}

#geschichte ul li::marker {
  color: #3953a1;
}

.py-7 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.row {
  display: flex;
  align-items: center;
}

svg text {
  font-family: var(--bs-body-font-family);
}

h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #3953a1;
}

.koopera img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.col-border-md {
  border-right: none;
}

@media (min-width: 768px) {
  .col-border-md {
    border-right: 1px solid var(--bs-primary);
  }
}

.form-check-label {
  font-weight: 400;
  font-family: 'Fira Sans';
}

.form-control::placeholder, .form-control option {
  opacity: 0.7;
}
.form-control {
    background-image: url(/assets/img/solvent_kontakt_slice_17.png);
    background-repeat: repeat-y;
    background-position: center;
    background-size: 100%;
    margin-bottom: 15px;
}
.control-label {
    display: none;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
    box-shadow: none !important;
}

.checkbox {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.form-helper {
    margin-right: 6px;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;     /* Kreis */
  background-image: url('/assets/img/solvent_kontakt_slice_21.png');  /* deine BG-Grafik */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--bs-success) !important;
  font-weight: bold;
}

.btn, .btn-primary {
    background-color:  rgba(106, 174, 136, 1);
    border-color: rgba(106, 174, 136, 1);
}
.btn:hover, .btn:active, .btn:focus-visible {
    background-color: rgba(57, 83, 161, 1);
    border-color: rgba(57, 83, 161, 1);
}

@media (min-width: 768px) {
  .pos-md-absolute { position: absolute !important; }
  .top-md-0 { top: 0; }
  .start-md-0 { left: 0; }
  .h-md-100 { height: 100%; }
}

/* WICHTIG: <object> responsiv machen */
#svg-map {
  display: block;           /* nimmt volle Zeile im Flex-Container */
  max-width: 100%;
  width: clamp(280px, 92vw, 500px); /* mobil groß genug, auf Desktop gedeckelt */
  height: auto;             /* nur mit viewBox sinnvoll, siehe Punkt 3 */
}

/* Falls iOS + Flex seltsam rechnet: Eltern-Flex auf min-width:0 setzen */
.d-flex { min-width: 0; }

.carousel-indicators [data-bs-target] {
    background-color: #6AAE88;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}
.navbar-toggler {
    border: 2px rgba(85, 85, 85, 1) solid;
}
.navbar-toggler:focus {
    box-shadow: none;
}