footer {
    background-color: var(--secondary-color);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Zentriere die Inhalte vertikal */
    gap: 40px;
    flex-wrap: wrap;
    height: 50px;
}

/* Damit der Inhalt nicht unter den Footer rutscht, reservierst du unten Platz: */
.container {
    padding-bottom: calc(60px + 15vh);
  }

/* Stile für footer_nav (Klassennamen korrigiert) */
.footer_nav {
    display: flex; /* Flexbox für horizontale Anordnung */
    justify-content: center; /* Zentriere die Elemente horizontal */
    align-items: center; /* Zentriere die Elemente vertikal */
    height: 100%; /* Stellt sicher, dass der Inhalt die volle Höhe des Footers einnimmt */
}

.footer_nav ul {
    list-style: none;
    display: flex; /* Flexbox für horizontale Anordnung */
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer_nav li {
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
}

.footer_nav a {
    color: var(--secondary-text-color);
    text-decoration: none;
    padding: 3px;
}

.footer_nav a:hover {
    color: var(--text-color);
}

/* Unterstriche in der Navbar */
.footer_nav a::after {
    content: '';
    height: 2px;
    width: 0;
    background: var(--main-brand-color);
    transition: 150ms ease-in-out;
}

.footer_nav a:hover::after {
    width: 100%;
}

/* Responsive Anpassungen */
@media (max-width: 1025px) {
    .footer_nav a {
        font-size: 2vw;
    }
}

@media (max-width: 600px) {
    .footer_nav a {
        font-size: 3.5vw;
    }
}
