@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, .font-serif {
    font-family: 'Crimson Pro', serif;
}

.hero-gradient {
    background:
        linear-gradient(rgba(15,23,42,0.75),
        rgba(15,23,42,0.85)),
        url('../img/kampus.jpg');

    background-size: cover;
    background-position: center 30%;
}

/* Mengatur container Swiper agar tingginya presisi mengikuti layout */
.heroSwiper {
    display: flex;
    flex-direction: column;
}

/* Modifikasi Dots Pagination ala Usahid (Screenshot asli) */
.heroSwiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #d97706 !important; /* Warna Amber/Emas hangat */
    opacity: 0.3 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #b45309 !important; /* Emas gelap saat aktif */
    scale: 1.2;
}

/* Sembunyikan panah bawaan swiper jika di layar HP kecil */
@media (max-width: 767px) {
    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.partner-slider {
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}