/* contact-lightbox.css - centered-card contact modal styling for the blueimp
   iframe lightbox. Load in <head> AFTER blueimp-gallery.min.css (or paste inline).
   Pairs with contact-lightbox.js + blueimp-gallery-iframe.js + contactEmbed.php.
   Square card over a dimmed page; blueimp's own title + close are hidden (the
   form carries its own close X). ASCII only, no em-dashes. */

/* dimmed backdrop overlay (the page shows through, not a solid white takeover) */
#blueimp-gallery{
  z-index:2147483000!important;
  background:rgba(8,14,22,.62)!important;
}
/* hide blueimp's built-in title bar + close - the iframe form has its own X */
#blueimp-gallery .title{display:none!important;}
#blueimp-gallery>.close{display:none!important;}
/* the contact card: centered, fixed-size, square, ghost-white panel */
#blueimp-gallery .slide .iframe-content{
  width:min(540px,94vw)!important;
  height:min(600px,90vh)!important;
  margin:auto!important;
  border:0;
  border-radius:0;
  overflow:hidden;
  background:#f8f8ff;
  box-shadow:0 24px 70px rgba(0,0,0,.5);
}
