/* Galerie */
.gallery {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.gallery-main {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}

.gallery-main img {
  width: 100%; /* ocupă tot containerul galeriei */
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumbs img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.2s;
  border: 2px solid transparent;
}