:root {
  --rose: #ff4d79;
  --gold: #ffd700;
  --love-light: rgba(255, 255, 255, 0.08);
}

/* ========== 🌸 Floating Petals ========== */
.floating-petal {
  position: fixed;
  bottom: -50px;
  font-size: 1.2rem;
  color: #f9c7d9;
  animation: swirlTrailUp linear infinite;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.75;
  filter: blur(0.2px);
}

@keyframes swirlTrailUp {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-80px, -120vh) rotate(720deg);
    opacity: 0;
  }
}

/* ========== ✨ Scroll Reveal Animation ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== 🌟 Shimmer Text Effect ========== */
.shimmer-text {
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ========== 💖 Magical Button ========== */
.magic-button {
  background: linear-gradient(45deg, var(--rose), var(--gold));
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 77, 121, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magic-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}
