/* Modern Lightbox for Weatherwax Exhibit */

.weatherwax-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.weatherwax-lightbox.active {
  display: flex;
}

.weatherwax-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.weatherwax-lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  line-height: 1;
  transition: opacity 0.3s;
}

.weatherwax-lightbox-close:hover {
  opacity: 0.7;
}

/* Make thumbnail and zoom icon clickable */
.weatherwax-thumbnail-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.weatherwax-thumbnail-wrapper img {
  display: block;
}

.weatherwax-zoom-icon {
  cursor: pointer;
  transition: opacity 0.3s;
}

.weatherwax-zoom-icon:hover {
  opacity: 0.7;
}
