.menu-logo {
  max-width: 600px;
  height: auto;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-spacer {
  height: 40px;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.menu-card {
  position: relative;
  display: block;
  width: 360px;    
  height: 450px;
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.menu-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-name {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  text-align: left;
  line-height: 1.3;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  font-weight: 700;
  font-size: 22px;
  z-index: 2;
}
.menu-card-name .title {
  display: block;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.95;
}

.menu-card-bio {
  position: absolute;
  display: flex;
  inset: 0;
  z-index: 3;
  box-sizing: border-box;
  color: #ffffff;
  background: rgba(0,0,0,0.82);
  opacity: 0;
  transition: opacity 300ms ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  padding: 22px;
  pointer-events: auto;
}

.menu-card:hover .menu-card-bio {
  opacity: 1;
}
