/* Sunshine Particles Container */
.petals-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

/* Individual Sunshine Particle */
.petal {
  position: absolute;
  top: -40px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at center, #FFE9B0 0%, #FFD89B 60%, rgba(232, 137, 59, 0) 100%);
  border-radius: 50%;
  opacity: 0.6;
  animation: petalFall linear infinite, petalSway ease-in-out infinite;
}

@keyframes petalFall {
  0% {
    top: -40px;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    top: 105vh;
    opacity: 0;
  }
}

@keyframes petalSway {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(20px) scale(1.1);
  }
  50% {
    transform: translateX(-15px) scale(0.9);
  }
  75% {
    transform: translateX(18px) scale(1.05);
  }
}

/* Fade-in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
