/* Den Footer-Container vorbereiten */
.footer {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px; /* Sicherstellen, dass genug Platz da ist */
}

/* Das Copyright links lassen */
.footer .footer-copy {
    margin-right: auto;
    z-index: 1; /* Hinter dem Menü halten, falls sie sich überlagern */
}

/* Das Menü absolut in der Mitte der gesamten Breite zentrieren */
.footer .mod-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}

/* Für mobile Ansichten: Absolute Positionierung aufheben, damit nichts überlappt */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
    .footer .mod-menu {
        position: static;
        transform: none;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .container-banner .banner-overlay {
        background-attachment: scroll; /* Add scroll for background image */
    }
}

.container-banner .banner-overlay {
    height: 75vh;
}

.container-banner .banner-overlay .overlay {
  background-color:unset; /* Remove darkness from background picture */
}

@media (max-width: 767px) {
  .container-header {
    min-height: 8.5rem;
  }
}

.container-header .mod-menu {
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 400;
  padding: 2em;
}

#mod-custom114 {
  padding-right: 2em;
}

@media (max-width: 767px) {
  #mod-custom114 {
    float: right;
    position: absolute;
    right: 0;
    padding-right: 0.5em;
  }
}