@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700&family=Wix+Madefor+Text:wght@400;500;600;700&display=swap');

:root {
  --primary: #4a5d4e;
  --secondary: #53c65c;
  --accent: #e09f7d;
  --background: #FFFFFF;
  --foreground: #4a5d4e;
  --muted: #f5f5f4;
  --muted-foreground: #717e67;
  --border: #e0e3de;
  
  --success: #4a5d4e;
  --warning: #d97706;
  --error: #ef4444;
  --info: #3b82f6;
  
  --sidebar: #4a5d4e;
  --sidebar-foreground: #ffffff;
}

body {
  margin: 0;
  font-family: 'Wix Madefor Text', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--background);
  color: var(--foreground);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}