
/* Aslan Coming Soon – custom styles & cinematic sentence animation */

body {
  margin: 0;
  padding: 0;
}

/* Script font for the manuscript-style line */
.script-font {
  font-family: 'Dancing Script', cursive;
}

/* Cinematic fade-in for sentences */
@keyframes aslanFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aslan-sentence {
  opacity: 0;
  animation: aslanFadeIn 0.9s ease-out forwards;
}

/* Staggered delays for a gentle, layered reveal */
.aslan-delay-1 {
  animation-delay: 0.15s;
}
.aslan-delay-2 {
  animation-delay: 0.3s;
}
.aslan-delay-3 {
  animation-delay: 0.45s;
}
.aslan-delay-4 {
  animation-delay: 0.6s;
}
.aslan-delay-5 {
  animation-delay: 0.75s;
}
