footer {
    .footer-container {
        height: 180px;

        .footer-column {
            box-shadow: 34px 0px 36px -44px rgb(0, 0, 0);

            &:last-child {
                box-shadow: none;
            }
        }
    }
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #404f56;
}

.footer-container {
    display: flex;
    width: 100%;
}

.footer-column {
    width: 25%;
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.footer-column.left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column.left .img-container img {
    height: 89px;
    width: auto;
}

.footer-column.left .social-buttons {
    width: 75%;
    display: flex;
    justify-content: space-evenly;
    margin: 1rem 0;
}

.media-icons-footer {
    font-size: 1.25em;
    svg {
        transition: fill 0.5s ease;

        path {
            fill: #465055;
            transition: fill 0.5s ease;
        }
    }
    .cls-1 {
        mix-blend-mode: multiply;
        opacity: 0.4;
    }

    .cls-2 {
        isolation: isolate;
    }

    .cls-3 {
        fill: #fff;
    }

    &:hover {
        svg {
            path {
                fill: #fe8300;
            }
        }
    }
}

.footer-column.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.footer-column.center h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fe8300;
}

.footer-column.center span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.footer-column.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.link-footer {
    color: #fff;
    text-decoration: none;

    &:hover {
        color: #fe8300;
        text-decoration: underline;
        text-decoration-color: #fe8300;
    }
}

.footer-column.logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
}

.footer-column.logos img {
    height: 120px;
    width: auto;
}

.footer-bottom {
    width: 100%;
    background: #d9dddd;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem;
    color: #404f56;
}

/* Footer responsive adjustments */
@media (max-width: 882px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        height: auto !important;
        padding: 1rem 0.5rem;
    }
    .footer-column {
        width: 100% !important;
        max-width: 100vw;
        height: auto !important;
        padding: 1rem 0.5rem;
        box-sizing: border-box;
        align-items: center !important;
        text-align: center !important;
    }
    .footer-column.left,
    .footer-column.center,
    .footer-column.links,
    .footer-column.logos {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 1rem 0.5rem !important;
    }
    .footer-column.left .social-buttons {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    .footer-column.logos img {
        height: 80px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 600px) {
    .footer-column.logos img {
        height: 60px;
    }
    .footer-column.left .img-container img {
        height: 60px;
    }
    .footer-bottom {
        font-size: 0.65rem;
        padding: 0.3rem;
    }
}
