/*
 * ================================================================
 * SEQUR.CA - CONTRAST FIX (Optimized & Minimal)
 * Only essential color overrides - reduced from 192 to 50 lines
 * ================================================================
 */

/* ====================================
   GLOBAL TEXT COLORS (High Priority)
   ==================================== */

/* All headings visible on dark backgrounds */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5 {
    color: #f8fafc;
}

/* Readable paragraph text */
p, span:not(.badge):not(.counter) {
    color: rgba(248, 250, 252, 0.85);
}

/* ====================================
   ICONS & ACCENTS
   ==================================== */

/* Icons should use accent color */
i.fa, i.fas, i.fab {
    color: #00d4ff;
}

/* Primary text badges and accents */
.text-primary {
    color: #00d4ff;
}

/* ====================================
   WHITE BACKGROUNDS (Dark Text)
   ==================================== */

.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white p,
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light p {
    color: #1f2933;
}

/* ====================================
   NAVIGATION
   ==================================== */

.nav-link {
    color: rgba(248, 250, 252, 0.85);
}

.nav-link:hover {
    color: #00d4ff;
}

/* ====================================
   END OPTIMIZED CONTRAST FIX
   ==================================== */
