/* WeldOn Group Official Brand Colors */
:root {
    /* Primary Colors from Brand */
    --primary: #1a365d;        /* Dark Navy Blue */
    --primary-light: #2d4a7c;  /* Medium Blue */
    --accent: #f39c12;         /* Orange/Gold (from logo flame) */
    --accent-dark: #e67e22;    /* Darker Orange */
    
    /* Neutral Colors */
    --gray-dark: #4a5568;
    --gray-medium: #718096;
    --gray-light: #e2e8f0;
    --gray-lighter: #f7fafc;
    --white: #ffffff;
    
    /* Semantic Colors */
    --success: #48bb78;
    --warning: #f39c12;
    --error: #f56565;
    --info: #4299e1;
    
    /* Text Colors */
    --text-primary: #1a365d;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #1a365d;
}
