/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #eee;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* BACKGROUND ANIMATION */
.bg-animated {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #111, #222, #111);
  background-size: 400% 400%;
  animation: bgShift 20s ease infinite;
  z-index: -1;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* FLOATING HEARTS */
.floating-heart {
  position: absolute;
  font-size: 24px;
  animation: floatUp 6s infinite;
  opacity: 0.8;
}

.floating-heart:nth-child(1) { left: 10%; animation-duration: 5s; }
.floating-heart:nth-child(2) { left: 40%; animation-duration: 7s; }
.floating-heart:nth-child(3) { left: 70%; animation-duration: 6s; }
.floating-heart:nth-child(4) { left: 90%; animation-duration: 8s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50px) scale(1.2); opacity: 1; }
  100% { transform: translateY(-200px) scale(1); opacity: 0; }
}

/* HERO HEADER */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
  background: linear-gradient(90deg, #ff6b9a, #ff2155, #ff6b9a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero .tagline {
  margin-top: 15px;
  font-size: 20px;
  opacity: 0.9;
}

/* BUTTON */
.button-container { margin-top: 30px; }

.button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #111, #ff2155);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(255,33,85,0.5);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: linear-gradient(135deg, #222, #ff6b9a);
  transform: scale(1.1);
  box-shadow: 0 0 30px #ff6b9a;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% { box-shadow: 0 0 15px #ff6b9a; }
  100% { box-shadow: 0 0 30px #ff2155; }
}

/* SECTION STYLING */
.section {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
}

.story {
  background: #1c1c1c;
  color: #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff6b9a;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
}

.section p { font-size: 18px; opacity: 0.85; }

/* PHOTO GALLERY */
.photos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  background: linear-gradient(120deg, #1c1c1c, #222);
  border-radius: 25px;
  padding: 40px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  position: relative;
}

/* PHOTO CONTAINER */
.photo-container {
  position: relative;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255,70,85,0.4);
}

/* PHOTO BOX */
.photo-box {
  width: 300px;
  height: 300px;
  border-radius: 25px;
  object-fit: cover;
  border: 3px solid #ff6b9a;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

/* TOASTS */
.toast-top {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 105, 154, 0.85);
  padding: 5px 10px;
  border-radius: 10px;
  pointer-events: none;
}

.toast-bottom {
  margin-top: 10px;
  width: 100%;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 10px 0;
  border-radius: 12px;
}

/* BUBBLES */
.bubble {
  position: absolute;
  bottom: 0;
  background: rgba(255,105,154,0.6);
  border-radius: 50%;
  animation: rise 4s infinite ease-in;
}

@keyframes rise {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-200px); opacity: 0; }
}

/* FOOTER */
footer {
  margin-top: 40px;
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #111, #222);
  border-top: 2px solid #ff6b9a;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  font-size: 16px;
  color: #eee;
}

footer p {
  margin: 5px 0;
  font-weight: 500;
}

footer p:first-child {
  font-size: 18px;
  color: #ff6b9a;
  font-weight: 700;
}