/* ==================== FOOTER STYLES ==================== */

.site-footer {
    background-color: #1E1E1E;
    color: #ffffff;
    padding: 40px 0 0 0;
    margin-top: 60px;
    font-family: 'Roboto-Light', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Area */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Logo */
.footer-logo-container {
    flex: 0 0 auto;
    margin-right: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Info Section (Contact & Links) */
.footer-info {
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Contact Information */
.footer-contact {
    margin-right: 20px;
}

.footer-contact p {
    margin: 8px 0;
    color: #ffffff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: #A81802;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #A81802;
}

/* Copyright Section */
.footer-copyright {
    text-align: center;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-contact {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo {
        height: 50px;
    }
}

/* Dark Mode Adjustments */
[data-theme="dark"] .site-footer {
    background-color: #0a0a0a;
    border-top: 1px solid #222222;
}

[data-theme="dark"] .footer-copyright {
    background-color: rgba(0, 0, 0, 0.4);
}
/* Logo im Footer */
.footer-logo-container {
    flex: 0 0 auto;
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 60px; /* Feste Höhe für das Logo */
    width: auto; /* Automatische Breite, um Proportionen zu erhalten */
    display: block;
    max-width: 100%; /* Verhindert Überlauf auf kleinen Bildschirmen */
}

/* Responsive Anpassungen für das Logo */
@media (max-width: 768px) {
    .footer-logo-container {
        margin-right: 0;
        margin-bottom: 20px;
        justify-content: center; /* Zentriert das Logo auf mobilen Geräten */
    }
    
    .footer-logo {
        height: 50px; /* Etwas kleineres Logo auf mobilen Geräten */
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 45px; /* Noch kleineres Logo auf sehr kleinen Geräten */
    }
}

/* Kleinere Social Media Buttons im Footer */
.site-footer .intro-social {
    justify-content: center; /* Zentriert die Social Links im Footer */
    gap: 8px; /* Kleinerer Abstand zwischen den Buttons */
    margin-top: 20px; /* Abstand nach oben */
    margin-bottom: 20px; /* Abstand nach unten */
}

.site-footer .social-link {
    padding: 6px 12px; /* Reduziertes Padding */
    border-radius: 20px; /* Leicht angepasster Border-Radius für kleinere Buttons */
    font-size: 0.8rem; /* Kleinere Schriftgröße für den Text */
}

.site-footer .social-link i {
    font-size: 0.9rem; /* Kleinere Icon-Größe */
    margin-right: 6px; /* Angepasster Abstand zum Text */
}

.site-footer .social-label {
    font-size: 0.8rem; /* Kleinere Schriftgröße für das Label */
}

/* Responsive Anpassungen für die Footer Social Links */
@media (max-width: 480px) {
    .site-footer .intro-social {
        flex-direction: row; /* Behält die horizontale Anordnung bei */
        flex-wrap: wrap; /* Erlaubt Umbruch auf mehreren Zeilen */
        justify-content: center; /* Zentriert die Buttons */
        gap: 5px; /* Noch kleinerer Abstand auf sehr kleinen Bildschirmen */
    }

    .site-footer .social-link {
        padding: 4px 8px; /* Noch kleineres Padding */
        font-size: 0.75rem; /* Noch kleinere Schriftgröße */
    }

    .site-footer .social-link i {
        font-size: 0.8rem; /* Noch kleinere Icon-Größe */
        margin-right: 4px;
    }

    .site-footer .social-label {
        font-size: 0.75rem;
    }
}

