:root {
  --color-primary: #2685D0;
  --color-pink-red: #F1304E;
  --color-lavender: #1E3A5F;
  --color-teal: #52B4C7;
  --color-blue: #2685D0;
  --color-deep-violet: #444BBA;
  --color-orange: #FB611E;
  --color-peach: #F6A395;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Ensure consistent font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
