/* CSS Reset - Light Theme */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette - Light Theme */
    --primary: oklch(0.55 0.15 180);
    --primary-light: oklch(0.65 0.12 180);
    --primary-dark: oklch(0.45 0.18 180);
    --primary-foreground: oklch(1 0 0);
    --secondary: oklch(0.60 0.18 250);
    --secondary-foreground: oklch(1 0 0);
    --accent: oklch(0.65 0.16 35);
    --accent-foreground: oklch(1 0 0);
    --background: oklch(1 0 0);
    --surface: oklch(0.98 0.01 265);
    --text: oklch(0.20 0.02 265);
    --text-secondary: oklch(0.50 0.02 265);
    --border: oklch(0.90 0.01 265);
    --border-light: oklch(0.95 0.005 265);
    --success: oklch(0.70 0.15 150);
    --warning: oklch(0.75 0.12 70);
    --error: oklch(0.65 0.16 50);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--text);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--primary);
    color: var(--primary-foreground);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border);
}
