/* css/variables.css — zaldor Design Tokens */

:root {
  /* Colors */
  --color-navy: #002e54;
  --color-navy-dark: #0a1628;
  --color-navy-mid: #003d6e;
  --color-gold: #ECDAAB;
  --color-gold-dark: #c8b88a;
  --color-gold-hover: #d4c299;
  --color-white: #ffffff;
  --color-warm-light: #f5f3ee;
  --color-text-light: #e8e4d9;
  --color-text-muted: #8a9db5;
  --color-text-dark: #1a2a3a;
  --color-border: rgba(0, 46, 84, 0.12);
  --color-border-light: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-heading: 'Roboto Slab', Georgia, serif;
  --font-body: 'PT Sans', Arial, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;
  --text-quote: clamp(2rem, 4vw, 3.5rem);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-section: clamp(3rem, 6vw, 5rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-text: 780px;
  --header-height: 66px;

  /* Borders */
  --border-radius: 2px;
  --border-radius-sm: 1px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 46, 84, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 46, 84, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 46, 84, 0.18);
  --shadow-header: 0 2px 12px rgba(0, 46, 84, 0.10);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.35s ease;
  --transition-anim: 0.7s ease-out;
}
