/* Smooth Scrolling Bawaan HTML */
html {
    scroll-behavior: smooth;
}

/* Modifikasi Scrollbar Premium */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7c3aed; 
}

/* Animasi untuk Gambar (Mengambang Naik Turun) */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Animasi untuk Background Hero (Zoom Sangat Pelan) */
@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.animate-slow-zoom {
    animation: slowZoom 20s ease-in-out infinite;
}