/* ================================================= */
/* CSS UNTUK FOOTER (DENGAN GAYA KARTU)              */
/* ================================================= */

footer {
    width: 100%;
    padding: 4rem 0;
    text-align: center;
    color: var(--main-text-color);
    margin-top: -4rem;
}

.footer-card-container {
    /* max-width dan margin dihapus agar lebar penuh */
    padding: 2rem 1.5rem;
    background-image: url('../assets/images/sample/bg-footer.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.footer-card-container h2 {
    font-size: 1.8rem; /* Ukuran font sedikit dikecilkan */
    line-height: 1.3;  /* Menambahkan jarak antar baris agar rapi */
    font-family: var(--sacramento);
    font-weight: 400;
    margin-top: 1rem;
}

.footer-card-container h4 {
    font-size: 1.6rem;
    font-family: var(--arabic);
    font-weight: 400;
}

.credit-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--hr-color);
    margin-top: 1.5rem;
    padding-top: 0.8rem;
}

.credit-wrapper p {
    font-size: 0.8rem;
}

.credit-wrapper p span {
    font-weight: bold;
}

.credit-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text-color);
    font-size: 0.8rem;
}