/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fcf9f5;
}
::-webkit-scrollbar-thumb {
    background: #1b4332;
    border-radius: 10px;
}

/* Glassmorphism */
.glass-nav {
    background: rgba(252, 249, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-nav {
    background: rgba(1, 45, 29, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icons */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.delay-100 { transition-delay: 100ms; }
.animate-on-scroll.delay-200 { transition-delay: 200ms; }
.animate-on-scroll.delay-300 { transition-delay: 300ms; }
.animate-on-scroll.delay-400 { transition-delay: 400ms; }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base resets & utilities */
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hover-trigger .hover-target {
    transition: all 0.5s ease;
}

.hover-trigger:hover .hover-target {
    transform: translateX(10px);
    color: #a5d0b9;
}

/* Animasi Sensitif & Jurnalistik untuk Suara yang Terbungkam */
.suara-card-wrapper {
    transition: transform 700ms ease-out, box-shadow 700ms ease-out;
}

.suara-card-wrapper:hover {
    transform: translateY(-8px); /* -translate-y-2 */
    box-shadow: 0 25px 50px -12px rgba(1, 45, 29, 0.2);
}

.suara-img {
    filter: grayscale(100%) blur(12px); /* blur-md dan grayscale */
    transition: filter 700ms ease-out, transform 700ms ease-out;
}

.suara-card-wrapper:hover .suara-img {
    filter: grayscale(0%) blur(0px);
    transform: scale(1.02);
}
