/* CSS Variables - Auten Style */

:root {
    /* Colors - Cream/Beige Theme */
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --primary-light: #f5f1e8;
    
    --secondary-color: #666666;
    --secondary-dark: #4f46e5;
    --secondary-light: #eef2ff;
    
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fef3c7;
    
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    
    --bg-primary: #f5f1e8;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eeeeea;
    
    --border-color: #e0dcd4;
    --border-light: #f0ede5;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 2.5rem;
    --spacing-4xl: 3rem;
    --spacing-5xl: 4rem;
    
    /* Typography - Auten Style (Inter/Poppins) */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", 
                   "Helvetica Neue", "Inter", "Poppins", sans-serif;
    
    --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;      /* 36px */
    --font-size-5xl: 3rem;          /* 48px */
    --font-size-6xl: 3.75rem;       /* 60px */
    --font-size-7xl: 4.5rem;        /* 72px - for hero */
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Line Heights - Auten Style */
    --line-height-tight: 1.15;      /* For hero headings */
    --line-height-snug: 1.2;        /* For headings */
    --line-height-normal: 1.5;      /* For body */
    --line-height-relaxed: 1.6;     /* For body with more space */
    --line-height-loose: 1.75;      /* For captions */
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Force light theme */
html {
    color-scheme: light;
}
