/* Footer‑Grundlayout */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333d43;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s ease; /* Farbwechsel */
}

footer a:hover,
footer a:focus {
    color: #0066cc;
}