
/* General Background */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #ff7e5f, #feb47b, #ff9a44, #ff6a00);
  background-size: 400% 400%;
  animation: gradient 20s ease infinite;
  color: #fff;
}

/* Parallax background */
@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px;
  position: relative;
  z-index: 2;
}

.glow {
  font-size: 4rem;
  text-transform: uppercase;
  text-shadow: 0 0 15px #ff4081, 0 0 40px #ff5722, 0 0 80px #ff9800;
  animation: pulse 2s infinite alternate;
}
.glow span {
  color: #ffd54f;
}

.place {
  font-size: 1.6rem;
  margin-top: 10px;
  color: #ffe082;
}

.typewriter {
  margin-top: 25px;
  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 5s steps(40, end) forwards, blink 0.7s infinite;
}
.lover {
  font-weight: bold;
  color: #ffeb3b;
}

/* Animations */
@keyframes pulse {
  from { text-shadow: 0 0 15px #ff4081; }
  to { text-shadow: 0 0 50px #ff5722, 0 0 100px #ff9800; }
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink {
  50% { border-color: transparent }
}

/* Button */
#celebrateBtn {
  margin-top: 40px;
  padding: 15px 45px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg,#ff5722,#ff9800);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 0 25px #ff7043;
  transition: transform 0.3s;
}
#celebrateBtn:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg,#ff7043,#ffa726);
}

/* Photo Section */
.photos {
  padding: 70px 20px;
  text-align: center;
  background: rgba(0,0,0,0.3);
}
.photos h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 15px #ff9800;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.frame {
  padding: 12px;
  background: #fff;
  border: 6px solid #ff5722;
  border-radius: 20px;
  box-shadow: 0 0 25px #ff7043;
  transition: transform 0.4s ease;
}
.frame:hover {
  transform: rotate(-5deg) scale(1.1);
}
.frame img {
  width: 260px;
  height: 260px;
  border-radius: 15px;
  object-fit: cover;
}

/* Floating Hearts */
.hearts::before, .hearts::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://cdn-icons-png.flaticon.com/512/833/833472.png") repeat;
  background-size: 40px;
  animation: floatHearts 60s linear infinite;
  opacity: 0.25;
}
.hearts::after {
  animation-delay: 30s;
}
@keyframes floatHearts {
  from { background-position: 0 0; }
  to { background-position: 0 -2500px; }
}

/* Fireworks */
#fireworks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
