/* ============================================================
   00-VARIABLES-RESET.CSS
   Variabel warna/tema global (dipakai oleh SEMUA file css lain)
   + CSS reset dasar + import font.
   ============================================================ */
:root {

    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
    --bg: #0d0904;
    --bg-mid: #1a1005;
    --gold: #c8a020;
    --gold-bright: #edd84a;
    --gold-pale: #e8d0a0;
    --gold-grad: linear-gradient(90deg,#4a2e08,#9a7015,#e8c035,#f8e880,#e8c035,#9a7015,#4a2e08);
    --cream: #f0e6d0;
    --muted: #806030;
    --shadow-gold: 0 0 22px rgba(210,160,30,0.45);
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{
    width:100%;height:100%;
    /* Fallback bertingkat untuk Safari iOS */
    height: -webkit-fill-available;
    height: 100dvh;
    overflow:hidden;
}
body{
    width:100%;height:100%;
    height:-webkit-fill-available;
    height:100dvh;
    overflow:hidden;
    font-family:'Cormorant Garamond',serif;
    background:#0d0904;color:var(--cream);
    /* Cegah overscroll/bounce di iOS agar konten tidak keluar layar */
    overscroll-behavior:none;
    -webkit-overflow-scrolling:auto;
    /* Pastikan touch tap responsif */
    -webkit-tap-highlight-color:transparent;
}
