/* Smooth Scrolling */
html { 
    scroll-behavior: smooth; 
}

/* Custom Scrollbar */
::-webkit-scrollbar { 
    width: 8px; 
}

::-webkit-scrollbar-track { 
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb { 
    background: #590000; 
    border-radius: 10px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: #800000; 
}

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

/* Sinhala Font Support */
body.sinhala { 
    font-family: 'Noto Sans Sinhala', 'Inter', sans-serif; 
}

.font-sinhala { 
    font-family: 'Noto Sans Sinhala', sans-serif; 
}
