/* style.css */
:root {
  /* HSL Values extracted from your index.css */
  --background: 0 0% 100%;
  --foreground: 215 25% 15%;

  --card: 0 0% 100%;
  --card-foreground: 215 25% 15%;

  --popover: 0 0% 100%;
  --popover-foreground: 215 25% 15%;

  --primary: 215 40% 20%;
  --primary-foreground: 0 0% 100%;

  --secondary: 42 88% 55%;
  --secondary-foreground: 215 40% 20%;

  --muted: 210 20% 96%;
  --muted-foreground: 215 15% 50%;

  --accent: 42 88% 55%;
  --accent-foreground: 215 40% 20%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 214 25% 88%;
  --input: 214 25% 88%;
  --ring: 215 40% 20%;

  --radius: 0.5rem;

  /* Custom brand colors */
  --navy-dark: 215 45% 18%;
  --navy-medium: 215 40% 25%;
  --navy-light: 215 35% 35%;
  --gold: 42 88% 55%;
  --gold-light: 42 85% 65%;
}

* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

/* Helper for smooth scrolling */
html {
  scroll-behavior: smooth;
}