@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif&display=swap');

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom font if you want to change globally */
body {
  font-family: "Libertinus Serif", serif;
}

/* Book Now button hover animation */
.book-btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #facc15; /* Tailwind's yellow-400 */
  transform: scale(1.05);
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Utility Fixes */
@media (max-width: 768px) {
  .book-btn {
    width: 100%;
    text-align: center;
  }
}
