/* ============================================================
   VARIABLES — MVP Repairs LLC Design Tokens
   Pool Service | Cumming, GA
   ============================================================ */

:root {
  /* ── Color Palette ── */
  /* Base: #6CC0BA (pool teal) */
  --color-bg-primary:      #6CC0BA;
  --color-bg-secondary:    #52ABA4;      /* ~10% darker */
  --color-bg-deep:         #3D9690;      /* even darker — footer/surfaces */
  --color-surface:         rgba(255,255,255,0.08);
  --color-surface-raised:  rgba(255,255,255,0.12);

  /* Accent: #004b66 (deep ocean navy) */
  --color-accent:          #004b66;
  --color-accent-light:    #006b8f;      /* ~15% lighter for hover */
  --color-accent-warm:     #005577;      /* slight complementary shift */
  --color-accent-glow:     rgba(0,75,102,0.45);

  /* Text */
  --color-text-primary:    #FFFFFF;
  --color-text-secondary:  rgba(255,255,255,0.82);
  --color-text-muted:      rgba(255,255,255,0.55);
  --color-text-dark:       #012a38;

  /* Borders */
  --color-border:          rgba(255,255,255,0.18);
  --color-border-accent:   rgba(0,75,102,0.35);

  /* Glow */
  --glow-accent:           0 0 32px rgba(0,75,102,0.55), 0 0 64px rgba(0,75,102,0.25);
  --glow-accent-sm:        0 0 14px rgba(0,75,102,0.45);
  --glow-teal:             0 0 24px rgba(108,192,186,0.4);

  /* ── Typography ── */
  --font-heading:   'Poppins', sans-serif;
  --font-body:      'Inter', sans-serif;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold: 600;
  --fw-bold:    700;
  --fw-black:   800;
  --fw-xblack:  900;

  /* ── Fluid Type Scale ── */
  --size-hero-h1:    clamp(3.5rem, 9vw, 9rem);
  --size-section-h2: clamp(2rem, 5vw, 4rem);
  --size-stat-num:   clamp(2.5rem, 5vw, 4.5rem);
  --size-body:       1rem;
  --size-label:      0.75rem;
  --size-eyebrow:    0.8rem;

  /* ── Spacing ── */
  --section-pad:   clamp(64px, 9vw, 120px);
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* ── Radius ── */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* ── Motion ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sweep:    cubic-bezier(0.77, 0, 0.175, 1);
  --transition-fast: 150ms ease;
  --transition-mid:  250ms ease;
  --transition-btn:  350ms var(--ease-sweep);

  /* ── Shadows ── */
  --shadow-card:   0 4px 32px rgba(0,0,0,0.18);
  --shadow-raised: 0 8px 48px rgba(0,0,0,0.24);
  --nav-shadow:    0 2px 40px rgba(0,0,0,0.4);

  /* ── Card Surfaces ── */
  --card-bg:       rgba(255,255,255,0.09);
  --card-border:   rgba(255,255,255,0.15);

  /* ── Z-Index layers ── */
  --z-nav:         1000;
  --z-overlay:     900;
  --z-modal:       1100;
}
