/* ===== 7) FOOTER (#site-footer) ===== */
#site-footer {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #2a1414, #180b0b);
    border-top: 2px solid rgba(201, 162, 75, 0.5);
    color: #cabfa9;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* Baris atas: brand + menu */
#site-footer .footer-top {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    padding: 30px 22px 24px;
    text-align: left;
}

/* === KOLOM BRAND (logo + deskripsi) === */
#site-footer .footer-brand {
    flex: 1 1 260px;
    min-width: 240px;
}
#site-footer .footer-logo {
    margin-bottom: 14px;
}
#site-footer .footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}
/* placeholder kalau logo belum ada (hapus kalau sudah pakai <img>) */
#site-footer .footer-logo .logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 56px;
    border: 1px dashed rgba(201, 162, 75, 0.5);
    border-radius: 8px;
    color: #d9b45a;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
}
#site-footer .footer-desc {
    color: #a99f8b;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 12px 0;
    max-width: 340px;
}
#site-footer .footer-age {
    display: inline-block;
    border: 1.5px solid #b23a3a;
    color: #e7a1a1;
    font-weight: 700;
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* === KOLOM MENU (auto rata sendiri) === */
#site-footer .footer-menus {
    flex: 2 1 420px;
    display: grid;
    /* kunci responsif: kolom nyesuain otomatis (min 150px, rata rata) */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 22px 26px;
}
#site-footer .footer-col h4 {
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    font-size: 14px;
    color: #d9b45a; /* judul kolom gold */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}
#site-footer .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-inline-start: 0;
}
#site-footer .footer-col li {
    margin: 0 0 8px 0;
}
#site-footer .footer-col a {
    color: #ece3d0; /* cream */
    text-decoration: none;
    font-size: 13.5px;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}
#site-footer .footer-col a:hover {
    color: #e9c96a; /* gold saat hover */
    padding-left: 4px;
}

/* === COPYRIGHT BAR (bawah) === */
#site-footer .footer-bar {
    text-align: center;
    font-size: 12.5px;
    color: #8f8674;
    padding: 14px 18px;
    border-top: 1px solid rgba(201, 162, 75, 0.18);
    background: rgba(0, 0, 0, 0.25);
}
#site-footer .footer-bar .brand-gold {
    color: #e9c96a;
    font-weight: 700;
}

/* HP: brand & menu numpuk, menu jadi 1 kolom */
@media (max-width: 640px) {
    #site-footer .footer-top {
        gap: 24px;
    }
    #site-footer .footer-menus {
        flex-basis: 100%;
    }
}
