/***************************************************************
    PROJECT GALLERY STYLING 
***************************************************************/

.project-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}

.project-gallery img {
  width: 320px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.project-gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.project-caption {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 6px;
}

/**********************************************
    IMAGE LIGHTBOX
***********************************************/

#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

#lightbox-close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: 0.2s ease;
}

#lightbox-close:hover {
  color: #ff5555;
  transform: scale(1.15);
}
