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

.site-footer {

    background: var(--dark);

    color: white;

    padding: 70px 0 35px;

    border-top: 4px solid var(--primary);
}

.footer-content {

    max-width: 750px;

    margin: auto;

    text-align: center;
}

.footer-brand{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1rem;
    margin-bottom:1.5rem;
}

.footer-logo{
    width:60px;
    margin:0;
}

.footer-title {

    color: white;

    margin-bottom: 1rem;
}

.footer-description {

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    margin-bottom: 2.5rem;
}

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    align-items: center;

    margin-bottom: 2.5rem;
}

.footer-contact div {

    display: flex;

    align-items: center;

    gap: .75rem;

    color: rgba(255,255,255,.8);
}

.footer-contact i {

    color: var(--primary);

    font-size: 1.1rem;
}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 1rem;

    margin-bottom: 2.5rem;
}

.footer-social a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(255,255,255,.08);

    color: white;

    transition: var(--transition);
}

.footer-social a:hover {

    background: var(--primary);

    transform: translateY(-4px);
}

.footer-legal {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: .8rem;

    flex-wrap: wrap;

    margin-bottom: 1.5rem;

    font-size: .95rem;
}

.footer-legal a {

    color: rgba(255,255,255,.65);

    transition: var(--transition);
}

.footer-legal a:hover {

    color: var(--primary);
}

.footer-legal span {

    color: rgba(255,255,255,.35);
}

.copyright {

    color: rgba(255,255,255,.45);

    font-size: .9rem;

    margin: 0;
}

@media (max-width: 768px) {

    .site-footer {

        padding: 50px 0 30px;
    }

    .footer-title {

        font-size: 1.5rem;
    }

    .footer-description {

        font-size: .95rem;
    }
}