/* ============================================================
   Caldwick Homes — Shared Property Gallery Lightbox Styles
   ------------------------------------------------------------
   Pairs with gallery.js. Themed to match Caldwick brand:
   forest green accents, cream tones, serif counter.
   ============================================================ */

.cw-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 10, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cw-lb-fade 0.2s ease-out;
}

.cw-lightbox.is-open {
  display: flex;
}

@keyframes cw-lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cw-lb-stage {
  width: 92%;
  height: 88%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.cw-lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ----- Close button ----- */
.cw-lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(248, 245, 238, 0.1);
  border: 1px solid rgba(248, 245, 238, 0.25);
  color: #F8F5EE;
  font-size: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
}

.cw-lb-close:hover {
  background: rgba(248, 245, 238, 0.2);
  border-color: rgba(248, 245, 238, 0.5);
}

/* ----- Prev / Next arrows ----- */
.cw-lb-prev,
.cw-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(248, 245, 238, 0.1);
  border: 1px solid rgba(248, 245, 238, 0.25);
  color: #F8F5EE;
  font-size: 1.25rem;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
}

.cw-lb-prev { left: 1.5rem; }
.cw-lb-next { right: 1.5rem; }

.cw-lb-prev:hover,
.cw-lb-next:hover {
  background: rgba(248, 245, 238, 0.2);
  border-color: rgba(248, 245, 238, 0.5);
}

/* ----- Counter ----- */
.cw-lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #F8F5EE;
  letter-spacing: 0.06em;
  background: rgba(45, 80, 22, 0.85);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(248, 245, 238, 0.15);
}

/* ----- Mobile adjustments ----- */
@media (max-width: 768px) {
  .cw-lb-prev,
  .cw-lb-next {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .cw-lb-prev { left: 0.5rem; }
  .cw-lb-next { right: 0.5rem; }
  .cw-lb-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }
  .cw-lb-counter {
    bottom: 1rem;
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }
}
