:root {
  /* Colors */
  --color-primary: #A7727D;
  --color-primary-light: #bba892;
  --color-primary-dark: #8a5e67;
  --color-secondary: #d4bea6;
  --color-secondary-light: #e2d3c3;
  --color-secondary-dark: #b39d88;
  --color-accent: #f8ede3;
  --color-accent-dark: #e7d5c2;
  --color-success: #4caf50;
  --color-info: #2196f3;
  --color-warning: #ffc107;
  --color-error: #f44336;
  --color-black: #211719;
  --color-background: #ffffff;
  --color-background-alt: #f8f9fa;
  --color-background-light: #f3ecee;
  --color-background-lightPink: #fbefe5;
  --color-background-dark: #f0f0f0;
  --color-heading: #2d2d2d;
  --color-text: #4d4d4d;
  --color-text-light: #6d6d6d;
  --color-border: #e0e0e0;
  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 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-size-5xl: 3rem; /* 48px */

  --line-height-tight: 1.2;
  --line-height-base: 1.5;
  --line-height-loose: 1.75;
  /* Spacing */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem; /* 8px */
  --space-md: 1rem; /* 16px */
  --space-lg: 1.5rem; /* 24px */
  --space-xl: 2rem; /* 32px */
  --space-2xl: 3rem; /* 48px */
  --space-3xl: 4rem; /* 64px */
  /* Layout */
  --container-width: 1200px;
  --section-padding-y: 5rem;
  /* Border Radius */
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius-md: 0.5rem; /* 8px */
  --border-radius-lg: 1rem; /* 16px */
  --border-radius-xl: 1.5rem; /* 24px */
  --border-radius-full: 9999px;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  /* z-index levels */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
}

/* Dark mode variables (can be enabled with a toggle) */
.dark-mode {
  --color-background: #121212;
  --color-background-alt: #1e1e1e;
  --color-background-dark: #2d2d2d;

  --color-heading: #f5f5f5;
  --color-text: #e0e0e0;
  --color-text-light: #b0b0b0;
  --color-border: #404040;
}
