/* Font Utama */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
body, p, a, button, input, select, label { font-family: 'Lato', sans-serif; }
a { font-size: small; }

/* Ukuran Font H1 Responsif */
h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    padding: 0 20px;
}

/* Custom Checkbox Color */
input[type='checkbox']:checked {
    background-color: #f97316; /* orange-500 */
    border-color: #f97316; /* orange-500 */
}

/* No Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}