/* ===== Buns & Booze — shared styles ===== */

:root {
  --red: #E23A2E;
  --red-dark: #B92A20;
  --cream: #F4EFE6;
  --black: #1B1B1B;
  --yellow: #F7CE7C;
  --white: #FFFFFF;
  --gray: #6B6660;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--black);
  padding-top: var(--header-h);
}

h1, h2, h3, .display {
  font-family: 'Alfa Slab One', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--red);
  margin: 0;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Checker strip ---------- */
.checker-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 100vh;
  background-image:
    repeating-conic-gradient(var(--red) 0% 25%, var(--white) 0% 50%);
  background-size: 28px 28px;
  z-index: 5;
}

@media (max-width: 700px) {
  .checker-strip { width: 14px; background-size: 14px 14px; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 3px solid var(--black);
  display: flex;
  align-items: center;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: 0.5px;
}

.logo span { color: var(--black); }

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--black);
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 3px solid var(--black);
    transition: max-height 0.25s ease;
    z-index: 99;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 24px 48px;
  text-align: center;
}

.hero .mascot {
  font-size: 4rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.hero .tagline {
  margin: 18px auto 0;
  max-width: 520px;
  font-size: 1.1rem;
  color: var(--gray);
}

.hero .cta-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn.outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn.outline:hover { background: var(--red); color: var(--white); }

/* ---------- Sections / cards (home, about, contact, find-us) ---------- */
.section {
  padding: 56px 24px;
}

.section-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 760px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.card .icon { font-size: 2.2rem; margin-bottom: 12px; }

.card h3 { color: var(--black); font-size: 1.1rem; margin-bottom: 8px; }

.card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 24px 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

.site-footer h4 {
  font-family: 'Alfa Slab One', serif;
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 10px;
}

.site-footer p, .site-footer a { color: #ddd; font-size: 0.9rem; line-height: 1.6; }

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 18px;
}

/* ---------- Menu page ---------- */
.menu-subnav {
  position: sticky;
  top: var(--header-h);
  background: var(--white);
  border-bottom: 3px solid var(--black);
  z-index: 50;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 16px;
}

.menu-subnav a {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-right: 8px;
}

.menu-subnav a.active,
.menu-subnav a:hover {
  background: var(--red);
  color: var(--white);
}

.menu-intro {
  text-align: center;
  padding: 32px 24px 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.menu-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 8px;
  scroll-margin-top: calc(var(--header-h) + 60px);
}

.section-title-bar {
  display: inline-block;
  background: var(--yellow);
  padding: 4px 14px;
}

.section-title-bar h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.subsection { margin-top: 32px; }

.subsection-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.subsection-header h3 {
  color: var(--red);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.price-pill {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.item-grid.single-col { grid-template-columns: 1fr; }

@media (max-width: 600px) {
  .item-grid { grid-template-columns: 1fr; }
}

.item-name-only {
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
}

.item {
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 700;
}

.item-row .price { color: var(--red); white-space: nowrap; }

.item-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 4px;
}

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red-dark);
  border: 1px solid var(--red-dark);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
}

.promo-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.promo-line .label { font-weight: 600; }

.bottle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .bottle-grid { grid-template-columns: repeat(2, 1fr); }
}

.bottle-card {
  text-align: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 14px;
  padding: 18px 10px;
}

.bottle-card .emoji { font-size: 2rem; }

.bottle-card .name { font-weight: 700; font-size: 0.85rem; margin-top: 6px; }

.bottle-card .price { color: var(--red); font-weight: 700; margin-top: 4px; }

.footnote {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0 24px 40px;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}

/* ---------- Sticky CTA bar (menu page) ---------- */
.cta-bar {
  position: sticky;
  bottom: 0;
  background: var(--red);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 40;
}

.cta-bar a {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 2px solid var(--white);
  border-radius: 999px;
}

.cta-bar a:hover { background: var(--white); color: var(--red); }

/* ---------- Simple info page layout (about/contact/find-us) ---------- */
.info-hero {
  text-align: center;
  padding: 56px 24px 24px;
}

.info-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }

.info-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 56px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.info-body p { margin-bottom: 18px; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

@media (max-width: 700px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.detail-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 16px;
  padding: 28px;
}

.detail-card h3 {
  color: var(--red);
  font-family: 'Alfa Slab One', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.detail-card p { margin: 4px 0; color: var(--black); }

.detail-card .placeholder { color: var(--gray); font-style: italic; }

.map-embed {
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 2px solid var(--black);
  border-radius: 16px;
}
