﻿/* ============================================================
   BBQ Template — Print stylesheet (menu page)
   Loads only when printing or saving as PDF
   ============================================================ */

@media print {

  /* ── Reset to clean black on white ── */
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* ── Hide everything that shouldn't print ── */
  .site-header,
  .announce-bar,
  .mobile-cta-bar,
  .site-footer,
  .page-shell > .site-header,
  nav,
  .btn,
  .btn-fire,
  .btn-outline,
  .btn-gold,
  .hero,
  .menu-hero,
  .section-label,
  .print-btn,
  .back-to-top,
  #main .wrap > div {
    display: none !important;
  }

  /* ── Page setup ── */
  @page {
    margin: 1.5cm 1.8cm;
    size: letter portrait;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11pt;
    line-height: 1.5;
  }

  /* ── Restaurant header at top of print ── */
  #main .wrap::before {
    content: "BBQ Template — [Your Address] — [(000) 000-0000]";
    display: block;
    text-align: center;
    font-size: 10pt;
    font-style: italic;
    border-bottom: 2px solid #000;
    padding-bottom: 6pt;
    margin-bottom: 18pt;
  }

  /* ── Menu sections ── */
  .menu-section {
    margin-bottom: 18pt;
    page-break-inside: avoid;
  }

  .menu-section-head h2 {
    font-size: 14pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid #000;
    padding-bottom: 4pt;
    margin-bottom: 8pt;
  }

  /* ── Menu items — two column layout on print ── */
  .menu-items-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 6pt 18pt;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu-item {
    page-break-inside: avoid;
  }

  .menu-item-name {
    font-weight: bold;
    font-size: 11pt;
  }

  .menu-item-price {
    font-weight: bold;
  }

  .menu-item-desc {
    font-size: 9.5pt;
    color: #333 !important;
  }

  /* ── Footer on every print page ── */
  #main .wrap::after {
    content: "Call for daily specials, hours, and catering";
    display: block;
    text-align: center;
    font-size: 9pt;
    border-top: 1px solid #aaa;
    padding-top: 6pt;
    margin-top: 24pt;
  }

  /* ── Links — show URL in parens ── */
  a[href]::after {
    content: none;
  }
}
