@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   WCC Cinematic v4 — MINIMAL OVERRIDE
   Most brightness rules rolled back.
   Only keeps: Poppins font, nav logo visuals,
   and dark-section text fixes (lien-section).
   Hero + legacy cinematic styling untouched.
   ============================================ */

/* Apply Poppins as the default font everywhere — but do NOT force color */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Dark auto-accident / lien section — text stays LIGHT on navy bg
   (front-page.php section headline was becoming invisible) */
.lien-section .section-headline,
.lien-section h2,
.lien-section .lien-step strong {
  color: #ffffff !important;
}
.lien-section .section-eyebrow {
  color: #C9A84C !important;
}
.lien-section .lien-sub,
.lien-section .lien-step p,
.lien-section .urgency-banner p {
  color: rgba(255,255,255,0.85) !important;
}
.lien-section strong,
.lien-section .lien-sub strong {
  color: #C9A84C !important;
}

/* Footer keeps dark base (not touched) */

/* Typewriter cursor (if new JS-driven cursor span is used outside original CSS) */
.typewriter-cursor {
  font-weight: 300;
  color: #C9A84C;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
