.eu{
  background-color: #f5f5f5 !important;
  padding-top: 220px !important;
}

.mt-50{
    margin-top: 50px !important;
}
.mt-80{
    margin-top: 80px !important;
}

.mt150{
    margin-top: 150px !important;
}

.mb-50{
    margin-bottom: 50px !important;
}

.p50{
    padding: 50px 0 50px 0 !important;
}

.img-eu{
    width: 50%;
    padding-top: 30px !important;
}

/* plakat */

/* Container für das Bild */
  .image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
  }

  .image-wrapper img {
    max-width: 60%;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 6px;
  }

  .info-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-align: center;
  }

 /* Popup Modal */
  .image-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1050; /* Popup Z-Index */
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  .image-popup.open { display: flex; }

  .popup-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* Button und Bild vertikal anordnen */
    max-width: 90vw; /* Maximale Breite 90% des Viewports */
    max-height: 90vh; /* Maximale Höhe 90% des Viewports */
    overflow: hidden; /* Verhindert das Überlaufen */
    z-index: 1100; /* Popup Inhalt Z-Index */
  }

  .popup-content img {
    max-width: 100%; /* Maximale Breite auf 90% des Viewports */
    height: auto; /* Höhe bleibt proportional zum Bild */
    object-fit: contain; /* Verhindert Verzerrung */
    border-radius: 6px;
    overflow: hidden;
  }

  /* Bild-Wrapper im Popup mit Scrollen */
  .popup-image-wrapper {
    max-height: 80vh; /* Max Höhe des Bildes */
    overflow-y: auto; /* Vertikal scrollbar */
  }

  .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 26px;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    cursor: pointer;
    z-index: 1200; /* Schließen-Button Z-Index */
  }
  .close-btn:hover {
    background: rgba(0,0,0,0.12);
    color: #e00;
  }

  body.no-scroll { overflow: hidden; }

  /* Sicherstellen, dass die Spalten nebeneinander bleiben */
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .col-6 {
    flex: 1 1 50%;
  }