* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: #ffd6e8;
  color: #4a1c40;
  overflow: hidden;
}

.page {
  display: none;
  height: 100vh;
  width: 100vw;
  padding: 40px;
  text-align: center;

  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page.active {
  display: flex;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  max-width: 700px;
}

.bee-btn {
  margin-top: 40px;
  font-size: 1.3rem;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: #ffcc00;
  color: #4a1c40;
  cursor: pointer;
  transition: transform 0.2s;
}

.bee-btn:hover {
  transform: scale(1.1);
}

/* Image background pages */
.bg-image {
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 8px black;
}

/* Video background pages */
.bg-video {
  position: relative;
  color: white;
  text-shadow: 2px 2px 8px black;
}

.bg-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.final h1 {
  font-size: 3rem;
  color: #b30059;
}

/* Celebration page */
.celebration {
  background: linear-gradient(135deg, #ffb6c1, #ffd1dc);
  color: #b30059;
  overflow: hidden;
}

.celebration h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.celebration p {
  font-size: 1.3rem;
}

/* Floating hearts */
.hearts::before,
.hearts::after {
  content: "💖 💕 ❤️ 💗 💘 💓";
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  animation: floatUp 6s linear infinite;
}

.hearts::after {
  animation-delay: 3s;
}

@keyframes floatUp {
  from {
    bottom: -20%;
    opacity: 1;
  }
  to {
    bottom: 120%;
    opacity: 0;
  }
}

