:root {
  /* Colors */
  --color-primary: #DC6152;
  --color-secondary: #2c3e50;
  --color-dark: #1a252f;
  --color-white: #ffffff;
  --color-light-gray: #f8f9fa;
  --color-gray: #6c757d;
  --color-shadow: #777777;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --nav-height: 104px;
  --nav-height-mobile: 74px;
  --container-max-width: 1140px;
  --container-padding: 2rem;

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

  /* Shadows */
  --box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
  --box-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-base: all 0.3s ease;
}
