/* Fibrasol CI Color & Style Overrides */

/* --- Variables --- */
:root {
    --brand-yellow: #FFD700;
    --brand-purple: #2A0A5E;
    --brand-gradient: linear-gradient(155deg, #4a2a7e, #2A0A5E);
}

/* --- Universal Elements --- */
.btn-warning, .btn-brand {
    background-color: var(--brand-yellow) !important;
    color: var(--brand-purple) !important;
    font-weight: 700 !important;
    border: none !important;
}
.text-warning {
    color: var(--brand-yellow) !important;
}

/* --- Service & Blog Tiles --- */
.service-tile {
    background: var(--brand-gradient);
    border-top: 3px solid rgba(255, 215, 0, 0.2);
}
.service-tile:hover {
    border-color: var(--brand-yellow);
}

/* --- Tile Headlines --- */
body.home .service-tile h3, 
body.home .service-tile h4 {
    color: white;
    text-align: center;
}

.blog-preview .service-tile h4,
body.blog .service-tile h4 {
    color: var(--brand-yellow) !important;
    text-align: left !important;
}

/* --- Post Content --- */
.post-content-area h2, .post-content-area h3 {
    color: var(--brand-purple);
}
.post-content-area ul {
    list-style-type: '✓';
    color: var(--brand-purple);
}
