/* ============================================================
   ANIMATIONS
   Shared keyframes and animated decoration elements.
   ============================================================ */

/* ---- Stars: twinkling dot decoration ---- */
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  width: 2px;
  height: 2px;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

/* ---- Float: gentle vertical bobbing for icons and balloon ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
