/* =============================================
   Site extra – additions layered on top of the
   original style.css (AJAX flash toast, helpers)
   ============================================= */

.ajax-flash{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%) translateY(20px);
  min-width:280px;
  max-width:90vw;
  padding:14px 22px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  color:#fff;
  box-shadow:0 8px 30px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  z-index:3000;
  transition:opacity .3s, transform .3s;
  text-align:center;
}
.ajax-flash.show{opacity:1;transform:translateX(-50%) translateY(0);}
.ajax-flash.ok{background:linear-gradient(135deg,#2ecc71,#27ae60);}
.ajax-flash.err{background:linear-gradient(135deg,#e74c3c,#c0392b);}

/* keep the invisible antiforgery token out of layout flow */
form > input[name="__RequestVerificationToken"],
body > input[name="__RequestVerificationToken"]{display:none;}

/* ── Gallery lightbox (global — used by destination/package/guide detail pages) ── */
#lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;align-items:center;justify-content:center;flex-direction:column;padding:20px;}
#lightbox.open{display:flex;}
#lbImg{max-width:90vw;max-height:80vh;border-radius:10px;box-shadow:0 20px 60px rgba(0,0,0,.6);object-fit:contain;}
#lbCaption{color:#ccc;font-size:14px;margin-top:14px;text-align:center;max-width:600px;}
.lb-close{position:fixed;top:18px;right:22px;background:rgba(255,255,255,.12);border:none;color:#fff;font-size:22px;width:44px;height:44px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.2s;z-index:10001;}
.lb-close:hover{background:rgba(245,166,35,.7);}
@media(max-width:600px){#lbImg{max-width:78vw;max-height:70vh;}}
