/* === GALERIE GRID FĂRĂ TEXTE === */
.gallery-section {
  background: linear-gradient(120deg, #f1f4fb 60%, #e3e8f0 100%);
  padding: 60px 0 40px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.gallery-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(80, 80, 120, 0.13);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  padding: 0;
  border: 2px solid #e0e0e0;
}

.gallery-card:hover {
  box-shadow: 0 12px 40px 0 rgba(80, 80, 120, 0.22);
  transform: scale(1.03);
  border-color: #fff400;
}

.gallery-card img {
  width: 100%;
  min-height: 220px;
  height: 340px;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s, box-shadow 0.3s;
  filter: brightness(0.96) saturate(1.12);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 12px 0 rgba(80,80,120,0.10);
  background: #ececec;
}

/* Elimină textele din card */
.gallery-card-body,
.gallery-card-title,
.gallery-card-desc {
  display: none !important;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .gallery-grid {
    max-width: 100vw;
    gap: 18px;
    padding: 0 8px;
  }
  .gallery-card img {
    height: 220px;
    min-height: 120px;
    max-height: 260px;
  }
}

@media (max-width: 900px) {
  .gallery-section h2 { font-size: 2rem; }
  .gallery-grid {
    gap: 12px;
    padding: 0 4px;
  }
  .gallery-card img {
    height: 160px;
    min-height: 90px;
    max-height: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 24px 0 12px 0;
  }

  .gallery-section h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .gallery-section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr; /* O singură coloană */
    gap: 10px;
    padding: 0 4vw;
    max-width: 100vw;
  }

  .gallery-card {
    border-radius: 10px;
    border-width: 1px;
    box-shadow: 0 3px 12px rgba(80,80,120,0.12);
  }

  .gallery-card img {
    min-height: 160px;
    height: 200px;
    max-height: 260px;
    border-radius: 10px 10px 0 0;
    box-shadow: none;
  }
}
