/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  /* Changed background to light pink */
  background-color: #fdf2f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Updated header background to light pink with transparency */
  background: rgba(253, 242, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1a1a1a;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 5rem 0 8rem;
  text-align: center;
  /* Added subtle pink gradient background */
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.highlight {
  /* Enhanced pink color for highlights */
  color: #ec4899;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.app-screenshots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.phone-img {
  width: 16rem;
  height: auto;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.screenshot-hidden {
  display: none;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  /* Changed primary button to pink theme */
  background-color: #ec4899;
  color: #fefefe;
}

.btn-primary:hover {
  /* Darker pink on hover */
  background-color: #db2777;
}

.btn-secondary {
  background-color: transparent;
  color: #1a1a1a;
  /* Pink border for secondary button */
  border: 2px solid #f9a8d4;
}

.btn-secondary:hover {
  /* Light pink background on hover */
  background-color: #fce7f3;
}

/* Features Section */
.features {
  padding: 5rem 0;
  /* Light pink background for features section */
  background-color: #fce7f3;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
}

.feature-image {
  margin-bottom: 1.5rem;
}

.feature-img {
  width: 16rem;
  height: auto;
  margin: 0 auto;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-text {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 21rem;
  margin: 0 auto;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
}

.newsletter-content {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.newsletter-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  background-color: #fefefe;
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: none;
  /* Pink focus border */
  border-color: #ec4899;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(236, 72, 153, 0.2);
  padding: 3rem 0;
  /* Light pink footer background */
  background-color: #fdf2f8;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 2rem;
  width: auto;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1a1a1a;
}

/* Privacy Page Styles */
.privacy-content {
  padding: 5rem 0;
  min-height: 60vh;
}

.privacy-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.privacy-subtitle {
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.privacy-section p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
  }

  .newsletter-form {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .screenshot-hidden {
    display: block;
  }

  .footer-content {
    flex-direction: row;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }
}
