/* ============================================================
   Weber Advertising — legacy section bands unified (PROOF, global pass)
   Light/white & red bands dissolve into the homepage grey canvas;
   harsh dark bands become the soft footer-style dark glass so their
   white text + reversed logos stay readable.
   Loaded after site-modern.css. Does not affect the homepage
   (it no longer uses these legacy band classes).
   ============================================================ */

/* ---- Light & red bands → calm homepage canvas (show the body grey) ---- */
.whitebar,
.redgradientbar{
  background:transparent !important;
}
/* keep red-bar headings/copy readable now that the band is light */
.redgradientbar{ color:#2b313a; }

/* ---- Harsh dark bands → soft footer-style dark glass ---- */
/* (white text + reversed logos in these sections stay readable) */
.blackbar,
.darkgreybar,
.bluebar{
  background:linear-gradient(160deg,#2a2d31,#17191c) !important;
}
/* faint photo backdrop inside dark bands: keep it subtle */
.faded-bkg-img{ opacity:.16; }

/* ---- Testimonial / content boxes → subtle glass cards ---- */
.box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:22px 24px;
  -webkit-backdrop-filter:blur(8px) saturate(140%);
  backdrop-filter:blur(8px) saturate(140%);
}
