/* ===================================================
   Menu Page Specific Styles
=================================================== */

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, var(--gold-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: 'MENU';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sub);
  font-size: 10rem;
  color: rgba(201, 169, 110, 0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.3em;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.4);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.breadcrumb {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.breadcrumb a:hover { color: var(--gold); }

/* INTRO */
.menu-intro {
  padding: 3rem 2rem;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--ivory-dark);
}

.menu-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}

.intro-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.intro-badge strong {
  font-size: 1.1em;
}

.menu-intro p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.9;
}

/* MENU SECTION */
.menu-section {
  padding: 4rem 2rem;
  background: var(--ivory);
}

.menu-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* TABS */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--ivory-dark);
  padding-bottom: 0;
}

.menu-tab {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--gold);
}

.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 500;
}

/* TAB CONTENT */
.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
  animation: fadeInTab 0.4s ease;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-tab-header {
  margin-bottom: 2rem;
}

.menu-tab-header h2 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 1rem;
}

.menu-tab-header h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 3px;
  height: 1em;
  background: var(--gold);
}

.menu-tab-header p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.9;
}

/* MENU TABLE */
.menu-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}

.menu-table thead tr {
  background: var(--dark);
  color: var(--white);
}

.menu-table thead th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.menu-table thead th:last-child,
.menu-table thead th:nth-child(2),
.menu-table thead th:nth-child(3) {
  text-align: center;
}

.menu-table tbody tr {
  border-bottom: 1px solid var(--ivory-dark);
  transition: background var(--transition);
}

.menu-table tbody tr:hover {
  background: var(--ivory);
}

.menu-table tbody td {
  padding: 1.2rem;
  font-size: 0.88rem;
  vertical-align: middle;
  line-height: 1.6;
}

.menu-table tbody td:nth-child(2),
.menu-table tbody td:nth-child(3) {
  text-align: center;
  white-space: nowrap;
  color: var(--warm-gray);
}

.menu-table tbody td small {
  display: block;
  font-size: 0.77rem;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}

.menu-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.price-cell {
  text-align: center !important;
}

.first-price {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}

/* Bridal note */
.bridal-note {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--dark-mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* NOTICE */
.menu-notice {
  padding: 3rem 2rem;
  background: var(--white);
}

.menu-notice-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--ivory);
  padding: 2rem 2.5rem;
}

.menu-notice h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.menu-notice ul li {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.8;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  border-bottom: 1px dotted var(--ivory-dark);
}

.menu-notice ul li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* active-page link */
.active-page {
  color: var(--gold) !important;
}

.active-page::after {
  width: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-tabs {
    gap: 0.3rem;
  }

  .menu-tab {
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
  }

  .menu-notice-inner {
    padding: 1.5rem;
  }

  .page-hero::before {
    font-size: 5rem;
  }
}
