/* Choose Item Styles */
.choose-item {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay */
.choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.942) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* Description */
.choose-desc {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
  z-index: 2;
  opacity: 1;
  /* Teks selalu terlihat */
  transform: translateY(0);
  /* Pastikan tetap di tempat */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover Effects */
.choose-item:hover {
  transform: scale(1.03);
  /* Sedikit zoom saat hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.choose-item:hover .choose-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.choose-item:hover .choose-desc {
  color: #003366;
  /* Ubah teks menjadi hitam */
}