.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxFadeIn 0.3s ease-out;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxImageIn 0.4s ease-out 0.1s both;
}
.lightbox-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: -50px;
  right: -10px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  padding: 10px;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 1;
}
.lightbox-close:hover {
  color: #ccc;
  transform: scale(1.1);
}
.lightbox-info {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  border-radius: 0 0 8px 8px;
}
.lightbox-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.lightbox-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lightboxImageIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }
  .lightbox-close {
    top: -40px;
    right: -5px;
    font-size: 30px;
  }
  .lightbox-info {
    bottom: -60px;
    padding: 15px;
  }
  .lightbox-info h3 {
    font-size: 1.2rem;
  }
  .lightbox-info p {
    font-size: 0.9rem;
  }
}
@media (prefers-color-scheme: dark) {
  .lightbox {
    background-color: rgba(0, 0, 0, 0.95);
  }
  .lightbox-info {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  }
  .lightbox-close {
    color: rgba(255, 255, 255, 0.9);
  }
  .lightbox-close:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox.active {
    animation: none;
  }
  .lightbox-image {
    animation: none;
  }
  .lightbox-close {
    transition: none;
  }
  .lightbox-close:hover {
    transform: none;
  }
  @keyframes lightboxFadeIn {
    from, to {
      opacity: 1;
    }
  }
  @keyframes lightboxImageIn {
    from, to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
.lightbox--compact .lightbox-info {
  bottom: -40px;
  padding: 10px;
}
.lightbox--compact .lightbox-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.lightbox--compact .lightbox-info p {
  font-size: 0.8rem;
}
.lightbox--fullscreen .lightbox-content {
  max-width: 100%;
  max-height: 100%;
}
.lightbox--fullscreen .lightbox-image {
  border-radius: 0;
}
.lightbox--minimal .lightbox-info {
  display: none;
}

.lightbox-enabled {
  position: relative;
  cursor: pointer !important;
}
.lightbox-enabled::after {
  content: "";
  background-image: url("../images/magnifying-glass.png") !important;
  background-size: 65% !important;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #333;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.lightbox-enabled:hover::after {
  transform: scale(1.15);
}

@media (max-width: 576px) {
  .lightbox-enabled::after {
    right: 12vw;
    top: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lightbox-enabled::after {
    right: 12vw;
    top: 10px;
  }
}

/*# sourceMappingURL=lightbox.css.map */
