.gallery{
    position: relative;
    width: 100vw;
    height: 100%;

}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
  }

  .gallery-item {
    width: 20%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 5px;
    box-sizing: border-box;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }


  .lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
  border-radius: 10px;
}

