/* Import Font Inter dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

/* Setting Default Body */
body {
    font-family: 'Inter', sans-serif;
    /* Transisi halus saat ganti warna background/text (Dark Mode) */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* --- ANIMASI NAVIGASI (Garis Bawah Oranye) --- */
.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f97316; /* Warna Oranye Samitra */
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- UTILITY TAMBAHAN --- */

/* Agar gambar card rasionya tetap bagus */
.aspect-card {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Custom Scrollbar (Opsional: Agar scrollbar browser terlihat lebih modern & gelap) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e293b; /* Slate-800 */
}

::-webkit-scrollbar-thumb {
    background: #475569; /* Slate-600 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f97316; /* Hover jadi Oranye */
}

/* --- ANIMASI --- */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.7; }
    50% { transform: scale(1.1) translate(-20px, 10px); opacity: 0.5; }
}
.animate-pulse-slow {
    animation: pulse-slow 10s ease-in-out infinite;
}

@keyframes pulse-slower {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    50% { transform: scale(1.15) translate(20px, -15px); opacity: 0.4; }
}
.animate-pulse-slower {
    animation: pulse-slower 14s ease-in-out infinite alternate;
}

/* Dark mode adjustments for animations */
.dark .animate-pulse-slow,
.dark .animate-pulse-slower {
    opacity: 0.4; /* Lower base opacity for dark mode */
}

/* Animasi mengambang pelan untuk badge statistik */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite ease-in-out;
}