
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
  }


/* awal CSS tab menu khusus mobile */
@media (max-width: 576px) {
  .nav-tabs-sm .nav-link {
    font-size: 0.8rem;   /* lebih kecil */
    padding: 0.25rem 0.5rem; /* rapat */
  }
  .nav-tabs-sm {
    flex-wrap: nowrap;       /* jangan turun ke baris baru */
    overflow-x: auto;        /* bisa digeser horizontal */
    -webkit-overflow-scrolling: touch;
  }
  .nav-tabs-sm .nav-item {
    flex: 1 0 auto;          /* biar sebaris */
    text-align: center;
  }
}
/* akhir CSS tab menu khusus mobile */


/* Awal Sticky Tabs */
.sticky-tabs {
  position: sticky;
  top: 60px;                /* nempel di atas */
  z-index: 900;         /* biar di atas konten lain */
  background-color: #fff; /* latar belakang putih agar tidak transparan */
  border-bottom: 1px solid #dee2e6; /* garis bawah rapi */
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* akhir Sticky Tabs */


/* awal judul halaman sticky bawah scroll akan tertutup kontent */
  .hero-header {
    position: sticky;   /* nempel di atas saat scroll */
    top: 0;             /* posisi dari atas */
    z-index: 1;         /* biar bisa tertutup konten di bawah */
  }
/* akhir judul halaman sticky bawah scroll akan tertutup kontent */


/* awal tombol loader spinner loading global */
/* Semua tombol <button> dan elemen dengan class .btn */
button,
.btn {
  position: relative;
  transition: all 0.3s ease;
}

/* State loading */
/* Spinner CSS Global */

/* Semua tombol <button> dan elemen dengan class .btn */
button,
.btn {
  position: relative;
  transition: all 0.3s ease;
}

/* State loading */
button.loading,
.btn.loading {
  pointer-events: none; /* cegah klik ulang */
  opacity: 0.7;
}

/* Spinner */
button.loading::after,
.btn.loading::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}




/* akhir tombol loader spinner loading global */
