/*
 * CampTale Design Tokens
 *
 * Single source of truth for the Razor Pages layer.
 * Mirrors camptale-webapp/src/styles/theme.js so both
 * server-rendered HTML and Lit Shadow DOM share the same palette.
 */

:root {
  /* ── Color Palette ──────────────────────────────────────── */

  --color-primary: #166534;
  --color-primary-dark: #14532d;
  --color-primary-light: #16a34a;
  --color-primary-bg: rgba(22, 101, 52, 0.1);
  --color-primary-text: #166534;

  --color-secondary: #16a34a;
  --color-secondary-dark: #15803d;
  --color-secondary-light: #22c55e;

  /* ── Status Colors ──────────────────────────────────────── */

  --color-success: #28a745;
  --color-success-bg: #d4edda;
  --color-success-border: #c3e6cb;
  --color-success-text: #155724;

  --color-error: #dc3545;
  --color-error-bg: #f8d7da;
  --color-error-border: #f5c6cb;
  --color-error-text: #721c24;

  --color-warning: #ffc107;
  --color-warning-bg: #fff3cd;
  --color-warning-border: #ffeaa7;
  --color-warning-text: #856404;

  --color-info: #17a2b8;
  --color-info-bg: #d1ecf1;
  --color-info-border: #bee5eb;
  --color-info-text: #0c5460;

  /* ── Neutral Colors ─────────────────────────────────────── */

  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #fafafa;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #adb5bd;
  --color-gray-500: #6c757d;
  --color-gray-600: #495057;
  --color-gray-700: #343a40;
  --color-gray-800: #212529;
  --color-gray-900: #1a1a1a;

  /* ── Background & Surface ───────────────────────────────── */

  --color-background: #ffffff;
  --color-background-alt: #f8f9fa;
  --color-surface: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.5);

  /* ── Text Colors ────────────────────────────────────────── */

  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-text-disabled: #cccccc;

  /* ── Border Colors ──────────────────────────────────────── */

  --color-border: #ddd;
  --color-border-light: #eee;
  --color-border-dark: #ccc;

  /* ── Spacing Scale ──────────────────────────────────────── */

  --spacing-xs: 0.25rem;   /* 4px  */
  --spacing-sm: 0.5rem;    /* 8px  */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */

  /* ── Font Sizes ─────────────────────────────────────────── */

  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-md: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */

  /* ── Font Weights ───────────────────────────────────────── */

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* ── Line Heights ───────────────────────────────────────── */

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  /* ── Border Radius ──────────────────────────────────────── */

  --radius-none: 0;
  --radius-sm: 0.25rem;   /* 4px  */
  --radius-md: 0.5rem;    /* 8px  */
  --radius-lg: 1rem;      /* 16px */
  --radius-xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;

  /* ── Shadows ────────────────────────────────────────────── */

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 16px 32px rgba(0, 0, 0, 0.25);

  /* ── Z-index Scale ──────────────────────────────────────── */

  --z-index-dropdown: 1000;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;

  /* ── Transitions ────────────────────────────────────────── */

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}
