/* ===============================
   Farb-Konzept (Corporate Identity)
   =============================== */
:root {
    --primary-red: #b22222;
    --primary-gold: #f2c94c;

    --neutral-light: #f5f5f5;
    --neutral-dark: #222222;

    --sport-badminton: #1abc9c;
    --sport-tischtennis: #2980b9;
    --sport-wingchun: #e67e22;
}

footer {
    background-color: var(--neutral-dark);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
.footer {
    text-align: center;
    padding: 20px;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #1877F2;
    transition: opacity 0.2s ease;
}

.facebook-link:hover {
    opacity: 0.75;
}