/* --- Footer-Stile --- */
footer {
    font-family: wosa;
    background-color: #2e3336;
    color: white;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@font-face {
    font-family: wosa;
    src: url(/assets/fonts/Work_Sans/WorkSans-VariableFont_wght.ttf);
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Erlaubt das Umbrechen der Elemente auf kleinere Bildschirme */
    justify-content: space-around;
    gap: 30px; /* Abstand zwischen den Spalten */
}

.footer-section {
    flex: 1; /* Jede Sektion nimmt den verfügbaren Platz ein */
    min-width: 200px; /* Mindestbreite, bevor umgebrochen wird */
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #c8c9cd; /* Goldgelb für Überschriften */
    margin-bottom: 15px;
    font-size: 1.2em;
}

/* --- Navigationslinks im Footer (Impressum, Datenschutz) --- */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}


.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #aaa;
}

/* --- Social Media Icons --- */
.social-icons {
    margin-top: 0.5rem;

}

.social-icons ul li {
    list-style: none;
    position: relative;
    padding: 0px;
    display:inline;
    padding-inline-start: 0px;
    
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700; /* Goldgelb beim Hover */
    transform: scale(1.1);
}

/* --- Copyright-Bereich --- */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    width: 80%;
    text-align: center;
    font-size: 0.9em;
    color: #ccc;
}

/* --- Responsivität --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Spalten werden untereinander auf kleinen Bildschirmen */
        align-items: center; /* Zentriert die Sektionen */
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-links ul {
        text-align: center; /* Zentriert die Footer-Links */
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 15px;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 8px;
    }
}