/* Brand Fonts - Clutter Cure Co. */
@font-face {
    font-family: 'Rowan';
    src: url('../fonts/Rowan-2Styled.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Novantique Script';
    src: url('../fonts/Novantique Script Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Novantique Script';
    src: url('../fonts/Novantique Script Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Novantique Script';
    src: url('../fonts/Novantique Script Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Sweet Sans';
    src: url('../fonts/Sweet - SweetSans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sweet Sans';
    src: url('../fonts/Sweet - SweetSans-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    /* Brand Colors - Clutter Cure Co. */
    /* Primary Greens */
    --color-ivy: #757A4D;
    --color-pothos: #898F65;
    --color-sage: #A3A983;
    --color-willow: #C3C6A7;

    /* Neutrals */
    --color-afterglow: #E5D4D3;
    --color-linen: #D6D1C4;
    --color-cardigan: #C5B9AC;
    --color-wood: #686058;

    /* Semantic Colors */
    --color-primary: #757A4D; /* Ivy */
    --color-primary-dark: #686058; /* Wood */
    --color-secondary: #A3A983; /* Sage */
    --color-accent: #E5D4D3; /* Afterglow */
    --color-success: #898F65; /* Pothos */
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #A3A983; /* Sage */

    --color-text: #686058; /* Wood */
    --color-text-light: #A3A983; /* Sage */
    --color-background: #ffffff;
    --color-background-light: #D6D1C4; /* Linen */
    --color-border: #C3C6A7; /* Willow */

    /* Typography */
    --font-family-headings: 'Rowan', Georgia, serif; /* Headings and titles */
    --font-family-script: 'Novantique Script', cursive; /* Decorative/script */
    --font-family-body: 'Sweet Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* Body text/paragraphs */
    --font-family: 'Sweet Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* Default font */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 0.375rem;
    --border-radius-sm: 0.25rem;
    --border-radius-lg: 0.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition: all 0.2s ease-in-out;

    /* Breakpoints (for reference in media queries) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}