/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer {
    background-color: #f1f2f2;
    padding: 140px 0 0;
    width: 100%;
}

.footer__container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content */
.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

/* Columns */
.footer__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__column--info {
    flex-grow: 1.7;
    gap: 10px;
    align-self: end;
}

.footer__column--contact {
    max-width: 283px;
}

/* Column Titles */
.footer__column-title {
    color: #023421;
    font-size: 24px;
    line-height: 32px;
    font-family: var(--font-family);
    text-align: right;
    font-weight: 400;
    min-height: 36px;
}

/* Logo */
.footer__logo {
    width: 243px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.footer__logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Info Column */
.footer__title {
    color: #023421;
    font-size: 32px;
    line-height: 1;
    text-align: right;
    margin: 0;
    font-weight: 400;
}

.footer__subtitle {
    color: rgba(2, 52, 33, 0.8);
    font-size: 16px;
    text-align: right;
    margin: 0;
    line-height: 21px;
    max-width: 243px;
}

.footer__copyright {
    color: rgba(2, 52, 33, 0.8);
    font-size: 16px;
    text-align: right;
    margin: 0;
    line-height: 21px;
}

/* Footer Menu */
.footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__menu li {
    margin: 0;
    padding: 0;
}

.footer__menu a {
    color: rgba(2, 52, 33, 0.8);
    font-size: 16px;
    line-height: 21px;
    font-family: var(--font-family);
    text-align: right;
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
    display: block;
}

.footer__menu a:hover {
    color: #000;
    text-shadow: 0 0 black;
}

/* Contact List */
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__contact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.footer__contact-link {
    color: rgba(2, 52, 33, 0.8);
    font-size: 16px;
    font-family: var(--font-family);
    text-align: right;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer__contact-link:hover {
    color: #023421;
}

/* Bottom Bar */
.footer__bottom {
    padding: 0 0 45px;
}

.footer__bottom-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__credits {
    color: rgba(2, 52, 33, 0.8);
    font-size: 16px;
    line-height: 21px;
    font-family: var(--font-family);
    text-align: center;
    margin: 0;
}

.footer__credits a {
    color: rgba(2, 52, 33, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}

.footer__credits a:hover {
    color: #023421;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer {
        padding: 70px 0 0;
    }

    .footer__column-title {
        min-height: 0;
        font-size: 20px;
        line-height: 28px;
    }

    .footer__content {
        align-items: start;
        max-width: 337px;
        margin: 0 auto;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .footer__column {
        flex: 1;
        max-width: 100%;
    }

    .footer__column--info {
        order: 5;
        width: 100%;
        align-items: center;
    }

    .footer__contact-item {
        flex-direction: row;
    }

    .footer__bottom {
        padding: 0 0 50px;
        margin-top: -10px;
    }

    .footer__credits {
        font-size: 14px;
    }

    .footer__title,
    .footer__subtitle,
    .footer__copyright {
        text-align: center;
    }

    .footer__column--contact,
    .footer__column--menu {
        margin: 0 45px;
    }

    .footer__column--menu:nth-child(3) {
        margin-top: -36px;
    }
}

