/* ==========================================================================
   Wellzynto Pharma — Design Tokens
   Edit colors, fonts, spacing here to restyle the entire site.
   ========================================================================== */

:root {
  /* Brand colors (from logo: deep blue + green + gold accents) */
  --color-primary: #1b2a6b;        /* deep navy blue */
  --color-primary-dark: #10193f;
  --color-primary-light: #2e42a0;
  --color-secondary: #1e9e50;      /* leaf green */
  --color-secondary-dark: #157a3d;
  --color-accent: #e6a021;         /* gold */
  --color-accent-dark: #c8850f;

  /* Neutrals */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f8fc;
  --color-bg-dark: #0d1533;
  --color-text: #222833;
  --color-text-muted: #5b6474;
  --color-text-inverse: #f5f7fb;
  --color-border: #e3e8f0;

  /* Feedback */
  --color-success: #1e9e50;
  --color-error: #d64545;

  /* Typography */
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-md: 1.15rem;
  --fs-lg: 1.4rem;
  --fs-xl: 1.9rem;
  --fs-2xl: 2.6rem;
  --fs-3xl: 3.4rem;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(16, 25, 63, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 25, 63, 0.1);
  --shadow-lg: 0 20px 50px rgba(16, 25, 63, 0.16);
  --transition: 0.25s ease;

  --gradient-brand: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 55%, var(--color-secondary) 100%);
  --gradient-dark: linear-gradient(160deg, var(--color-bg-dark) 0%, #16204a 100%);
}
