/* Mobile-First: Basis-Styles gelten für mobile Geräte */
.footer {
    font-family: var(--font-family-primary);
    font-size: 14px;
    line-height: 1.8;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-link {
    font-family: var(--font-family-primary);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    color: #333333;
    margin: 0 12px;
    transition: var(--transition-fast);
    font-weight: 400;
    letter-spacing: 0.6px;
}

.footer-link:hover {
    text-decoration: none;
    color: #4854E7;
}

.footer-links {
    font-family: var(--font-family-primary);
    font-size: 14px;
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-copyright {
    font-family: var(--font-family-primary);
    font-size: 12px;
    line-height: 1.8;
    color: #86868b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-flag-icon {
    width: 20px;
    height: 15px;
    border: none;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile-First: Responsive Design - Regel 022: 4 Breakpoints */
/* Basis-Styles gelten für mobile (max-width: 576px) - keine Media Query erforderlich */

/* Tablet/iPad (min-width: 600px) - Apple.com-Niveau: Mehr Weißraum */
@media (min-width: 600px) {
    .footer {
        padding: 50px 40px;
        max-width: 100%;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) - Apple.com-Niveau: Großzügige Max-Width */
@media (min-width: 1024px) {
    .footer {
        max-width: 980px;
        padding: 60px 60px;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) - Apple.com-Niveau: Noch mehr Weißraum */
@media (min-width: 1440px) {
    .footer {
        max-width: 1200px;
        padding: 80px 80px;
    }
}
