/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Global Typography Settings */
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* Apply Merriweather to headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", ui-serif, Georgia, serif;
}

/* Brand name in navigation should use Merriweather */
nav a[href="#hero"] span {
  font-family: "Merriweather", ui-serif, Georgia, serif;
}

/* Version 4 specific styles - Bold, gritty typography */
.home-v4 h1, .home-v4 h2 {
  font-family: "Anton", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.home-v4 .font-black {
  font-weight: 900;
}

/* Enhanced animations for v4 */
.home-v4 .animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.home-v4 .animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Mobile-specific improvements for v4 */
@media (max-width: 768px) {
  .home-v4 h1 {
    font-size: 3rem !important;
    line-height: 1.1 !important;
  }
  
  .home-v4 h2 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  
  .home-v4 .testimonial-card {
    margin-bottom: 2rem;
  }
  
  .home-v4 .step-number {
    margin-bottom: 1rem;
  }
}
