  img{
  display: block;
  margin-left: auto;
  margin-right: auto;
    }
h2 {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #594545;
}
/* ===== Restaurant Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery img {
    height: 120px;
  }
}
