body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background-color: #faf9f6; /* Putih soft */
}

h1,
h2,
h3 {
    font-weight: 700;
}

.menu-desktop {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .menu-desktop {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.9rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .menu-desktop {
        font-size: 1rem;
        gap: 0.8rem;
    }
}

/* Tombol dan elemen lain */
.btn-primary {
    background-color: #9d2c2c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #991b1b;
    transform: scale(1.05);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Fallback jika Tailwind animate-spin belum aktif */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

#scrollToTopBtn {
    z-index: 99999 !important;
}

#berita-terkini {
    scroll-margin-top: 80px; /* sesuaikan dengan tinggi navbar */
}

.prose a {
    color: #991b1b; /* warna link */
    text-decoration: underline;
}