/* catering.css — layout-only additions for the CATERING page.
   Reuses menu tokens/components from styles.css (.menu-item, .price, etc.);
   this file only adds the two-column package grid, the "not charged until
   confirmed" notice, and the Price-TBD placeholder. Loaded on catering.html
   only, so existing pages are unaffected. */

/* Deferred-charge notice above the packages. */
.catering-notice {
  margin: 1rem 0 1.75rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--c-gold);
  border-left-width: 4px;
  border-radius: 10px;
  background: rgba(243, 178, 74, 0.08);
  color: var(--c-ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Two-column package grid mirroring the owner's sample sheet. */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.catering-col > .catering-section:first-child { padding-top: 0.5rem; }

/* Tighter section rhythm than the main menu (no banners here). */
.catering-section { padding-top: 1.75rem; }
.catering-section > h2 {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--c-primary);
}

/* Price-TBD placeholder (Brownie Platter until the owner provides a price). */
.price--tbd {
  color: var(--c-muted);
  font-style: italic;
  font-weight: 500;
}

/* Stack to one column on narrow screens. */
@media (max-width: 820px) {
  .catering-grid { grid-template-columns: 1fr; gap: 0.5rem; }
}
