/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: var(--black);
    color: #d0d0d0;
    padding: 40px 0 24px;
    margin-top: 20px;
    border-top: 4px solid var(--pink);
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-brand {
    flex: 1.5;
    min-width: 200px;
}

.footer-logo {
    display: block;
    width: auto;
    max-height: 200px;
    margin-bottom: 12px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #b0b0b0;
    text-decoration: none;
    margin: 0;
    padding: 2px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--pink);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================================
   FOOTER - TABLET & MOBILE
============================================================ */

@media (max-width: 768px) {

    .footer .container {
        gap: 0;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 0 0 100%;
        min-width: 100%;
        order: 1;
        text-align: left;
        margin-bottom: 16px;
    }

    .footer-brand p {
        text-align: left;
    }

    .footer-logo {
        max-height: 120px;
        margin-bottom: 12px;
    }

    .footer-col:not(.footer-brand):nth-child(2) {
        flex: 0 0 50%;
        order: 2;
        padding-right: 10px;
    }

    .footer-col:not(.footer-brand):nth-child(3) {
        flex: 0 0 50%;
        order: 3;
        padding-left: 10px;
    }

    .footer-col h5 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-col a {
        line-height: 1.6;
        padding: 1px 0;
    }
}

/* ============================================================
   FOOTER - SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .footer-brand {
        margin-bottom: 14px;
    }

    .footer-logo {
        max-height: 100px;
        margin-bottom: 10px;
    }

    .footer-col:not(.footer-brand):nth-child(2) {
        padding-right: 8px;
    }

    .footer-col:not(.footer-brand):nth-child(3) {
        padding-left: 8px;
    }

    .footer-col h5 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .footer-col a {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}