.gallery {
  padding: 6rem 1rem 4rem;
  min-height: 100vh;
  text-align: center;
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* Așezare în 3 coloane pe ecrane mari */
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__img {
  width: 100%;
  height: 220px; /* Dimensiune fixă */
  object-fit: cover; /* Păstrează proporțiile fără a deforma imaginea */
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery__img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  display: none;
  z-index: 999;
  padding-top: 5%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox__content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 1rem;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}

