/* =========================================
   WEDDING LIGHTBOX — shared overlay
   ========================================= */

.w-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.w-lb--open {
  display: flex;
}

.w-lb__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.3s ease;
  padding: 0.25rem;
}

.w-lb__close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

.w-lb__content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-lb__iframe {
  width: 90vw;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  border: none;
}

.w-lb__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.w-lb__video {
  width: 90vw;
  max-width: 1400px;
  max-height: 90vh;
  aspect-ratio: 16 / 9;
  background: #000;
}
