/* Footer Zentrierung für alle Seiten */
footer {
    position: relative;
    width: calc(100% - 2rem) !important;
    max-width: 1200px !important;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    padding: 1rem 0.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.footer-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100%;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    background: rgba(155, 123, 76, 0.1);
}

.copyright {
    margin-bottom: 1rem;
    text-align: center !important;
    width: 100%;
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    footer {
        width: calc(100% - 1rem) !important;
        margin: 1rem auto !important;
        padding: 0.8rem 0.4rem;
    }
    
    .footer-links {
        padding: 0 10px;
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-links a i {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
} 