/* ==== tbh-contrast-fixes ==== */

/* ============================================================
   CONTRAST REMEDIATION — measured, not guessed
   Five WCAG AA failures found by scanning every rule that sets
   both colour and background across all 175 pages.
     .whatsapp-fab          1.98:1 -> 7.67:1
     .call-fab              2.99:1 -> 6.89:1
     #navMenu li a::after   3.04:1 -> 5.84:1
     ...:hover::after       2.03:1 -> 4.88:1
     .search-suggest:active 1.50:1 -> 11.85:1   (was invisible on press)
   Colour only. No geometry, layout or markup is touched.
   ============================================================ */
.whatsapp-fab{
  background:#075E54 !important;   /* official WhatsApp teal */
  color:#FFFFFF !important;
}
.whatsapp-fab:hover{ background:#0A7568 !important; }

.call-fab{
  background:#00646E !important;   /* darker step of the house teal */
  color:#FFFFFF !important;
}
.call-fab:hover{ background:#00545D !important; }

#navMenu li a::after{
  color:#005EB5 !important;        /* brand/primary */
}
#navMenu li a:hover::after,
#navMenu li a:active::after{
  background:#007D8A !important;
  color:#FFFFFF !important;
}

.search-suggest:active{
  background:#003087 !important;
  color:#FFFFFF !important;
  -webkit-text-fill-color:#FFFFFF !important;
}
