
/* =========================================
   AGBOR KINGDOM
   ROYAL FOOTER
========================================= */

.site-footer {
    position: relative;
    background: #11100e;
    color: #ffffff;
    margin-top: 80px;
    overflow: hidden;
}


/* =========================================
   SUBTLE ROYAL TOP LINE
========================================= */

.site-footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #c9a24d,
        #f0d27a,
        #c9a24d,
        transparent
    );
}


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

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 55px;

    display: grid;
    grid-template-columns:
        1.8fr
        1fr
        1fr
        1fr
        1fr;

    gap: 45px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand-mark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    letter-spacing: 2px;
}

.footer-brand-mark span {
    font-size: 12px;
    letter-spacing: 4px;
    color: #c9a24d;
    margin-bottom: 8px;
}

.footer-brand-mark strong {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-tagline {
    margin: 12px 0 22px;
    color: #c9a24d;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-description {
    max-width: 380px;
    color: #aaa7a0;
    font-size: 14px;
    line-height: 1.8;
}


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

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

.footer-column h3 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    position: relative;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    background: #c9a24d;

    margin-top: 10px;
}

.footer-column a {
    display: inline-block;

    width: fit-content;

    color: #aaa7a0;
    text-decoration: none;

    font-size: 14px;

    margin-bottom: 13px;

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

.footer-column a:hover {
    color: #c9a24d;
    transform: translateX(4px);
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    max-width: 1320px;

    height: 1px;

    margin: 0 auto;

    background: rgba(255, 255, 255, 0.1);
}


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

.footer-bottom {
    max-width: 1400px;

    margin: 0 auto;

    padding: 28px 40px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;
}

.footer-copyright p {
    margin: 0;

    color: #77746f;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   POWERED BY CHIEF AKWE
========================================= */

.footer-powered {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    position: relative;

    padding: 0 30px;
}

.footer-powered::before {
    content: "";

    width: 45px;
    height: 1px;

    background: #c9a24d;

    margin-bottom: 10px;
}

.footer-powered span {
    color: #77746f;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.footer-powered strong {
    margin-top: 5px;

    color: #c9a24d;

    font-size: 15px;

    letter-spacing: 3px;
}

.footer-powered small {
    margin-top: 4px;

    color: #77746f;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================
   LEGAL / CONTACT
========================================= */

.footer-legal {
    display: flex;
    justify-content: flex-end;
}

.footer-legal a {
    color: #aaa7a0;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #c9a24d;
}


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

@media (max-width: 1050px) {

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 700px) {

    .footer-main {
        grid-template-columns: 1fr;

        padding: 55px 25px 40px;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        padding: 25px;

        text-align: center;

        gap: 25px;
    }

    .footer-copyright {
        order: 2;
    }

    .footer-powered {
        order: 1;
    }

    .footer-legal {
        order: 3;

        justify-content: center;
    }

}


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

@media (max-width: 400px) {

    .footer-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-brand-mark strong {
        font-size: 23px;
    }

    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

}

