/* Goldene Momente – Footer CSS */

footer {
    background: var(--anthrazit);
    color: var(--white);
    padding: 5rem 6% 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 0.9fr 0.9fr;
    gap: 1.9rem;
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transform: translateY(-3px);
}

.footer-logo-icon,
.footer-logo-text {
    height: 58px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-links h2,
.footer-links h4 {
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links:nth-child(2),
.footer-links:nth-child(3) {
    margin-left: 0;
}

.footer-links.footer-social .social-icons {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.footer-links.footer-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: opacity 0.25s ease;
    margin-bottom: 0;
    padding: 0;
}

.footer-links.footer-social .social-icons a:hover {
    opacity: 1;
    transform: none;
}

.footer-links.footer-social .social-icons a:hover img {
    filter: none;
}

.footer-links.footer-social .social-icons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.25s ease;
}

.footer-closing {
    text-align: center;
    padding: 1rem 0 0.8rem;
}

.footer-closing p {
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .footer-logo-icon,
    .footer-logo-text {
        height: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2.4rem 6% 1rem;
    }

    .footer-content {
        max-width: 360px !important;
        margin: 0 auto 1.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.7rem !important;
        padding-left: 0 !important;
    }

    .footer-logo-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        margin-bottom: 0.8rem;
        transform: translateY(-3px);
    }

    .footer-logo-icon {
        height: 36px;
        width: auto;
        display: block;
    }

    .footer-logo-text {
        height: 28px;
        width: auto;
        display: block;
    }

    .footer-brand {
        max-width: 360px !important;
        margin: 0 auto !important;
        text-align: center !important;
        transform: translateY(-4px);
    }

    .footer-brand p {
        max-width: 320px !important;
        margin: 0.3rem auto 0 !important;
        text-align: center !important;
        font-size: 0.8rem;
    }

    .footer-links {
        width: 100% !important;
        max-width: 260px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        padding-left: 0 !important;
    }

    .footer-links h2,
    .footer-links h4 {
        text-align: center !important;
        padding-left: 0 !important;
        margin-bottom: 0.7rem;
        font-size: 0.7rem;
    }

    .footer-links a {
        display: block;
        text-align: center !important;
        padding-left: 0 !important;
        color: rgba(255,255,255,0.55);
        white-space: nowrap !important;
        font-size: 0.78rem;
        margin-bottom: 0.35rem;
    }

    .footer-links a:hover {
        color: var(--gold) !important;
    }

    .footer-links.footer-social .social-icons {
        justify-content: center;
        gap: 0.4rem;
    }

    .footer-links.footer-social .social-icons a {
        width: 36px;
        height: 36px;
    }

    .footer-links.footer-social .social-icons a img {
        width: 20px;
        height: 20px;
    }

    .footer-closing {
        padding: 0.6rem 0 0.5rem;
    }

    .footer-closing p {
        font-size: 0.58rem !important;
        letter-spacing: 2px !important;
        color: rgba(255,255,255,0.5) !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        line-height: 1.6 !important;
    }

    .footer-bottom {
        padding-top: 0.7rem;
        font-size: 0.7rem;
    }
}
