@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

:root {
  --max-width: 1200px;
  --border-radius: 12px;
  --background: #ffffff;
  --foreground: #333333;
  --muted: #64748b;
  --border: rgba(0, 0, 0, 0.05);
  --primary: #f26625;
  --header-bg: rgba(255, 255, 255, 0.8);
  --footer-bg: #f8fafc;
  --font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  --primary-rgb: 242, 102, 37;
}

[data-theme="light"] {
  --background: #ffffff;
  --foreground: #333333;
  --muted: #64748b;
  --border: rgba(0, 0, 0, 0.05);
  --header-bg: rgba(255, 255, 255, 0.8);
  --footer-bg: #f8fafc;
  --primary-rgb: 242, 102, 37;
}

[data-theme="dark"] {
  --background: #0a0a0a;
  --foreground: #ffffff;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.05);
  --header-bg: rgba(0, 0, 0, 0.8);
  --footer-bg: #111111;
  --primary-rgb: 242, 102, 37;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  font-family: var(--font-family);
}

body {
  color: var(--foreground);
  background: var(--background);
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}
