@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap');

:root {
  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Premium Cream Theme (No dark mode) */
  --bg-primary: #f9f7f2;      /* Elegant 5% warm cream background */
  --bg-secondary: #ffffff;    /* Card background white for contrast */
  --bg-tertiary: #f2efe9;     /* Soft highlight cream */
  
  --text-primary: #1c1917;    /* Warm black/dark stone */
  --text-secondary: #57534e;  /* Stone-600 */
  --text-muted: #8c857b;      /* Muted stone gray */
  
  --border-color: #e8e4db;    /* Soft beige border */
  --border-focus: #a8a297;    /* Focused border beige */
  
  --accent-color: #1c1917;    /* Warm black accent */
  --accent-contrast: #f9f7f2; /* Cream text on black */
  
  /* Highlights & Special Indicators */
  --color-success: #15803d;   /* Rich forest green instead of bright neon */
  --color-error: #b91c1c;     /* Muted red */
  
  /* Spacing & Layout */
  --container-max-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Header heights */
  --navbar-height: 80px;
}

/* Reset / Box Model */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}
