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

.mnma-footer {
    position: relative;
    width: 100%;
    color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 80, 0.94),
            rgba(0, 40, 110, 0.91)
        ),
        url("../picha/BGMNM_1.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* ------------------------------------------------------------
   Container
------------------------------------------------------------ */

.mnma-footer-container {
    position: relative;
    z-index: 2;

    width: min(1200px, 92%);
    margin: 0 auto;

    padding: 55px 0 45px;

    display: grid;

    grid-template-columns:
        1.1fr
        1fr
        1fr
        1.2fr;

    gap: 45px;
}


/* ------------------------------------------------------------
   Footer Columns
------------------------------------------------------------ */

.mnma-footer-column {
    min-width: 0;
}


/* ------------------------------------------------------------
   Titles
------------------------------------------------------------ */

.mnma-footer-title {
    margin: 0;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 21px;
    font-weight: 600;

    color: #ffffff;

    letter-spacing: 0.2px;
}


.mnma-footer-divider {
    width: 42px;
    height: 2px;

    margin: 13px 0 20px;

    background: #e31e24;

    border-radius: 2px;
}


/* ------------------------------------------------------------
   Collaboration Links
------------------------------------------------------------ */

.mnma-footer-links {
    display: flex;
    flex-direction: column;
}


.mnma-footer-links a {
    display: block;

    padding: 7px 0;

    color: rgba(255, 255, 255, 0.88);

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.mnma-footer-links a::before {
    content: "\f105";

    font-family: FontAwesome;

    margin-right: 9px;

    color: #e31e24;
}


.mnma-footer-links a:hover {
    color: #ffffff;

    padding-left: 6px;
}


/* ------------------------------------------------------------
   Visitor Counter
------------------------------------------------------------ */

.mnma-counter {
    padding-top: 5px;
}


.mnma-counter img {
    display: block;

    max-width: 100%;
    height: auto;

    border-radius: 4px;
}


/* ------------------------------------------------------------
   Social Networks
------------------------------------------------------------ */

.mnma-social-links {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.mnma-social-link {
    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.9);

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.mnma-social-link:hover {
    color: #ffffff;

    transform: translateX(5px);
}


.mnma-social-icon {
    width: 34px;
    height: 34px;

    display: flex;

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

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

    border-radius: 50%;

    font-size: 15px;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.mnma-social-link:hover .mnma-social-icon {
    background: #e31e24;

    border-color: #e31e24;
}


/* ------------------------------------------------------------
   Contact
------------------------------------------------------------ */

.mnma-contact-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.mnma-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 14px;

    line-height: 1.6;

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


.mnma-contact-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 14px;
}


.mnma-contact-label {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-weight: 600;
}


.mnma-contact-item a {
    color: rgba(255, 255, 255, 0.88);

    text-decoration: none;
}


.mnma-contact-item a:hover {
    color: #ffffff;

    text-decoration: underline;
}


/* ------------------------------------------------------------
   Bottom Footer
------------------------------------------------------------ */

.mnma-footer-bottom {
    position: relative;
    z-index: 2;

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

    background: rgba(0, 0, 0, 0.18);
}


.mnma-footer-bottom-container {
    width: min(1200px, 92%);

    min-height: 58px;

    margin: 0 auto;

    display: flex;

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

    gap: 20px;
}


.mnma-footer-copyright {
    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 13px;

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


.mnma-footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;
}


.mnma-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;
}


.mnma-footer-bottom-links a:hover {
    color: #ffffff;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .mnma-footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .mnma-footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 40px 0;
    }


    .mnma-footer-title {
        font-size: 19px;
    }


    .mnma-footer-bottom-container {
        width: 88%;

        padding: 18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }


    .mnma-footer-copyright {
        line-height: 1.5;
    }

}