/* === CSS Variables & Reset === */

/* Local Inter font (place files under static/fonts/inter) */
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter_24pt-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter_24pt-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter_24pt-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter_24pt-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/Inter_24pt-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* === CSS Variables === */
:root {
  /* Colors */
  --primary: #FDB913;
  --primary-dark: #E5A610;
  --primary-light: #FFDD4A;
  --primary-foreground: #000000;
  --background: #F5F5F5;
  --background-rgb: 245, 245, 245;
  --surface: #FFFFFF;
  --surface-rgb: 255, 255, 255;
  --surface-hover: rgba(0, 0, 0, 0.05);
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-light: #9E9E9E;
  --border: #E0E0E0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

.dark-mode {
  --background: #0A0A0A;
  --background-rgb: 10, 10, 10;
  --surface: #1A1A1A;
  --surface-rgb: 26, 26, 26;
  --surface-hover: rgba(255, 255, 255, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-light: #808080;
  --border: #2A2A2A;
  --shadow: rgba(255, 255, 255, 0.05);
  --shadow-medium: rgba(255, 255, 255, 0.1);
  --shadow-heavy: rgba(255, 255, 255, 0.15);
}

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


