/* style.css - Lady J's Beauty Retreat */
/* Minimal custom CSS — the entire design is powered by Tailwind CSS CDN + custom fonts */

body {
  scroll-behavior: smooth;
}

/* Custom font support */
.font-great-vibes {
  font-family: 'Great Vibes', cursive;
}

/* Modal entrance animation */
@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-card {
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}