/* ==========================================================================
   CarAsset — Reset CSS
   Reset dasar yang ringan. TIDAK berisi warna, font, atau gaya brand apa pun.
   ========================================================================== */

/* 1. Box sizing diseragamkan untuk seluruh elemen */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Margin & padding dasar dirapikan pada elemen umum (bukan reset blanket) */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* 3. Body dasar */
body {
    margin: 0;
    min-height: 100vh;
    line-height: 1.5;
}

/* 4. Media responsif secara dasar */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 5. Elemen form mewarisi font dari induknya, bukan default browser */
button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

/* 6. Link mewarisi warna teks, tanpa underline paksa */
a {
    color: inherit;
    text-decoration: none;
}

/* 7. List style dihapus hanya lewat class tertentu (tidak blanket ul/ol) */
.ca-list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 8. Table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9. Scroll behavior yang aman */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* 10. Hormati preferensi pengguna untuk mengurangi animasi */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 11. Focus style TIDAK dihapus di sini — gaya focus dirapikan di global.css,
   bukan dihilangkan tanpa pengganti. */

/* 12. Elemen yang disembunyikan lewat atribut hidden tetap konsisten */
[hidden] {
    display: none;
}
