/* =========================
   Grundlayout
========================= */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #ffffff;
}

/* =========================
   Banner
========================= */
.banner {
    height: 250px;
    width: 100%;
    background-image: url("../images/cropped-image-2-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding-top: 20px;
}

.banner-overlay h1 {
    margin: 0;
    font-size: 2.5rem;
}

.banner-overlay p {
    margin-top: 0.5em;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

/* =========================
   Inhalt
========================= */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    margin-top: 0;
    font-size: 2rem;
}

p {
    margin-bottom: 1.2em;
}

.signature {
    margin-top: 2em;
}

/* =========================
   Footer (ORIGINAL + ERWEITERUNG)
========================= */
.footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 20px 0;
    margin-top: 60px;

    position: relative; /* nötig für das rechte Facebook-Icon */
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =========================
   Facebook rechts im Footer
========================= */
.footer-social {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover img {
    transform: scale(1.15);
    opacity: 0.85;
}

/* =========================
   Mobile Feinjustierung
========================= */
@media (max-width: 480px) {
    .footer-social {
        right: 12px;
    }
}

.footer-social img {
    width: 48px;
    height: 48px;
    image-rendering: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}