/* ============================================
   GLOBAL RESET & PREVENT OVERFLOW
   ============================================ */
html, body {
    overflow-x: hidden; /* Mengunci sumbu horizontal agar tidak bisa geser ke kanan/kiri */
    width: 100%;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box; /* Memastikan padding tidak menambah lebar elemen */
}

/* Import Poppins */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Import Islamic Font (Amiri) */
@font-face {
    font-family: 'Amiri';
    src: url('../fonts/islamic/Amiri-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Set Global Font */
body {
    font-family: 'Poppins', sans-serif;
}

.text-arabic {
    font-family: 'Amiri', serif;
}
