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

.footer {
    margin-top: auto;
    padding: 1rem 0;
}

/* All footer links default to white */
.footer__link,
.footer__contact-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer__link:hover,
.footer__contact-link:hover {
    color: #fff;
    opacity: 0.75;
}

.footer__contact-link {
    margin-bottom: 6px;
}

/* Legal / company info text */
.footer__legal {
    font-size: 0.875rem; /* 14px */
    text-align: center;
    color: var(--bs-secondary-color); /* Bootstrap muted */
    margin-bottom: 0;
}

/* Social icons row */
.footer__socials {
    display: flex;
    gap: 0.5rem;
}

.footer__socials a {
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.2s;
}

.footer__socials a:hover {
    opacity: 0.75;
}

@media screen and (max-width: 660px) {
    .footer__link {
        text-align: center;
    }
}
