.dotted {
                width: 50%;   /* Breite des HR */
                margin: 0 auto; /* Zentriert das HR */
                
                border: none; /* Entfernt die Standard-Grenzen */
                height: 50px; /* Höhe der Linie */
                background-image: radial-gradient(circle, black 20%, transparent 20%), radial-gradient(circle, black 20%, transparent 20%);
                background-size: 20px 20px; /* Größe der Punkte */
                background-position: 0 0, 10px 5px; /* Versetzt das Punktmuster */
                background-repeat: repeat-x; /* Wiederholt das Punktmuster horizontal */
        }
hr.bottom{
      margin-bottom: -20px;
    }

body {
  font-family: "Lato", sans-serif;
  background-color: antiquewhite;
    
}

/*Button BG von Carousel*/
.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(128, 128, 128, 0.5);
  width: 5%;
  border-radius: 8px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(128, 128, 128, 0.8);
}

/*Carousel Bilder anpassen*/
#aktuellesCarousel img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

/*Hier kannst du die Hintergrundfarbe der Carousel-Items anpassen, um den Kontrast zu verbessern*/
#aktuellesCarousel .carousel-item {
  background: #111;
}

/*Hier kannst du die Transparenz und den Blur-Effekt anpassen, um die Lesbarkeit zu verbessern 
bei den Carouselcaptions*/
#aktuellesCarousel .carousel-caption {
  background: rgba(0, 0, 0, 0.3); /* dunkler wirkt oft besser */
  backdrop-filter: blur(2px);    /* leichter Glas-Effekt */
  padding: 20px;
  border-radius: 12px;
  max-width: 80%;
  margin: 0 auto;
}

/*Hero Hintergrund*/
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("Bilder/dein-hintergrundbild.jpg") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

#archiv .nav-pills .nav-link {
  border-radius: 20px;
  padding: 8px 20px;
  margin: 0 5px;
}

#archiv .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#archiv .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/*Vorstand
.section-heading {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}
.section-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent, #f4c95d);
  margin: 14px auto 0;
}

.member-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}*/

img {
  max-width: 100%;
  height: auto;
}

/* Speziell für Vorstands-Portraits */
.member-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;      /* schneidet überschüssige Bereiche ab, verzerrt aber nicht */
  object-position: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*Mitglieder*/
.member-list .list-group-item {
  background-color: transparent;
  border: 0;
  padding: 0.4rem 0;
}
.member-list .list-group-item:nth-child(odd) {
  background: rgba(0,0,0,0.015);
}

/*Start*/
.my-fixed-image {
  height: 600px;        /* gewünschte Bildhöhe */
  width: auto;          /* Breite ergibt sich automatisch */
  object-fit: cover;    /* schneidet überstehende Teile ab, verzerrt nicht */
}
