.hero-section-shower {
  position: relative;
  height: 400px; /* Diubah dari 60vh menjadi 400px */
  overflow: hidden; 
}
.hero-section-shower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}
.hero-section-shower::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* Overlay tambahan */
}
/* Tambahkan juga style untuk text agar konsisten */
.hero-section-shower h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}
.hero-section-shower p {
  color: white;
  font-size: 1.25rem;
}
/* ... (bagian kode lainnya tidak berubah) ... */

.menu-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0;
}

.menu-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px); 
  border-color: #c1c1c1;
}

.menu-name {
    color: #004225;
    font-weight: 700;
    font-size: 1.1rem;
}
.menu-icon {
    color: #004225;
}
.text-muted {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .menu-card {
        border-radius: 10px;
    }
}
