/* variables.css - Oulunsalon Vasama ry Design System */

:root {
    /* Brand Colors */
    --clr-primary-green: #008450;
    --clr-primary-dark: #005b38;
    --clr-primary-light: #e0f2dc;

    /* Neutral / Background */
    --clr-bg-main: #f4f6f5;
    --clr-bg-card: #ffffff;

    /* Text */
    --clr-text-main: #1c231f;
    --clr-text-muted: #5e6b63;
    --clr-text-inverse: #ffffff;

    /* Borders */
    --clr-border: #e2e8e5;
    --clr-border-focus: #008450;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}
