/* HERO SECTION */
.hero {
  background: url('img/beautiful-strawberry-garden-sunrise-doi-ang-khang-chiang-mai-thailand.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* CARD FASILITAS */
.facility-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ====== GALERI ====== */
section .img-fluid {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}

section .img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* ====== TESTIMONI ====== */
.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
