footer.modern-footer {
    background: linear-gradient(180deg, #19191b 80%, #181819 100%);
    color: #ededed;
    width: 100%;
    margin: 0;
    padding: 3vw 0 2.5vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid #333;
    box-shadow: 0 -6px 44px #000c;
    font-family: 'Montserrat', Arial, sans-serif;
}

.footer-social {
    display: flex;
    gap: 2.2vw;
    margin-top: 1vw;
    margin-bottom: 2vw;
    justify-content: center;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222228;
    border-radius: 50%;
    box-shadow: 0 2px 16px #0006;
    padding: 1.2vw;
    transition: transform 0.18s, box-shadow 0.18s;
    margin-top:1vw;
    margin-bottom:1vw;
}
.footer-icon img {
    height: 2.8vw;
    width: 2.8vw;
    min-width: 34px;
    min-height: 34px;
    max-width: 55px;
    max-height: 55px;
    object-fit: contain;
}
.footer-icon:hover {
    transform: scale(1.18);
    box-shadow: 0 4px 30px #ffe97a33, 0 4px 20px #000b;
    background: #24242b;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    font-size: 1.3vw;
    font-weight: 700;
    margin-bottom: 2vw;
    margin-top: 0.3vw;
    letter-spacing: 0.01em;
}
.footer-links a {
    color: #ffe97a;
    text-decoration: none;
    transition: color 0.16s;
}
.footer-links a:hover {
    color: #fff3a0;
    text-decoration: underline;
}
.footer-divider {
    font-size: 1.8em;
    color: #ffe97a;
    opacity: 0.33;
    margin: 0 1.3vw;
    font-weight: bold;
    line-height: 0.7;
    user-select: none;
}

.footer-meta {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1vw;
}
.footer-meta-line {
    text-align: center;
    font-size: 1.04vw;
    color: #bdbdbd;
    line-height: 2.2;
    margin: 0;
}
.footer-meta-line a {
    color: #ffe97a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s;
}
.footer-meta-line a:hover {
    color: #fff3a0;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 800px), (orientation: portrait) {
    footer.modern-footer {
        font-size: 2vw;
        padding-bottom: 11vh;
    }
    .footer-social {
        gap: 16vw;
        margin-top: 6vw;
        margin-bottom: 6vw;
    }
    .footer-icon {
        border-radius: 50%;
        padding: 3vw;
    }
    .footer-icon img {
        height: 7vw;
        width: 7vw;
        min-width: 30px;
        min-height: 30px;
        max-width: 80px;
        max-height: 80px;
    }
    .footer-links {
        font-size: 3.2vw;
        gap: 5vw;
        margin-bottom: 4vw;
    }
    .footer-divider {
        font-size: 4vw;
        margin: 0 2vw;
    }
    .footer-meta {
        max-width: 95vw;
        margin-bottom: 3vw;
    }
    .footer-meta-line {
        font-size: 2.6vw;
        line-height: 2.4;
    }
}

footer.modern-footer {
    /* ... */
    /* Oder, wenn du magst, einen Streifen ganz oben: */
    box-shadow: 0 -2px 30px #ffe97a18 inset;border-top: 1px solid #ffe97a22;
    margin-top: 15vw; /* Abstand nach oben */

}


