/* --- FOOTER СЕКЦИЈА --- */
.site-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    color: #000000;
}

/* Лого */
.footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 2rem 0;
}

.footer-main-logo {
    max-width: 180px;
    height: auto;
    filter: invert(1); /* Ова ќе ја направи сликата црна за да ја тестираш */
}

/* Share (Центрирано) */
.footer-share-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0 3rem 0;
}

.share-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
}

.share-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.share-icons a {
    color: black; /* Карактеристичната зелена боја од сликата */
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.share-icons a:hover {
    opacity: 0.6;
}

/* Долни линкови (сива позадина) */
.footer-links-wrap {
    background-color: #f6f6f6; /* Светло сивата позадина од сликата */
    display: flex;
    justify-content: center;
    gap: 8vw; /* Растојание меѓу колоните */
    padding: 5rem 2rem;
    border-top: 1px solid #eaeaea;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.5rem;
}

/* Класа за насловите што се подолу во истата колона */
.footer-col h3.margin-top {
    margin-top: 2rem; 
}

.footer-col a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #444444;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #000000;
}