@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Serif+Display&family=Petit+Formal+Script&display=swap');

body {
  margin: 0;
  font-family: 'DM Serif Display', serif;
  color: #333;
  background: #fff5f8;
  line-height: 1.4;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffe0eb, #fff5f8);
}
.hero h1 {
  font-family: 'Petit Formal Script', cursive;
  font-size: 3.5rem;
  margin: 0;
  color: #d45d79;
}
.tagline {
  font-size: 1.5rem;
  margin: 10px 0 20px;
  color: #a05671;
  font-family: 'Playfair Display', serif;
}
.countdown {
  font-size: 2.2rem;
  margin: 15px 0;
  color: #8b486c;
  font-family: 'Playfair Display', serif;
}
.store-buttons button {
  margin: 10px;
  padding: 12px 24px;
  font-size: 1.1rem;
  border: 2px solid #d45d79;
  background: transparent;
  color: #d45d79;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Playfair Display', serif;
}
.store-buttons button:hover {
  background: #d45d79;
  color: #fff;
}

.features {
  padding: 60px 20px;
  text-align: center;
  background: #fff5f8;
}
.features h2 {
  font-size: 2.2rem;
  color: #b85485;
  margin-bottom: 40px;
  font-family: 'Petit Formal Script', cursive;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.feature {
  background: #ffe4ec;
  padding: 20px 30px;
  border-radius: 20px;
  font-size: 1.2rem;
  color: #7a2e4d;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-family: 'Playfair Display', serif;
}

.newsletter {
  padding: 60px 20px;
  text-align: center;
  background: #fff0f6;
}
.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b85485;
  font-family: 'Petit Formal Script', cursive;
}
#signup-form input {
  padding: 12px;
  width: 250px;
  border: 2px solid #d45d79;
  border-radius: 30px;
  margin-right: 10px;
  font-family: 'Playfair Display', serif;
}
#signup-form button {
  padding: 12px 24px;
  background: #d45d79;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Playfair Display', serif;
}
#signup-form button:hover {
  background: #b85485;
}

footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 1rem;
  color: #7a2e4d;
  font-family: 'Playfair Display', serif;
}