/* ============================================================
   BÀNAY BAKERY + CAFE — Menu CSS
   ============================================================ */

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Atmospheric glow orbs */
.menu-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 122, 114, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.menu-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181, 103, 58, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.menu-section > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   MENU HEADER
   ============================================================ */
.menu-section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.menu-section__header .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.menu-section__header .section-body {
  color: rgba(250,247,242,0.5);
  margin-inline: auto;
}

/* ============================================================
   MENU TABS
   ============================================================ */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  position: relative;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}

.menu-tab {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  min-height: 44px;
}

.menu-tab:hover {
  color: rgba(250,247,242,0.75);
}

.menu-tab.is-active {
  color: var(--white);
}

/* Gold underline indicator */
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-mid) var(--ease-out);
}

.menu-tab.is-active::after {
  transform: scaleX(1);
}

/* ============================================================
   MENU PANELS
   ============================================================ */
.menu-panel {
  display: none;
}

.menu-panel.is-active {
  display: block;
  animation: panelFadeIn 0.4s var(--ease-out) forwards;
}

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

/* ============================================================
   MENU GRID
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.menu-column {
  padding: 0 2rem;
}

.menu-column:first-child {
  border-right: 1px solid rgba(250,247,242,0.07);
}

/* ============================================================
   MENU ENTRY
   ============================================================ */
.menu-entry {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(250,247,242,0.07);
  gap: 1.5rem;
  transition: transform var(--duration-fast) var(--ease-out);
  position: relative;
}

.menu-entry:last-child {
  border-bottom: none;
}

.menu-entry:hover {
  transform: translateX(4px);
}

.menu-entry__info {
  flex: 1;
  min-width: 0;
}

.menu-entry__name {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.menu-entry__desc {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.825rem;
  color: rgba(250,247,242,0.4);
  line-height: 1.5;
}

.menu-entry__price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Entry hover dot indicator */
.menu-entry::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform var(--duration-fast) var(--ease-out);
}

.menu-column:first-child .menu-entry::before {
  left: -1rem;
}

.menu-entry:hover::before {
  transform: translateY(-50%) scale(1);
}

/* ============================================================
   MENU FOOTER NOTE
   ============================================================ */
.menu-note {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,242,0.06);
}

.menu-note__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.3);
}

.menu-note__text strong {
  color: rgba(250,247,242,0.55);
  font-weight: 400;
}

/* ============================================================
   ALLERGEN / INFO BADGES
   ============================================================ */
.menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
  font-family: var(--font-body);
  vertical-align: middle;
  margin-left: 0.4rem;
}

.menu-badge--vegan {
  background: rgba(42, 122, 114, 0.2);
  color: var(--teal);
  border: 1px solid rgba(42, 122, 114, 0.3);
}

.menu-badge--new {
  background: rgba(201, 151, 74, 0.2);
  color: var(--gold);
  border: 1px solid rgba(201, 151, 74, 0.3);
}
