/* --- File Style Utama ---
   Berisi animasi kustom dan override scrollbar
*/


/* Marquee Animation for Partner Logos */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* --- Global Typography Standards --- */
h1,
h2,
h3,
h4,
.font-serif {
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.nav-text {
    letter-spacing: 0.02em;
}

body {
    line-height: 1.6;
}

/* Smooth transitions for all interactive elements */
a,
button {
    transition: all 0.3s ease-in-out;
}

/* Custom scrollbar for premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a4d2e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #123520;
}