/* ===========================
   Footer Bereich
   =========================== */
.footer-clean {
    background-color: #333;     /* Dunkler Hintergrund */
    color: #fff;                /* Weiße Schrift */
    width: 100%;                /* Volle Breite */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.04); /* Leichter Schatten oben */
    padding: 20px 0 10px 0;     /* Innenabstand oben und unten */
}

.footer-clean .container {
    width: 90%;                 /* Breite des Containers */
    max-width: 1200px;          /* Maximalbreite */
    margin: 0 auto;             /* Zentriert horizontal */
}

.footer-clean .row {
    display: flex;              /* Flexbox für Zeilenlayout */
    flex-wrap: wrap;            /* Zeilen umbrechen bei Platzmangel */
    justify-content: center;    /* Zentrierte Ausrichtung */
}

.footer-clean .item {
    flex: 1 1 200px;            /* Flexibles Wachstum und Basisbreite */
    margin: 10px;
    min-width: 180px;           /* Mindestbreite */
}

.footer-clean h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
}

.footer-clean ul {
    padding: 0;
    list-style: none;           /* Keine Aufzählungszeichen */
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-clean ul a {
    color: inherit;             /* Farbe vom Elternteil übernehmen */
    text-decoration: none;
    opacity: 0.8;               /* Leicht transparent */
}

.footer-clean ul a:hover {
    opacity: 1;                 /* Volle Deckkraft beim Hover */
}

/* Soziale Icons rechtsbündig */
.footer-clean .item.social {
    text-align: right;
}

.footer-clean .item.social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;         /* Runde Icons */
    border: 1px solid #ccc;
    margin-left: 10px;
    margin-top: 22px;
    color: inherit;
    opacity: 0.75;
}

.footer-clean .item.social > a:hover {
    opacity: 0.9;
}

/* Copyright Text */
.footer-clean .copyright {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 13px;
    opacity: 0.6;
}

/* ===========================
   Responsive Anpassungen
   =========================== */

/* Für Bildschirme kleiner als 991px */
@media (max-width: 991px) {
    .footer-clean .item.social > a {
        margin-top: 40px;
    }
}

/* Für Bildschirme kleiner als 767px (Mobile) */
@media (max-width: 767px) {
    header {
        padding: 8px;
        font-size: 15px;
    }
    main {
        margin-top: 80px;
        margin-bottom: 95px;
        padding: 10px;
    }
    .footer-clean {
        padding: 10px 0 5px 0;
        font-size: 13px;
    }
    .footer-clean .container {
        width: 100vw;
        max-width: none;
        margin: 0;
        padding: 0;
    }
    .footer-clean .row {
        flex-wrap: wrap;
    }
    .footer-clean .item {
        min-width: 120px;
        margin: 5px 5px;
        padding-bottom: 0;
        flex: 1 1 120px;
    }
    .footer-clean h3 {
        font-size: 13px;
        margin-bottom: 7px;
    }
    .footer-clean ul {
        font-size: 11px;
    }
    .footer-clean .item.social {
        text-align: center;
        min-width: 80px;
    }
    .footer-clean .item.social > a {
        margin-top: 5px;
        margin-left: 5px;
        width: 28px;
        height: 28px;
        font-size: 16px;
        line-height: 28px;
    }
    .footer-clean .copyright {
        font-size: 10px;
        margin-top: 8px;
    }
}