/* Import Font Google */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;

  /* --- TAMBAHKAN KODE INI --- */
  background-image: url("img/background2.jpg"); /* Ganti dengan path gambar Anda */
  background-size: cover; /* Membuat gambar menutupi seluruh layar */
  background-position: center; /* Memposisikan gambar di tengah */
  background-repeat: no-repeat; /* Mencegah gambar berulang */
  background-attachment: fixed; /* Membuat gambar tetap diam saat scroll */
}

/* Style Kustom untuk Gradasi Latar Belakang */
.bg-gradient-primary {
  background: linear-gradient(135deg, #0d6efd, #0056b3);
}

/* kontainer produk */
.box {
  min-height: 60vh;
}

/* Style Kustom untuk Item Layanan */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #343a40;
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--bs-primary);
  color: white;
}

.service-item i {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  font-weight: 500;
}

.variant-btn,
.game-variant-btn {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: normal;
}

/* CSS tambahan untuk service item yang aktif */
.service-item {
  transition: background-color 0.2s ease-in-out;
}
.service-item.active {
  background-color: #e7f1ff; /* Warna biru muda, sesuaikan jika perlu */
  border-radius: 8px;
  font-weight: bold;
  color: #0d6efd; /* Warna biru primary bootstrap */
}
.service-item.active i {
  color: #0d6efd;
}

/* Style untuk Foto Customer Service */
.cs-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Membuat gambar menjadi bulat */
  object-fit: cover; /* Memastikan gambar terisi penuh tanpa distorsi */
  border: 3px solid #e9ecef; /* Garis bingkai (frame) */
  margin-right: 15px; /* Memberi jarak antara foto dan teks */
}
