/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FDF5F9;
  color: #29222E;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #29222E;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: #948A94;
  margin: 0 0 1rem 0;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #fff;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.navbar a {
  color: #FF66A6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #e0558f;
}

/* Buttons */
a.btn-primary, button.btn-primary,
a.btn-tier, button.btn-tier {
  background-color: #FF66A6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
}

a.btn-primary:hover, button.btn-primary:hover,
a.btn-tier:hover, button.btn-tier:hover {
  background-color: #e0558f;
}

a.btn-secondary {
  background-color: #C6AEE7;
  color: #29222E;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

a.btn-secondary:hover {
  background-color: #b39de0;
}

button.btn-tip {
  background-color: #FF66A6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin: 0 0.25rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button.btn-tip:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  text-align: center;
  padding: 3rem 1rem 5rem 1rem;
  background-color: #FDF5F9;
}

.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
  border-radius: 0 0 50% 50% / 20%;
  box-shadow: 0 0 30px #E7C785;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #29222E;
  max-width: 90%;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.95);
}

.hero-text .sub {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #948A94;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #FF66A6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Monetization Grid */
.monetization-grid {
  padding: 3rem 1rem;
  background-color: #FDF5F9;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(198, 174, 231, 0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Subscriptions */
.subscriptions-section {
  background-color: #D4B7F3;
  padding: 3rem 1rem;
  text-align: center;
}

.subscription-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.subscription-card {
  background-color: #E7C785;
  padding: 2rem;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Testimonials */
.testimonials-section {
  background-color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.testimonial-bubbles blockquote {
  background-color: #FF66A6;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  margin: 1rem auto;
  max-width: 600px;
  font-style: italic;
  box-shadow: 0 0 15px rgba(255, 102, 166, 0.3);
}

/* Final CTA */
.final-cta-section {
  background: linear-gradient(to right, #FDF5F9, #e4b0cc);
  padding: 2rem 1rem;
  text-align: center;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* About Section */
.about-section {
  padding: 3rem 1rem;
  background-color: #fff0f6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 102, 166, 0.1);
}

.about-section p {
  font-size: 1.1rem;
  font-style: italic;
  color: #29222E;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #948A94;
  border-top: 1px solid #eee;
}

.footer a {
  color: #FF66A6;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  color: #e0558f;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  .hero-text .sub {
    font-size: 1rem;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .subscription-cards {
    flex-direction: column;
  }
  .testimonial-bubbles {
    flex-direction: column;
  }
  .final-cta-buttons {
    flex-direction: column;
  }
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
}
