 #vorstand {
    scroll-margin-top: 260px; /* Höhe von Header + Navbar */
}

/* Vorstand Section Hintergrund + Titel */
.vorstand-section {
  background-color: #e7e6e6;
  padding: 50px 20px;
  text-align: center;
}

.vorstand-section h2,
.vorstand-section h3 {
  font-size: 2.2rem;
  color: green;
  text-shadow: 1px 1px black;
  margin-bottom: 30px;
}

.vorstand-section hr {
  border: none;
  height: 2px;
  background-color: #ccc;
  margin: 50px auto 30px;
  width: 80%;
}

/* Flex-Container für Bilder */
.bildreihe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

/* Einzelnes Bild mit Rahmen und Caption */
.bildreihe figure {
  margin: 0;
  max-width: 180px;
  width: 100%;
  border: 4px solid #555; 
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bildreihe {
    .rahmen_a {
        border: 8px solid rgb(194, 126, 126);
    }

    .rahmen_b {
        border: 8px solid rgb(196, 196, 111);
    }

    .rahmen_c {
        border: 8px solid rgb(145, 204, 145);
    }

    .rahmen_d {
        border: 8px solid cornflowerblue;
    }
    
}

.bildreihe img {
  width: 100%;
  height: auto;
  display: block;
}

.bildreihe figcaption {
  padding: 10px;
  font-size: 0.9rem;
  color: #333;
}

.bildreihe figcaption div:first-child {
  font-weight: bold;
}

.bildreihe figcaption div:last-child {
  font-style: italic;
  color: #666;
}

/* Responsive Verhalten */
@media (max-width: 768px) {
  .bildreihe {
    gap: 20px;
  }

  .bildreihe figure {
    max-width: 140px;
  }

  .vorstand-section h2,
  .vorstand-section h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bildreihe {
    flex-direction: column;
    align-items: center;
  }

  .bildreihe figure {
    max-width: 90%;
  }
}
