.menu-logo{
  height: 5rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.menu {
  position: relative;
  overflow: hidden;
  height: 400px; /* Ensures a minimum height */
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


.card-image:hover {
  transform: scale(1.1);
}

.menu .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.menu:hover .overlay {
  opacity: 1;
}

.menu .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .menu {
      flex: 1 1 100%;
  }
}

