/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: var(--black);
    color: var(--white);
}


/* =========================================
   FOOTER TOP
========================================= */

.footer-top {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 3rem;

    padding: 2.75rem 0;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo {
    color: var(--white);

    font-size: 1.70rem;
    font-weight: 600;

    letter-spacing: -0.02em;

    transition: color 0.2s ease;
}

.footer-logo:hover {
    color: var(--primary);
}


/* =========================================
   RIGHT SIDE
========================================= */

.footer-right {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 1.25rem;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 1.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

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


/* =========================================
   SOCIAL MEDIA
========================================= */

.footer-social {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 0.6rem;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: inline-grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: var(--white);

    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom {
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;

    color: rgba(255, 255, 255, 0.62);
}

.footer-bottom small {
    font-size: 0.8rem;
}











@media (max-width: 768px) {


.footer-top {
    min-height: 150px;
    display: block;
}

.footer-right{
     align-items: center;

}

.footer-brand {
    text-align: center;
}



}
