/* Hero Section */
.menu-hero-section {
  position: relative;
  color: white;
  background-image: url('Images/Buffet-img.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
}

.menu-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}
.hero-section .hero-content {
  text-align: center;
}

.hero-section .display-4 {
  font-size: 3.5rem;
  font-family: 'Cinzel', serif;
}

.hero-section .lead {
  font-size: 1.3rem;
  font-family: 'Cinzel', cursive;
}

#menu {
    margin-bottom: 30px;
}
  .menu-card {
    border: 2px solid #e0e0e0;
    background: linear-gradient(to top right, #ffffff, #f2f2f2);
    transition: all 0.4s ease;
    height: 100%;
  }

  .menu-card {
    box-shadow: 0 8px 16px rgba(60, 60, 60, 0.858);
    border-color: #d4af37;
  }

  .menu-card h4 {
    color: #d4af37;
    font-weight: 600;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
  }

  .menu-list {
    padding-left: 1rem;
    margin: 0;
    list-style: none;
  }

  .menu-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #444;
  }

  .menu-list li::before {
    content: "\2022";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
  }
  .additional-card {
    width: auto;
    min-width: 280px;
    max-width: 360px;
    min-height: auto;
    background: linear-gradient(to top right, #ffffff, #f9f9f9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 35px;
  }