/* --- Footer --- */
.footer {
    /* dunkler, zum Seitenverlauf passender Hintergrund – jetzt ohne Verlauf */
    background: rgba(20, 20, 20, 0.95);
    color: #f9fafb;
    text-align: center;
    padding: 24px 16px;

    font-family: var(--font-base);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}

/* Text im Footer leicht absoften */
.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Kontaktzeile im Footer mit größerem Abstand nach oben */
.footer-contact {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    opacity: 0.85;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-contact a {
    color: #f9fafb;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus {
    text-decoration: underline;
}

/* optional: auf sehr großen Screens etwas mehr Luft */
@media (min-width: 1200px) {
    .footer {
        padding: 28px 20px;
    }
}