/**
 * CSS Variables for Embrace Recovery Theme
 */

:root {
    /* Primary Colors */
    --color-blue-dark: #004a4d;
    --color-blue-light: #08a1a2;
    --color-gold: #f7b334;
    --color-blue-pale: #e2f5f5;
    --color-blue-inactive: #689697;
    --color-gray: #e1eaea;
    
    /* Gradients */
    --gradient-primary: linear-gradient(to right, var(--color-blue-light), var(--color-gold));
    
    /* Typography - Adobe Fonts */
    --font-heading: 'barricada-pro', serif;
    --font-body: 'urbane-rounded', sans-serif;
    
    
    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    
    /* Container widths */
    --container-max-width: 1200px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 9rem;
}
