/* Insert custom styles here */
:root {
    --color-forest: #183D30;
    --color-cream: #F5F0E6;
    --color-sage: #A8BA95;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-cream);
    color: var(--color-forest);
    -webkit-font-smoothing: antialiased;
}

/* Base focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-sage);
    outline-offset: 2px;
}

/* Smooth transitions for links */
a, button {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}