/* Hintergrund und allgemeines Layout */
.anlagen-section {
  background-color: #faf8f8;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#anlagen {
    scroll-margin-top: 260px; /* Höhe von Header + Navbar */
}

.anlagen-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: green;
  text-shadow: 1px 1px black;
}

.zentralbild {
  text-align: center;
  margin: 20px 0 50px;
}

.zentralbild img {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.zentralbild figcaption {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #444;
}

/* Flexbox für jede Anlage */
.anlage {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Bild mit Caption */
.anlage figure {
  margin: 0;
  max-width: 300px;
}

.anlage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.anlage figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
  color: #555;
}

/* Textbereich und Button */
.anlage-text {
  flex: 1;
  min-width: 200px;
}

.anlage-text p {
  margin: 0 0 16px;
  line-height: 1.5;
}

.FM1 {
    color: green;
    font-weight: bold;
    text-align: center;
}

.FM2 {
    font-weight: bold;
    text-align: center;
}

.FM3 {
    font-weight: bold;
    text-align: center;
    color: red;
}

.anlage-text button {
  padding: 10px 20px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.anlage-text button:hover {
  background-color: #555;
}

/* Responsiv: kleinere Displays */
@media (max-width: 768px) {
  .anlage {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .anlage-text {
    margin-top: 20px;
  }
  
}
