/* Custom Styles for Yayasan Bina Insan Hukoci */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --yasbih-green: #0E5A44;
    --yasbih-green-dark: #093B2C;
    --yasbih-gold: #C59A27;
    --yasbih-gold-light: #E5B946;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1E293B;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #0E5A44;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C59A27;
}

/* Selection Highlight */
::selection {
    background-color: #C59A27;
    color: #FFFFFF;
}

/* Animation utilities */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}