/*
 * HOGENT Color Palette - Consistent color scheme for the RISE application
 */

:root {
    /* Base Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-red: #FF0000;
    --color-grey: #C3BBAF;
    --color-light-grey: #F7F7F7;

    /* Department Colors */
    --color-biotech: #16B0A5;
    /* Biotechniek, industriële wetenschappen en technologie */
    --color-healthcare: #F19DA0;
    /* Gezondheidszorg */
    --color-it: #EF8767;
    /* IT en digitale innovatie */
    --color-business: #BB90BD;
    /* Handelswetenschappen en bedrijfskunde */
    --color-education: #4CA2D5;
    /* Onderwijs */
    --color-social-work: #C3BBAF;
    /* Sociaal-agogisch werk */
    /* Additional Colors */
    --color-yellow-bright: #FABC32;
    --color-yellow-vivid: #F4DE00;
    --color-green-light: #A5CA72;
    --color-beige: #D8B083;
}

/* Utility Classes - Background Colors */
.bg-black {
    background-color: var(--color-black) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-biotech {
    background-color: var(--color-biotech) !important;
}

.bg-healthcare {
    background-color: var(--color-healthcare) !important;
}

.bg-it {
    background-color: var(--color-it) !important;
}

.bg-business {
    background-color: var(--color-business) !important;
}

.bg-education {
    background-color: var(--color-education) !important;
}

.bg-social-work {
    background-color: var(--color-social-work) !important;
}

/* Utility Classes - Text Colors */
.text-black {
    color: var(--color-black) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-biotech {
    color: var(--color-biotech) !important;
}

.text-healthcare {
    color: var(--color-healthcare) !important;
}

.text-it {
    color: var(--color-it) !important;
}

.text-business {
    color: var(--color-business) !important;
}

.text-education {
    color: var(--color-education) !important;
}

.text-social-work {
    color: var(--color-social-work) !important;
}
