/* Lightbox photos */

.lightbox-trigger {
  cursor: zoom-in;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.92);
  padding: 0.75rem 0.75rem 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.photo-lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.photo-lightbox-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 600;
  color: #f2efe8;
  margin: 0;
}

.photo-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.photo-lightbox-link,
.photo-lightbox-close,
.photo-lightbox-nav button {
  border: 1px solid rgba(242, 239, 232, 0.12);
  background: transparent;
  color: #f2efe8;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.photo-lightbox-link:hover,
.photo-lightbox-close:hover,
.photo-lightbox-nav button:hover:not(:disabled) {
  border-color: #e8c547;
  color: #e8c547;
}

.photo-lightbox-link[hidden] {
  display: none;
}

.photo-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.photo-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(242, 239, 232, 0.12);
}

.photo-lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 0.65rem;
}

.photo-lightbox-nav[hidden] {
  display: none;
}

.photo-lightbox-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.photo-lightbox-counter {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  color: #9a958c;
  min-width: 4rem;
  text-align: center;
}

body.photo-lightbox-open {
  overflow: hidden;
}
