/* assets/css/style.css */

/* Custom Shape: Bintang 9 NU */
.star-nine {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Animasi Blob (Mengambang) untuk dekorasi hero section */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Kustomisasi Scrollbar agar lebih elegan dan senada dengan tema */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #E8F5E9; /* nu-light */
}

::-webkit-scrollbar-thumb {
    background: #006633; /* nu-green */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004d26; /* green lebih gelap */
}