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

.explore-footer {
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;
    padding: 90px 0 60px;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* ===============================
   LEFT
================================ */

.footer-left {
    max-width: 360px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-brand h2 {
    color: var(--heading);

    font-size: 38px;
    font-weight: 900;

    letter-spacing: -1px;
}

.footer-left p {
    margin-top: 20px;

    color: var(--text2);

    line-height: 1.9;
}

/* ===============================
   SOCIAL
================================ */

.footer-social {
    margin-top: 28px;

    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;

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

    border-radius: 16px;

    color: var(--heading);

    background: var(--card-2);

    border: 1px solid var(--border);

    transition: .3s;

    box-shadow: var(--shadow);
}

.footer-social a:hover {
    color: #fff;

    background: linear-gradient(135deg,
            var(--az-purple),
            var(--az-purple-2));

    transform: translateY(-4px);
}

/* ===============================
   RIGHT
================================ */

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.footer-column h4 {
    color: var(--heading);

    font-size: 18px;
    margin-bottom: 22px;
}

.footer-column a {
    display: block;

    color: var(--text2);

    margin-bottom: 14px;

    transition: .25s ease;
}

.footer-column a:hover {
    color: var(--heading);
}

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

.footer-bottom {
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

    padding: 26px 0 50px;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text2);

    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 26px;
}

.footer-bottom-links a {
    color: var(--text2);

    font-size: 14px;

    transition: .25s ease;
}

.footer-bottom-links a:hover {
    color: var(--heading);
}

/* ===============================
   LIGHT MODE
================================ */

body:not(.dark):not(.theme-dark) .footer-social a,
body.theme-light .footer-social a {
    background: rgba(255, 255, 255, .85);

    box-shadow:
        0 12px 40px rgba(15, 23, 42, .08);
}

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

@media(max-width:900px) {

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

    .footer-right {
        width: 100%;

        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;

        text-align: center;
    }

}

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

@media(max-width:600px) {

    .explore-footer {
        padding: 70px 0 40px;
    }

    .footer-brand h2 {
        font-size: 32px;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

}
