body {
  background-color: #f9f4ec;
  font-family: Poppins, sans-serif;
}

.hero-section {
  background: url('gambar/baner/2.jpg') center center/cover no-repeat;
  height: 300px;
  position: relative;
}

.photo-stack .photo-item {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.photo-stack .photo-item:nth-child(2) {
  transform: rotate(2deg);
}
.photo-stack .photo-item:nth-child(3) {
  transform: rotate(-3deg);
}
.photo-stack .photo-item:nth-child(4) {
  transform: rotate(1deg);
}

.photo-stack .photo-item:hover {
  transform: scale(1.05);
}

.itinerary-card {
  min-height: 100%;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.itinerary-card .card-header {
  font-size: 1.1rem;
  padding: 10px;
}

.itinerary-card .card-body {
  flex-grow: 1;
  padding: 20px;
}

.itinerary-card ul {
  padding-left: 20px;
  margin: 0;
}

@media (max-width: 767px) {
  .itinerary-card {
    margin-bottom: 20px;
  }
}
.btn-warning {
  background-color: #fcb900;
  border: none;
  color: white;
  border-radius: 6px;
  margin-bottom: 20px;
}

.btn-warning:hover {
  background-color: #e0a800;
  color: white;
}

.blinking-text {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}
.harga-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: monospace;
  color: white;
}

.harga-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.jumlah {
  width: 70px;
}

.label {
  width: 60px;
}

.harga {
  flex: 1;

}

.titik {
  width: 5px;
  text-align: center;
}
