/* Base Styles */
body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-gray-800);
    background-color: var(--color-gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-800);
    margin: 0;
}

h1 {
    font-size: var(--font-size-2xl);
}

h2 {
    font-size: var(--font-size-xl);
}

h3 {
    font-size: var(--font-size-lg);
}

/* Links */
a {
    color: var(--color-gray-800);
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-gray-600);
}

/* Focus styles for accessibility */
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 2px;
}

/* Text selection */
::selection {
    background-color: var(--color-brand-primary);
    color: var(--color-white);
}
