/* preloader.css */

/* Fullscreen wrapper */
.sp-pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #595BD4; /* ubah warna sesuai tema */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loading box */
.loading {
  text-align: center;
  color: #FFF;
  font-family: Arial, sans-serif;
}

/* Teks utama */
.loading h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeText 1.5s infinite; /* teks berkedip */
}

/* Animasi titik di bawah teks */
.loading span {
  display: inline-block;
}

.loading span i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  background: #FFF;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

/* delay untuk tiap titik */
.loading span i:nth-child(1) { animation-delay: 0s; }
.loading span i:nth-child(2) { animation-delay: 0.2s; }
.loading span i:nth-child(3) { animation-delay: 0.4s; }

/* Animasi titik */
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); } 
  40% { transform: scale(1); }
}

/* Animasi teks fade */
@keyframes fadeText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
