/* ============================================================
   WEDDING-14 | animations.css
   Snappy, no-frills reveal — structural, not decorative
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes posterIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.poster-tag {
  animation: posterIn 0.5s ease 0.05s both;
}
.poster-title {
  animation: posterIn 0.6s ease 0.15s both;
}
.poster-meta {
  animation: posterIn 0.5s ease 0.3s both;
}
.poster-actions {
  animation: posterIn 0.5s ease 0.4s both;
}
