/* ============================================================
   Menu Showcase Layout
   ============================================================ */

/* Hero C Overrides for Menu Page */
.hero-section-c {
  padding: 140px 0 80px 0;
  background-color: var(--bg-cream);
}

.hero-c-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-c-content {
  flex: 1;
}

.hero-c-title {
  font-family: serif;
  font-size: 4rem;
  line-height: 1.1;
  color: var(--primary-gold);
  margin-bottom: 24px;
}

.hero-c-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
  color: #555 !important;
}

.hero-c-image-wrap {
  flex: 1;
  position: relative;
  height: 450px;
}
.hero-c-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

@media screen and (max-width: 991px) {
  .hero-c-wrapper {
    flex-direction: column;
  }
}

/* Menu Grid */
.menu-section {
  padding: 60px 0 100px 0;
  background-color: #fff;
}

.menu-category-title {
  font-family: serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.3);
  padding-bottom: 16px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Menu Card */
.menu-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.menu-card:hover {
  transform: translateX(5px);
}

.menu-img-wrap {
  flex: 0 0 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.08);
}

.menu-info {
  flex: 1;
  padding-top: 8px;
}

.menu-info-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 12px;
}

.menu-item-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.menu-item-price {
  font-family: monospace;
  font-size: 1.25rem;
  color: var(--primary-gold);
  font-weight: bold;
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* Adjustments for Mobile */
@media screen and (max-width: 479px) {
  .hero-c-title {
    font-size: 2.8rem;
  }
  .menu-card {
    flex-direction: column;
    gap: 16px;
  }
  .menu-img-wrap {
    width: 100%;
    height: 220px;
    flex: none;
  }
}

/* Text-based Menu List Layout */
.menu-catalog {
  padding: 0 0 100px 0;
  background-color: #fff;
}

.menu-list-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 991px) {
  .menu-list-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.menu-list-category {
  margin-bottom: 48px;
}

.menu-list-title {
  font-family: serif;
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.3);
  padding-bottom: 12px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  position: relative;
}

.list-item::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  border-bottom: 1px dotted #ccc;
  z-index: 1;
}

.name-desc {
  background: white;
  padding-right: 12px;
  z-index: 2;
  flex: 1;
}

.name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.desc {
  font-size: 0.85rem;
  color: #666;
  margin-left: 8px;
  font-style: italic;
  display: inline-block;
}

.price {
  background: white;
  padding-left: 12px;
  z-index: 2;
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--primary-gold);
  font-weight: bold;
}

@media screen and (max-width: 479px) {
  .list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .list-item::after {
    display: none;
  }
  .name-desc {
    padding-right: 0;
    margin-bottom: 4px;
    display: block;
  }
  .desc {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .price {
    padding-left: 0;
  }
}
