/* Lightbox Wizard Styles — matches black/white minimalist aesthetic */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  background: transparent;
}

.lightbox-caption {
  margin-top: 1.2rem;
  text-align: center;
  color: #eeeeee;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.lightbox-title {
  font-weight: 450;
  text-transform: uppercase;
  border-left: 2px solid #ffffff;
  padding-left: 0.7rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.lightbox-meta {
  font-size: 0.7rem;
  color: #999999;
  margin-top: 0.2rem;
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 300;
  transition: opacity 0.2s;
  line-height: 1;
  z-index: 1001;
}

.close-btn:hover {
  opacity: 0.7;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.prev-btn {
  left: 1.5rem;
}

.next-btn {
  right: 1.5rem;
}

@media (max-width: 680px) {
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
  .prev-btn { left: 0.75rem; }
  .next-btn { right: 0.75rem; }
  .close-btn { top: 1rem; right: 1rem; font-size: 2rem; }
  .lightbox-caption { font-size: 0.75rem; }
}