/* public/css/footer.css */
.footer-custom {
    background-color: var(--teal);
    color: white;
    padding: 30px 0;
    margin-top: auto;
    border-top: 5px solid #111 !important;
    position: relative;
}

/* Garis Aksen Kuning ala Komik di atas Footer */
.footer-custom::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 6px;
    background-color: var(--accent-yellow);
    border-top: 3px solid #111;
    border-bottom: 3px solid #111;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-text {
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0px #111;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.social-wrapper {
    display: flex;
    gap: 15px;
}

/* Tombol Sosial Media Bergaya Komik */
.social-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 3px solid #111;
    padding: 8px 18px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 0px #111;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--accent-yellow);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px #111;
}

/* Responsif Mobile */
@media (max-width: 767px) {
    .footer-custom .container {
        flex-direction: column;
        text-align: center;
        gap: 20px !important;
    }
    .footer-custom .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }
    .social-wrapper {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
}