/* ============================================
   HERO-TYPOGRAPHY.CSS - Clean Hero Section Typography
   ============================================
   
   Modern, clean typography for the hero section
   Inspired by Cluely's design principles
*/

/* Hero Section Typography Updates */
.welcome-content {
  padding-top: 70px; /* Account for landing nav */
}

.welcome-content h1 {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary, #1a202c);
  margin-bottom: 1.5rem;
  text-align: center;
}

[data-theme="dark"] .welcome-content h1 {
  color: var(--text-primary-dark, #f7fafc);
}

/* BibliaTech title styling */
#bibliatech-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Subtitle/tagline */
.welcome-content p {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: var(--text-secondary, #4a5568);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .welcome-content p {
  color: var(--text-secondary-dark, #a0aec0);
}

/* Hero verse styling */
.hero-verse {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary, #4a5568);
  font-style: italic;
  text-align: center;
  margin-bottom: 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

[data-theme="dark"] .hero-verse {
  color: var(--text-secondary-dark, #a0aec0);
}

/* Hero verse reference */
.hero-verse-ref {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-tertiary, #718096);
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.8;
}

[data-theme="dark"] .hero-verse-ref {
  color: var(--text-tertiary-dark, #718096);
}

/* Get Started button styling */
.get-started-btn {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(2rem, 4vw, 2.5rem);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.15);
  text-decoration: none;
  display: inline-block;
}

.get-started-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
  text-decoration: none;
  color: white;
}

.get-started-btn:active {
  transform: translateY(0) scale(1);
}

/* Feature pills/tags (if you want to add them later) */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-feature-pill {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  background: rgba(102, 126, 234, 0.1);
  color: var(--text-primary, #1a202c);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-theme="dark"] .hero-feature-pill {
  background: rgba(102, 126, 234, 0.15);
  color: var(--text-primary-dark, #f7fafc);
  border-color: rgba(102, 126, 234, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .welcome-content {
    padding-top: 70px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .welcome-content h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }
  
  .welcome-content p {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-bottom: 1rem;
    max-width: 90vw;
  }
  
  .get-started-btn {
    font-size: clamp(0.85rem, 3vw, 1rem);
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
  }
  
  .hero-features {
    gap: 0.5rem;
  }
  
  .hero-feature-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Smooth animations for hero content */
.welcome-content > * {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.welcome-content h1 {
  animation-delay: 0.1s;
}

.welcome-content p {
  animation-delay: 0.2s;
}

.hero-verse {
  animation-delay: 0.3s;
}

.hero-verse-ref {
  animation-delay: 0.4s;
}

.get-started-btn {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
