/* ==========================================================================
   SIMPLE PHOTO GALLERY STYLES (gallery.css)
   ========================================================================== */

/* Hero Banner */
.gallery-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Photo Card & Hover Effects */
.gallery-card {
  aspect-ratio: 4 / 3;
  background-color: #e9ecef;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, 0.15) !important;
  border-color: rgba(13, 110, 253, 0.3);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

/* Zoom Hover Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.75);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   LIGHTBOX SINGLE-VIEW OVERRIDES (Hides Prev/Next controls)
   -------------------------------------------------------------------------- */
.lightboxOverlay {
  background-color: rgba(0, 0, 0, 0.88) !important;
  backdrop-filter: blur(4px);
}

.lightbox .lb-image {
  border-radius: 8px;
  border: 3px solid #ffffff;
}

/* Hide Prev and Next Buttons completely */
.lb-nav, 
.lb-prev, 
.lb-next, 
.lb-number {
  display: none !important;
}

/* Prominent Close Button Setup */
.lb-data .lb-close {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.lb-data .lb-close:hover {
  opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  .gallery-hero {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .gallery-hero h1 {
    font-size: 1.75rem;
  }
}