/* ============================================================
   FAFFLY — Design Tokens
   All CSS custom properties live here. Edit this file to
   retheme the entire site.
   ============================================================ */

:root {
  /* --- Brand palette --- */
  --color-orange:        #F97316;
  --color-pink:          #E879F9;
  --color-purple:        #A855F7;
  --color-red:           #EF4444;
  --color-coral:         #F43F5E;

  /* --- Gradient shortcuts --- */
  --gradient-brand:      linear-gradient(135deg, var(--color-orange) 0%, var(--color-pink) 100%);
  --gradient-border:     linear-gradient(90deg, var(--color-orange) 0%, var(--color-purple) 100%);
  --gradient-hero-bg:    radial-gradient(ellipse 80% 60% at 20% 20%, #FBBF9A 0%, transparent 55%),
                         radial-gradient(ellipse 60% 60% at 80% 10%, #F9A8D4 0%, transparent 50%),
                         radial-gradient(ellipse 70% 80% at 10% 80%, #DDD6FE 0%, transparent 55%),
                         radial-gradient(ellipse 50% 50% at 90% 80%, #FBCFE8 0%, transparent 50%),
                         #FDF8FF;
  --gradient-footer-bg:  radial-gradient(ellipse 80% 80% at 20% 50%, #FBBF9A 0%, transparent 60%),
                         radial-gradient(ellipse 60% 60% at 80% 50%, #F9A8D4 0%, transparent 60%),
                         #FDF4FF;
  --gradient-section-bg: linear-gradient(180deg, #FDF8FF 0%, #FFF5FB 50%, #F8F4FF 100%);

  /* --- Neutral palette --- */
  --color-black:         #0A0A0A;
  --color-text-primary:  #111111;
  --color-text-secondary:#555555;
  --color-text-muted:    #999999;
  --color-text-light:    #BBBBBB;
  --color-white:         #FFFFFF;

  /* --- Surface colours --- */
  --color-bg-page:       #FFFFFF;
  --color-bg-soft:       #FAFAFA;
  --color-bg-lavender:   #F9F5FF;
  --color-border:        #E8E0F0;
  --color-border-subtle: #F0EAF8;

  /* --- Feature list (inactive) --- */
  --color-feature-inactive: #D4B8E0;

  /* --- Spacing scale (8 px base) --- */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32:  128px;

  /* --- Typography --- */
  --font-sans:           'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:    0.75rem;   /* 12px */
  --text-sm:    0.875rem;  /* 14px */
  --text-base:  1rem;      /* 16px */
  --text-lg:    1.125rem;  /* 18px */
  --text-xl:    1.25rem;   /* 20px */
  --text-2xl:   1.5rem;    /* 24px */
  --text-3xl:   1.875rem;  /* 30px */
  --text-4xl:   2.25rem;   /* 36px */
  --text-5xl:   3rem;      /* 48px */
  --text-6xl:   3.75rem;   /* 60px */
  --text-7xl:   4.5rem;    /* 72px */

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-black:    900;

  --leading-tight:  1.1;
  --leading-snug:   1.25;
  --leading-normal: 1.5;
  --leading-relaxed:1.65;

  --tracking-tight:  -0.03em;
  --tracking-normal:  0em;
  --tracking-wide:    0.05em;
  --tracking-widest:  0.12em;

  /* --- Border radius --- */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl:   0 16px 64px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(120,60,160,0.08);

  /* --- Z-index layers --- */
  --z-base:    0;
  --z-above:   10;
  --z-nav:     100;
  --z-modal:   200;
  --z-toast:   300;

  /* --- Layout --- */
  --container-max:    1200px;
  --container-wide:   1400px;
  --nav-height:       72px;

  /* --- Transitions --- */
  --transition-fast:  150ms ease;
  --transition-base:  250ms ease;
  --transition-slow:  400ms ease;
}
