/* footerstyle.css */
.footer {
    background-color: #111;
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer .footer-brand h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer .footer-nav h6,
.footer .footer-contact h6,
.footer .footer-social h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer p,
.footer a {
    font-size: 0.85rem;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    margin-left: 1rem;
    font-size: 1.4rem;
    margin-right: rem;
    align-items: center;
}

/* ===== RESPONSIVE: samakan dengan navbar ===== */
@media (max-width: 991.98px) {
    .footer .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem; /* jarak antar kolom */
    }

    .footer .row > div {
        width: 100%;
    }

    .footer .footer-brand h5,
    .footer .footer-nav h6,
    .footer .footer-contact h6,
    .footer .footer-social h6 {
        font-size: 1rem;
    }

    .footer p,
    .footer a {
        font-size: 0.8rem;
    }

    .footer .social-icons {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
    }
}

