.gallery {
  padding: 40px 20px;
  background-color: #1f1f1f;
  text-align: center;
}

.gallery h2 {
  color: #ff3c00;
  font-size: 2em;
  margin-bottom: 25px;
  text-shadow: 0 0 5px #ff3c00;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery-grid a img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 60, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid a img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 60, 0, 0.6);
}
.gallery-grid a img {
  width: 100%;
  max-width: 180px; /* Görselin maksimum genişliği */
  height: auto;     /* Oranı korur */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 60, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: auto;
  display: block;
}
