
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

/* Tombol animasi hover */
.menu-button {
  transition: all 0.3s ease-in-out;
}
.menu-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  animation: bounce 0.5s;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Tombol cek tiket pojok kanan atas */
.float-check {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}
