/* ==========================================================================
   The Saloon KC — site styles
   Palette and type carried over from the previous Elementor build.
   ========================================================================== */

:root {
  --brand-dark:   #311f16;  /* logo brown          */
  --brand-gold:   #d6bb80;  /* accent / nav rule   */
  --brand-red:    #b71c1c;  /* menu panels         */
  --brand-gold-2: #ffd54f;  /* headings on red     */
  --local-blue:   #1976d2;  /* "local" marker      */
  --local-blue-2: #90caf9;  /* same, on red        */

  --ink:        #2c2c2c;
  --ink-soft:   #333;
  --ink-mute:   #7a7a7a;
  --nav-ink:    #2a302f;
  --nav-active: #e22658;

  --page:       #fff;
  --rule:       #888;

  --font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-menu: Arial, Helvetica, sans-serif;

  --wrap: 1140px;
  --menu-wrap: 900px;
}

/* ---------- reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mute);
  background: var(--page);
  -webkit-font-smoothing: antialiased;

  /* Sticky footer: short pages still push the footer to the bottom. */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@supports (min-height: 100dvh) {
  body { min-height: 100dvh; }
}

body > header,
body > footer { flex: none; }

main { flex: 1 0 auto; }

img { max-width: 100%; height: auto; display: block; border: 0; }

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; }

p { margin: 0 0 1em; }

hr { border: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--nav-active); outline-offset: 3px; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  padding: 14px 20px;
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo { flex: none; }
.site-logo img { width: 102px; height: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--nav-ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: relative; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 5px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-5px) rotate(-45deg); }

.site-nav { margin-left: auto; }

.site-nav ul {
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--nav-ink);
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.site-nav a:hover { color: var(--nav-active); }

.site-nav a[aria-current="page"] {
  color: var(--nav-active);
  border-bottom-color: var(--brand-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px dashed #ddd;
  padding: 26px 20px;
  margin-top: 40px;
}

.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__credit {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mute);
}
.site-footer__credit .heart { color: #e0405d; font-style: normal; }

.social { display: flex; gap: 20px; }

/* The original site rendered these icons with no link target, so they stay
   non-interactive here. Swap each <span> for an <a href="..."> to enable. */
.social__icon {
  width: 18px;
  height: 18px;
  color: #b9b9b9;
  display: block;
}
.social__icon svg { width: 100%; height: 100%; fill: currentColor; display: block; }

/* ==========================================================================
   Generic page furniture
   ========================================================================== */

.page-title {
  max-width: var(--wrap);
  margin: 34px auto 0;
  padding: 0 20px;
  font-size: 49px;
  text-align: center;
  color: var(--ink);
}

.page-lead {
  max-width: var(--wrap);
  margin: 14px auto 0;
  padding: 0 20px;
  text-align: center;
}

.page-lead a { color: var(--nav-active); }

.text-link { color: var(--nav-active); }

.empty-state {
  max-width: var(--wrap);
  margin: 14px auto 0;
  padding: 0 20px 20px;
  text-align: center;
  color: var(--ink-soft);
}

/* ==========================================================================
   Home
   ========================================================================== */

.hero {
  position: relative;
  padding: 60px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/saloon-badge.png") no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
}

.hero__inner { position: relative; max-width: 620px; margin: 0 auto; }

.hero__wordmark { width: 580px; max-width: 100%; margin: 0 auto 34px; }

.hero__title {
  font-size: 40px;
  color: var(--ink);
  margin-bottom: 26px;
}

.hero__cta { font-size: 18px; color: var(--nav-active); }

/* ==========================================================================
   Locations
   ========================================================================== */

.locations {
  position: relative;
  padding: 40px 20px 60px;
  overflow: hidden;
}

.locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/saloon-badge.png") no-repeat center / contain;
  opacity: .07;
  pointer-events: none;
}

.locations__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.location {
  flex: 1 1 320px;
  max-width: 420px;
  text-align: center;
}

.location__name {
  font-size: 36px;
  color: var(--ink-mute);
  margin-bottom: 22px;
}

.location__flag {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 14px;
}

.location address {
  font-style: normal;
  margin: 0 0 22px;
}

.location__hours p { margin: 0 0 18px; }
.location__hours dt { font-weight: 400; }
.location__hours dd { margin: 0; }

.location__cta { margin-top: 24px; }
.location__cta a { color: var(--nav-active); }

/* ==========================================================================
   Entertainment
   ========================================================================== */

.month-nav {
  margin: 10px 0 34px;
  text-align: center;
  font-size: 18px;
}

.month-nav a { color: var(--nav-active); text-decoration: none; }
.month-nav a:hover { text-decoration: underline; }
.month-nav span[aria-hidden] { color: var(--ink-mute); margin: 0 8px; }

.flyers {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.flyer { margin: 0 0 50px; scroll-margin-top: 20px; }
.flyer img { margin: 0 auto; }
.flyer figcaption {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: var(--ink-mute);
}

/* ==========================================================================
   Drink menu
   ========================================================================== */

.menu-sec {
  max-width: var(--menu-wrap);
  margin: 40px auto;
  padding: 20px;
  font-family: var(--font-menu);
  color: var(--ink-soft);
}

.menu-sec__title {
  margin: 40px 0;
  font-size: 72px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
}
.menu-sec__title--sm { font-size: 64px; letter-spacing: 2px; margin: 40px 0 20px; }

/* red band under HAPPY HOUR */
.hours-banner {
  margin: 20px 0;
  padding: 15px;
  background: var(--brand-red);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

/* red section heads: DRAFT, WHITE, VODKA … */
.menu-group {
  margin: 30px 0 20px;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.menu-group--dark { color: var(--ink); }
.menu-group--on-red { color: #fff; }

/* the smaller uppercase heads inside HAPPY HOUR */
.menu-sec#happy-hour .menu-group {
  font-size: 32px;
  margin: 30px 0 10px;
  color: var(--ink);
}

/* centered tier heads in the pairings section */
.menu-tier {
  margin: 40px 0 25px;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---- items (cocktails, flights, pairings) ---- */

.item { margin-bottom: 30px; }

.item__name {
  margin-bottom: 10px;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--ink);
}
.item__name--red { color: var(--brand-red); }

.item p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 10px;
}
.item p:last-child { margin-bottom: 0; }

/* full-bleed red callout rows */
.item--feature {
  margin: 15px -20px;
  padding: 20px;
  background: var(--brand-red);
  color: #fff;
}
.item--feature .item__name { color: var(--brand-gold-2); }

/* pairing items sit in a grid, so they need tighter type */
.cols-2 .item__name { font-size: 26px; }
.cols-2 .item p { font-size: 17px; line-height: 1.5; }

/* ---- red panel (BOTTLES/CANS) ---- */

.panel--red {
  margin: 0 -20px;
  padding: 30px;
  background: var(--brand-red);
  color: #fff;
}

/* ---- happy hour bits ---- */

.beer-list { font-size: 18px; line-height: 1.6; margin-bottom: 30px; }
.price-info { font-size: 20px; margin: 10px 0; }
.special-details { font-size: 18px; line-height: 1.5; }
.special-day { margin-bottom: 30px; }
.special-day .item__name { font-size: 32px; color: var(--brand-red); margin-bottom: 10px; }

/* ---- lists, rows, layout helpers ---- */

.menu-block { margin-bottom: 40px; }

.menu-list { font-size: 20px; line-height: 1.8; }
.panel--red .menu-list { line-height: 1.8; }

.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.menu-sec#liquors .cols-2 { gap: 60px; }
.menu-sec#pairings .cols-2 { margin-bottom: 20px; }

.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
}
.row__price {
  white-space: nowrap;
  text-align: right;
  min-width: 100px;
}

.menu-colhead {
  margin-bottom: 30px;
  font-size: 20px;
  font-style: italic;
  text-align: right;
}

.menu-intro {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}
.menu-intro--alt {
  font-size: 18px;
  font-style: italic;
  color: var(--brand-red);
}
.menu-sec#non-alcoholic .menu-intro--alt { color: var(--ink-soft); font-style: normal; font-size: 20px; }

.menu-note { font-size: 18px; font-style: italic; margin: 10px 0; }
.note-inline { font-size: 18px; font-style: italic; }

.menu-rule {
  border-bottom: 2px dotted var(--rule);
  margin: 40px 0;
  height: 0;
}

.menu-legend { margin-top: 40px; text-align: center; }
.menu-legend__line { font-size: 16px; margin: 0; }

.mark { font-style: normal; }
.mark--local { color: var(--local-blue); }
.panel--red .mark--local { color: var(--local-blue-2); }
.mark--na { display: inline-block; padding: 2px 6px; font-size: 14px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .page-title { font-size: 40px; }
  .hero__title { font-size: 32px; }
}

@media (max-width: 782px) {
  .nav-toggle { display: block; }

  .site-header__inner { flex-wrap: wrap; }

  .site-nav {
    flex-basis: 100%;
    margin-left: 0;
    display: none;
  }
  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 4px;
  }

  .site-nav li + li { border-top: 1px solid #eee; }

  .site-nav a {
    padding: 12px 2px;
    border-bottom: 0;
    border-left: 4px solid transparent;
    padding-left: 12px;
  }
  .site-nav a[aria-current="page"] { border-left-color: var(--brand-gold); }
}

@media (max-width: 768px) {
  .menu-sec__title { font-size: 48px; }
  .menu-sec__title--sm { font-size: 42px; }
  .menu-group { font-size: 36px; }
  .hours-banner { font-size: 18px; }

  .cols-2 { grid-template-columns: 1fr; gap: 30px; }

  .row { flex-direction: column; gap: 4px; }
  .row__price { text-align: left; min-width: 0; align-self: flex-start; }

  .locations__inner { gap: 44px; }
}

@media (max-width: 480px) {
  .menu-sec__title { font-size: 38px; letter-spacing: 1px; }
  .item__name { font-size: 26px; }
  .hero__title { font-size: 28px; }
  .page-title { font-size: 34px; }
}

/* ==========================================================================
   Print — the drink menu is the page people actually print
   ========================================================================== */

@media print {
  .site-header, .site-footer, .page-lead, .month-nav, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
  .menu-sec { margin: 0 auto; page-break-inside: auto; }
  .menu-sec__title { font-size: 30pt; page-break-after: avoid; }
  .menu-group { font-size: 20pt; page-break-after: avoid; }
  .item, .row { page-break-inside: avoid; }
  .item--feature, .panel--red { background: none !important; color: #000 !important; }
  .item--feature .item__name { color: #000 !important; }
}
