/**
 * Theme Configuration for Dirt Dudes Excavating
 * 
 * This file contains all design tokens and theme variables.
 * Reference this file when adding new components to maintain consistency.
 */

:root {
    /* Primary Colors */
    --color-primary: #FFC107;        /* Yellow - Main brand color (from logo) */
    --color-primary-dark: #FFA000;    /* Darker yellow for hover states */
    --color-primary-light: #FFD54F;  /* Lighter yellow for accents */
    
    /* Neutral Colors */
    --color-dark: #1a1a1a;          /* Almost black - Headers, buttons */
    --color-dark-bg: #111;           /* Dark background */
    --color-dark-section: #1a1a1a;   /* Dark section backgrounds */
    --color-dark-card: #222;         /* Dark card backgrounds */
    --color-dark-card-hover: #1f1f1f; /* Dark card hover state */
    
    /* Light Colors */
    --color-cream: #F4F1EA;          /* Main light background */
    --color-cream-light: #FDFCF8;    /* Lighter cream for hover */
    --color-white: #FFFFFF;
    
    /* Text Colors */
    --color-text-primary: #1a1a1a;    /* Main text */
    --color-text-secondary: #6B7280;  /* Secondary text (stone-600) */
    --color-text-tertiary: #9CA3AF;   /* Tertiary text (stone-400) */
    --color-text-light: #FFFFFF;      /* White text for dark backgrounds */
    
    /* Border Colors */
    --color-border-light: #E5E7EB;    /* Light borders (stone-200) */
    --color-border-medium: #D1D5DB;   /* Medium borders (stone-300) */
    --color-border-dark: #374151;     /* Dark borders (stone-700) */
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* 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;
    
    /* Spacing */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-2xl: 3rem;      /* 48px */
    --spacing-3xl: 4rem;      /* 64px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;     /* 4px */
    --radius-md: 0.5rem;      /* 8px */
    --radius-lg: 0.75rem;     /* 12px */
    --radius-xl: 1rem;         /* 16px */
    --radius-2xl: 1.5rem;      /* 24px */
    --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 Layers */
    --z-base: 0;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Theme Color Classes */
.bg-primary {
    background-color: var(--color-primary);
}

.bg-primary-dark {
    background-color: var(--color-primary-dark);
}

.text-primary {
    color: var(--color-primary);
}

.border-primary {
    border-color: var(--color-primary);
}

/* Dark Theme Overrides */
.dark-section {
    background-color: var(--color-dark-section);
    color: var(--color-text-light);
}

/* Utility Classes */
.heading-font {
    font-family: var(--font-heading);
}

.body-font {
    font-family: var(--font-body);
}

