/* Footer - Behalte spezifische Regeln, Basisstile sind in global.css */
.footer {
    margin-top: 20px; /* Beibehalten: Spezifischer Abstand zum Inhalt */
    position: relative;
    z-index: 1000000; /* Höher als der Logo z-index */
}

.footer-content {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
}

.footer-left, .footer-right {
    padding: 5px;
}

.footer-content a {
    font-size: 1em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #4eb472c6;
    text-decoration: underline;
}

/* Mobile-spezifische Anpassungen */
@media (max-width: 768px) {
    .footer {
        padding: 10px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .footer-left, .footer-right {
        padding: 5px;
    }
}

/* Fix für iOS Safari */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }

    html {
        height: -webkit-fill-available;
    }
}