/**
 * Boma Fuels - Brand Identity Stylesheet (CIS)
 * Centralized color palette and brand utilities.
 */

:root {
    /* Primary CIS Brand Color (Orange) */
    --cis-orange: #f37021;
    --brand-primary: #f37021;

    /* Shared Base Colors */
    --primary: #0d1b2a;
    --secondary: #495057;
    --highlight: #2d6a4f;
    
    /* Complementary Colors */
    --brand-dark: #1a1a1a;
    --brand-light: #ffffff;
    --brand-gray: #f4f4f4;
}

/* Global Brand Utility Classes */
.text-brand {
    color: var(--cis-orange) !important;
}

.bg-brand {
    background-color: var(--cis-orange) !important;
}