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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(#FCF8F8, #FBEFEF, #F9DFDF);
  color: #333;
  overflow-x: hidden;
}

.section {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #D66A6A;
}

.subtitle {
  margin-top: 15px;
  font-size: 1.1rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #C95C5C;
}

.text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.signature {
  margin-top: 20px;
  font-style: italic;
}

.love-list {
  list-style: none;
}

.love-list li {
  margin: 12px 0;
}

.timeline .event {
  margin: 25px 0;
}

.date {
  font-weight: 600;
  color: #B84A4A;
}

.valentine .buttons {
  margin-top: 25px;
}

button {
  background: #F5AFAF;
  border: none;
  padding: 12px 20px;
  margin: 8px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.05);
}

.response {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #B84A4A;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating hearts */
.hearts::before {
  content: "💗 💕 💖 ✨";
  position: fixed;
  width: 100%;
  text-align: center;
  animation: float 6s infinite linear;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-10vh); }
}
