/* ==========================================================================
   HDM Marketing Theme — CSS Custom Properties
   ========================================================================== */

:root {
  /* ── Colors ── */
  --bg-primary: #0a0a0a;
  --bg-card: #111111;
  --bg-section: #0d0d0d;
  --bg-card-hover: #161616;
  --bg-overlay: rgba(0, 0, 0, 0.7);

  --accent: #39FF14;
  --accent-dim: #2bcc10;
  --accent-glow: rgba(57, 255, 20, 0.15);
  --accent-glow-strong: rgba(57, 255, 20, 0.3);

  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --border: #1f1f1f;
  --border-hover: #39FF14;

  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  --gradient-accent: linear-gradient(135deg, #39FF14 0%, #2bcc10 100%);
  --gradient-cta: linear-gradient(135deg, rgba(57, 255, 20, 0.08) 0%, rgba(0, 0, 0, 0) 100%);

  /* ── Typography ── */
  --font-hebrew: 'Heebo', sans-serif;
  --font-english: 'Inter', 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 */

  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* ── Spacing Scale ── */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* ── Breakpoints (reference only, used in media queries) ── */
  /* --bp-sm: 480px;   */
  /* --bp-md: 768px;   */
  /* --bp-lg: 1024px;  */
  /* --bp-xl: 1200px;  */
  /* --bp-2xl: 1440px; */

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(57, 255, 20, 0.2);
  --shadow-glow-strong: 0 0 40px rgba(57, 255, 20, 0.3);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Index Scale ── */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-header: 500;
  --z-overlay: 900;
  --z-modal: 1000;
}
