/* ============================================
   NEIDFAKTOR FOOTER STYLES
   Einbinden: <link rel="stylesheet" href="css/footer.css">
   ============================================ */

footer {
    background: var(--anthracite);
    color: var(--white);
    padding: 6rem 1.5% 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Sui Generis', sans-serif;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-family: 'Sui Generis', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-logo {
    height: 260px;
    max-width: 280px;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    transform: scale(1.05);
}

.footer-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-section p {
    font-family: 'Sui Generis', sans-serif;
    color: var(--stone-leather);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.15rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a:not(.social-link):not(.footer-logo) {
    font-family: 'Sui Generis', sans-serif;
    color: var(--stone-leather);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 400;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-section a:not(.social-link):not(.footer-logo):hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Footer Logo Link überschreibt den allgemeinen a:hover transform nicht doppelt */
.footer-logo:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(164, 154, 142, 0.2);
    text-align: center;
    color: var(--stone-leather);
    font-family: 'Sui Generis', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    footer {
        padding: 6rem 2% 3rem;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-logo {
        height: 200px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-logo {
        height: 160px;
        max-width: 180px;
    }

    .footer-content {
        gap: 2.5rem;
    }
}