/* As I Remember It - Landing Page Styles */

/* Design System Variables */
:root {
  --primary: #C85A3E;
  --background: #FAF8F5;
  --foreground: #3A3230;
  --card: #FFFFFF;
  --secondary: #F4E9E0;
  --accent: #D4A574;
  --muted: #E8DFD6;
  --muted-foreground: #6B5F5A;
  --border: rgba(58, 50, 48, 0.15);
  
  --border-radius: 12px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--foreground);
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--spacing-md);
}

.heart-icon {
  color: var(--primary);
  width: 32px;
  height: 32px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--foreground);
  max-width: 700px;
  margin: 0 auto var(--spacing-sm);
}

.hero-subtext {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

.coming-soon {
  display: inline-block;
  padding: 8px 24px;
  background-color: var(--accent);
  color: var(--card);
  border-radius: 24px;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
}

.launch-info {
  margin-top: var(--spacing-lg);
}

.launch-area {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.launch-cta {
  color: var(--muted-foreground);
}

/* Features Section */
.features {
  padding: var(--spacing-2xl) var(--spacing-md);
  background-color: var(--card);
}

.features h2 {
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.feature-card:hover {
  border-color: rgba(200, 90, 62, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--primary);
  margin: 0 auto var(--spacing-md);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--muted-foreground);
}

/* Timeline Preview Section */
.timeline-preview {
  padding: var(--spacing-2xl) var(--spacing-md);
}

.timeline-preview h2 {
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.section-intro {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: var(--spacing-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--spacing-lg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 2px solid var(--background);
  z-index: 1;
}

.timeline-content {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  transition: border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.timeline-content:hover {
  border-color: rgba(200, 90, 62, 0.3);
  transform: translateX(4px);
}

.timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
}

.timeline-content p {
  color: var(--muted-foreground);
}

/* CTA Section */
.cta {
  padding: var(--spacing-2xl) var(--spacing-md);
  background-color: var(--secondary);
  text-align: center;
}

.cta h2 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.cta p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto var(--spacing-sm);
}

.share-message {
  font-size: 1rem;
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: var(--spacing-lg) !important;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  line-height: 56px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--card);
}

.btn-primary:hover {
  background-color: rgba(200, 90, 62, 0.9);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  line-height: 52px;
}

.btn-outline:hover {
  background-color: var(--secondary);
}

/* Footer */
.footer {
  padding: var(--spacing-xl) var(--spacing-md);
  background-color: var(--card);
  border-top: 2px solid var(--border);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.heart-icon-small {
  color: var(--primary);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.separator {
  color: var(--muted-foreground);
}

.copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.125rem;
  }
  
  .features h2,
  .timeline-preview h2,
  .cta h2 {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: var(--spacing-md);
  }
  
  .timeline-dot {
    left: -29px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.timeline-item {
  animation: fadeIn 0.6s ease-out;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
