/* ============================================
   VIDEOHOUSE.IO - Design Tokens
   ============================================ */

:root {
  /* ---- Colors: Backgrounds ---- */
  --color-bg-primary: #0a0a0a;
  --color-bg-section: #111111;
  --color-bg-card: #1a1a1a;
  --color-bg-card-hover: #222222;
  --color-bg-overlay: rgba(0, 0, 0, 0.7);
  --color-bg-banner: #f5c518;

  /* ---- Colors: Text ---- */
  --color-text-primary: #ffffff;
  --color-text-secondary: #b0b0b0;
  --color-text-muted: #888888;
  --color-text-on-accent: #0a0a0a;

  /* ---- Colors: Accent ---- */
  --color-accent: #f5c518;
  --color-accent-hover: #ffd84d;
  --color-accent-dim: rgba(245, 197, 24, 0.15);

  /* ---- Colors: Borders ---- */
  --color-border: #2a2a2a;
  --color-border-light: #333333;
  --color-border-accent: #f5c518;

  /* ---- Colors: Misc ---- */
  --color-star: #f5c518;
  --color-success: #22c55e;
  --color-error: #ef4444;

  /* ---- Typography: Font Families ---- */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-nav: 'Montserrat', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --font-mono: 'Inconsolata', monospace;

  /* ---- Typography: Font Sizes ---- */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md: 1.125rem;     /* 18px */
  --text-lg: 1.25rem;      /* 20px */
  --text-xl: 1.5rem;       /* 24px */
  --text-2xl: 2rem;        /* 32px */
  --text-3xl: 2.5rem;      /* 40px */
  --text-4xl: 3rem;        /* 48px */
  --text-5xl: 3.5rem;      /* 56px */
  --text-6xl: 4.5rem;      /* 72px */
  --text-hero: 5.5rem;     /* 88px */

  /* ---- Typography: Font Weights ---- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* ---- Typography: Line Heights ---- */
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* ---- Typography: Letter Spacing ---- */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* ---- Spacing ---- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --section-padding: 80px;
  --grid-gap: 24px;
  --content-padding: 20px;

  /* ---- Borders & Radius ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(245, 197, 24, 0.2);

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

  /* ---- Z-Index ---- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-banner: 500;
  --z-nav: 600;
  --z-toast: 700;
}
