/* FOOTER */
.site-footer {
    background: #000;
    color: var(--color-neon-pink);
    padding: 20px 40px 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}


/* BRAND */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-magenta);
}

.footer-tagline {
    color: var(--color-neon-pink);
    margin-top: 8px;
}
.footer-brand img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0 0;
}


/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--color-white);
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-social a {
    color: var(--color-white);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--color-magenta);
}

/* CONTACT */
.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-neon-pink);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    color: var(--color-neon-pink);
    font-size: 14px;
}
