/* Design Tokens - Delivr Website */

:root {
  /* Brand Colors */
  --color-primary: #1868DB;
  --color-white: #FFFFFF;
  --color-off-white: #F8F6F5;
  --color-black: #000000;
  --color-red: #FF0303;
  --color-orange: #FF5400;
  --color-gray: #666666;
  --color-gray-light: #999999;
  --color-gray-lighter: #EEEEEE;

  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #1868DB 0%, #0D4A99 100%);
  --gradient-orange: linear-gradient(135deg, #FF5400 0%, #FF3D00 100%);
  --gradient-delivr: linear-gradient(135deg, #1868DB 0%, #FF5400 100%);
  --gradient-subtle: linear-gradient(135deg, #F8F6F5 0%, #fff 100%);

  /* Spacing Scale */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 80px;
  --spacing-huge: 100px;
  --spacing-massive: 120px;

  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;

  --font-size-h1: 72px;
  --font-size-h1-mobile: 48px;
  --font-size-h2: 52px;
  --font-size-h2-mobile: 36px;
  --font-size-h3: 28px;
  --font-size-h3-mobile: 24px;
  --font-size-body: 18px;
  --font-size-body-mobile: 16px;
  --font-size-small: 14px;

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

  --line-height-tight: 1.1;
  --line-height-normal: 1.3;
  --line-height-relaxed: 1.6;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-xl: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-btn: 0 4px 12px rgba(24, 104, 219, 0.3);
  --shadow-btn-hover: 0 6px 20px rgba(24, 104, 219, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --card-padding: 48px;
  --card-padding-mobile: 32px;

  /* Grid Gaps */
  --gap-sm: 24px;
  --gap-md: 32px;
  --gap-lg: 40px;
  --gap-xl: 48px;
}
