.restaurant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.restaurant-card {
  width: 220px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  background: #fafafa;
  transition: transform 0.2s;
  text-decoration: none; /* remove underline */
  color: inherit; /* keep text color */
}

.restaurant-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.restaurant-card img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.restaurant-card h3 {
  margin-top: 10px;
  font-size: 1.2em;
  font-family: 'Playfair Display', serif;
}