/* ================================================================= */
/* */
/* STYLE DLA STOPKI (FAT FOOTER - 3 KOLUMNY)                         */
/* */
/* ================================================================= */

.site-footer {
    background-color: #09090B;
    /* Czerń węglowa - zgodnie z Design Systemem */
    border-top: 1px solid var(--border-zinc);
    padding-top: 5rem;
    color: var(--text-gray);
}

.footer-grid {
    display: grid;
    /* Nowe proporcje dla 3 kolumn: Brand najszerszy, reszta po równo */
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

/* --- KOLUMNA 1: BRANDING --- */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    padding-right: 4rem;
    /* Większy margines od prawej */
}

/* Nadpisanie logo, by pasowało do stylów w headerze */
.footer-brand-col .brand-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.footer-contact-info a {
    color: var(--text-white);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--accent-purple);
}

/* --- KOLUMNY Z LINKAMI --- */
.footer-heading {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-block;
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
}

.footer-list a.highlight-link {
    color: var(--accent-purple);
    font-weight: 600;
}

/* --- DÓŁ STOPKI (COPYRIGHT) --- */
.footer-bottom {
    background-color: var(--bg-absolute);
    border-top: 1px solid var(--border-zinc);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--accent-purple);
}


/* ================================================================= */
/* */
/* RESPONSYWNOŚĆ STOPKI                                              */
/* */
/* ================================================================= */

/* Ekrany średnie (Tablety) */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .footer-brand-col {
        padding-right: 0;
        grid-column: span 2;
    }
}

/* Ekrany małe (Smartfony) */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}