@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@300;400&display=swap');

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

body {
  background: linear-gradient(180deg, #f8f5f2, #eae0d5);
  font-family: 'Poppins', sans-serif;
  color: #3d3d3d;
  line-height: 1.8;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-weight: 300;
  opacity: 0.8;
}

.letter {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.paper {
  background: #fff;
  padding: 40px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  font-family: 'Playfair Display', serif;
}

.memory {
  text-align: center;
  padding: 80px 20px;
}

.memory h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  background: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}