/* ── Falling Petal Overlay ────────────────────────── */
/* Real PNG petals float above the text layer, creating
   genuine 3D depth with the video background. */

.petal-layer {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -15%;
  left: -10%;
  will-change: transform, opacity;
  animation: petal-fall linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

@keyframes petal-fall {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(var(--scale));
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform:
      translate(var(--drift-x), 120vh)
      rotate(var(--spin))
      scale(var(--scale));
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .petal { animation: none; display: none; }
}
