/* ===== PREMIUM COACHING FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary-blue: #1B2A4A;
  --header-pink: #B52775;
  --accent-coral: #E8614D;
  --accent-pink: #D54285;
  --accent-yellow: #D4A853;
  --text-dark: #1a1a2e;
  --text-body: #3d3d5c;
  --text-light: #6b6b8d;
  --bg-cream: #FAF8F5;
  --bg-white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
}

.App,
.landing-page {
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
.font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.font-body {
  font-family: var(--font-body);
}

/* ===== BRAND COLORS ===== */
.bg-primary-blue { background-color: var(--primary-blue); }
.text-primary-blue { color: var(--primary-blue); }
.bg-header-pink { background-color: var(--header-pink); }
.bg-accent-coral { background-color: var(--accent-coral); }
.text-accent-coral { color: var(--accent-coral); }
.border-accent-coral { border-color: var(--accent-coral); }
.bg-accent-pink { background-color: var(--accent-pink); }
.text-accent-pink { color: var(--accent-pink); }
.border-accent-pink { border-color: var(--accent-pink); }
.bg-accent-yellow { background-color: var(--accent-yellow); }
.text-accent-yellow { color: var(--accent-yellow); }
.border-accent-yellow { border-color: var(--accent-yellow); }
.bg-cream { background-color: var(--bg-cream); }

/* Tailwind uses these as utility names; ensure custom text colors work */
.text-text-body { color: var(--text-body); }
.text-text-light { color: var(--text-light); }

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--accent-coral);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 50;
  background: var(--header-pink);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.site-header .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-header .nav-link:hover {
  color: #ffffff;
  border-bottom-color: var(--accent-yellow);
}

/* Mobile menu: show/hide close icon when open */
.site-header.menu-open #icon-menu {
  display: none !important;
}
.site-header.menu-open #icon-close {
  display: block !important;
}

/* ===== HERO ===== */
.hero-section {
  background: var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(213, 66, 133, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== EYEBROW TEXT ===== */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== SECTION SPACING ===== */
.section-padding {
  padding: 6rem 0;
}

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

/* ===== PULSE GLOW ===== */
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 97, 77, 0.3); }
  50% { box-shadow: 0 0 35px rgba(232, 97, 77, 0.6); }
}

/* ===== ANIMATIONS ===== */
.animate-pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}

@keyframes pulseSubtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* ===== STUCK ILLUSTRATION ===== */
.stuck-image-container {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.stuck-image-container img {
  width: 100%;
  border-radius: 1.5rem;
  filter: drop-shadow(0 20px 40px rgba(27, 42, 74, 0.15));
}

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--accent-coral); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-pink); }

/* ===== VIDEO CARDS ===== */
.video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* ===== ACCORDION (static page) ===== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  /* display: none; */
}
/* .accordion-item.is-open .accordion-content {
  display: block;
} */
.accordion-item.is-open .accordion-chevron {
  transform: rotate(180deg);
  display: block;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}
