/* Design Tokens & CSS Custom Properties */
:root {
  /* Color Palette */
  --primary-color: #025E73;      /* Royal Teal/Blue */
  --primary-dark: #011F26;       /* Deep Navy */
  --secondary-color: #800C3C;    /* Mysore Silk Purple/Magenta */
  --secondary-light: #A21B54;
  --accent-color: #D4AF37;       /* Gold/Zari Accent */
  --accent-light: #FFE07D;       /* Bright Gold */
  --text-dark: #1E252B;          /* Body Text */
  --text-light: #F4F6F8;         /* Light Background Text */
  --bg-light: #FDFDFD;           /* Page Background */
  --bg-card: #FFFFFF;            /* Card Background */
  --bg-footer: #01151A;          /* Footer Background */
  --border-color: #E2E8F0;       /* Divider Color */
  
  /* Fonts */
  --font-headlines: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Typography Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;

  /* Layout */
  --container-max-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;

  /* Elevation (Shadows) */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
