/**
 * File: footer.css
 *
 * FOOTER STYLES - Enhanced.
 * Styles for the global site footer.
 *
 * @package     KuK Bendorf Theme
 * @author      Oliver Ferber <admin@kuk-bendorf.de>
 * @copyright   2024-2026 KuK Bendorf e.V.
 * @license     Proprietary
 * @version     1.0.0
 */

.site-footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #23233A 100%);
    color: rgba(240, 240, 248, 0.88);
    padding: 60px 0 0;
    margin-top: 80px;
    transition: background-color 0.35s ease;
}

html[data-theme="dark"] .site-footer {
    background: linear-gradient(135deg, #08080F 0%, #101018 100%);
    border-top: 1px solid var(--color-border, #2A2A42);
}

.footer-content {
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.footer-column h4 {
    color: white;
    /* War Gold, jetzt Weiß für Vereinsfarben (Rot-Weiß) auf Dunkelgrau */
    border-bottom: 2px solid var(--primary);
    /* Roter Akzent */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-branding h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-branding p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(240, 240, 248, 0.80);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--kuk-red, #F20F0F);
    transform: translateX(6px);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 240, 248, 0.80);
    font-size: 1.25rem;
    text-decoration: none;
    transition: background 0.28s ease,
                border-color 0.28s ease,
                transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.28s ease;
}

.footer-social a:hover {
    background: var(--kuk-red, #F20F0F);
    border-color: var(--kuk-red, #F20F0F);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(242, 15, 15, 0.35);
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal .sep {
    opacity: 0.3;
}

.footer-credits {
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-info {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal .sep {
        display: none;
    }
}