/* Bonjour Menu page — extends bonjour-about.css scoped under .abt */

/* Thai font fallback for menu names and category headings */
.abt.menu,
.abt.menu h1, .abt.menu h2, .abt.menu h3, .abt.menu h4,
.abt.menu p, .abt.menu .eyebrow, .abt.menu .lede, .abt.menu .body,
.abt.menu .menu-item h3, .abt.menu .menu-desc, .abt.menu .price-chip-static {
  font-family: "Bonjour Quicksand", "Quicksand", "Noto Sans Thai", "Inter", sans-serif;
}

/* Menu hero: the shared fixed header previously sat across the title at smaller
   desktop widths. This page needs its own generous top clearance, rather than
   inheriting the generic hero's vertical centring. */
.abt.menu-hero {
  min-height: 760px;
  padding-top: 260px;
  padding-bottom: 150px;
}
.abt.menu-hero .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
.abt.menu-hero .menu-client-photo img {
  object-position: 51% 52%;
  transform: scale(1.02);
}

/* Product card grid */
.abt .menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abt .menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 28px -16px rgba(45, 55, 82, 0.18);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.abt .menu-item:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }

.abt .menu-item-hidden { display: none !important; }

.abt .menu-item-image {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
}
.abt .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abt .menu-item-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px;
  gap: 10px;
}

.abt .menu-item h3 {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
}

.abt .menu-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

.abt .menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.abt .price-chip-static {
  flex: 0 0 auto;
  font-family: "Bonjour Quicksand", "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
  background: var(--chip);
  padding: 9px 14px;
  border-radius: 30px;
  white-space: nowrap;
}

/* LINE button (shared with catering page) */
.abt .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06c755;
  color: #ffffff;
  border: none;
}
.abt .btn-line:hover { background: #05b34d; }
.abt .bg-yellow .btn-line {
  background: #ffffff;
  color: #06c755;
}
.abt .bg-yellow .btn-line:hover { background: #f4f4f4; }
.abt .btn-line-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 3px;
}
.abt .btn-line-icon img { width: 100%; height: 100%; display: block; }

.abt .btn-sm {
  padding: 9px 14px;
  font-size: 13px;
}

/* Category tabs */
.abt .menu-tabs-section {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: 0;
}

.abt .menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.abt .menu-tab {
  background: #ffffff;
  border: 2px solid var(--sky-deep);
  border-radius: 40px;
  color: var(--ink);
  cursor: pointer;
  font-family: "Bonjour Quicksand", "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.abt .menu-tab:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
}

.abt .menu-tab.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.abt .menu-category-section { display: block; }

/* Show more button */
.abt .show-more {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
}
.abt .show-more[hidden] { display: none; }

/* Wave fill helpers */
.abt .wave-bottom svg path[fill="#ffffff"] { fill: #ffffff; }
.abt .wave-bottom svg path[fill="#d4e4f7"] { fill: #d4e4f7; }

@media (max-width: 1200px) {
  .abt .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .abt .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .abt.menu-hero { min-height: auto; padding-top: 220px; padding-bottom: 112px; }
  .abt.menu-hero .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .abt.menu-hero { padding-top: 205px; padding-bottom: 92px; }
  .abt.menu-hero .hero-copy h1 { font-size: clamp(38px, 12vw, 48px); }
  .abt.menu-tabs { gap: 10px; }
  .abt.menu-tab { padding: 11px 18px; font-size: 15px; }
  .abt .menu-grid { grid-template-columns: 1fr; }
  .abt .menu-item-footer { flex-wrap: wrap; }
  .abt .btn-sm { flex: 1 1 auto; justify-content: center; }
}
