/* Falling LOVE effect */
#love-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 100;
}

/* 💖 LOVE Elements */
.love {
  position: absolute;
  top: -20px;
  color: #ff4d6d;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 105, 180, 0.9),
               0 0 25px rgba(255, 0, 128, 0.8);
  animation: fallLove linear forwards, glowPulse 1.5s ease-in-out infinite alternate;
}

/* 💫 Falling animation */
@keyframes fallLove {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* ✨ Glow pulse effect */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 0, 150, 0.8),
                 0 0 20px rgba(255, 150, 200, 0.9);
  }
  100% {
    text-shadow: 0 0 25px rgba(255, 0, 150, 1),
                 0 0 40px rgba(255, 255, 255, 1);
  }
}

/* Floating Message Animation */
.floating-message {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 192, 203, 0.8);
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 101;
}

.floating-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-15px);
}

/* Header, Footer, and Other Basic Styling */
body {
  margin: 0;
  background: linear-gradient(135deg, #ffe0f0, #ffd6eb, #fff0f7);
  font-family: "Poppins", sans-serif;
  text-align: center;
  overflow-x: hidden;
}

header {
  padding: 30px;
  background: rgba(255, 105, 180, 0.2);
  border-bottom: 2px solid #ff8ec8;
}

h1 {
  color: #ff3b9a;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

button {
  background: #ff80bf;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #ff4da6;
  transform: scale(1.05);
}

.gallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
}

footer {
  background: rgba(255, 182, 193, 0.5);
  padding: 15px;
  font-weight: bold;
}
