/* ===============================
   1. Fonts Import (Wajib ada di CSS)
================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

/* ===============================
   2. Base Styles
================================ */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    /* Gunakan class Tailwind 'text-gray-800' di body HTML, 
       jadi tidak perlu definisikan warna di sini kecuali default browser */
}

/* Memastikan heading selalu pakai font Outfit */
h1, h2, h3, h4, h5, h6, 
.font-heading {
    font-family: 'Outfit', sans-serif;
}

/* ===============================
   3. Animations (Yang tidak ada di Tailwind)
================================ */

/* Marquee (Sponsor Bergerak) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sidebar Transition (Mobile) */
#sidebar {
    width: 18rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
    #sidebar.closed {
        transform: translateX(-100%);
    }
}