/* ═══════════════════════════════════════════════════════════════════
   Happy Hour Map — BLOG pages — light "daylight" variant (cities use pages.css dark)
   "The bar at night" neon-sign identity (matches styles.css).
   NOTE: enhancer-generated inline styles reference these :root vars
   (--border, --orange, --accent, --bg-card, --radius, --text-dim…) —
   keep every var name defined so regenerated pages restyle for free.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --bg: #faf5e9;
  --bg-alt: #f3ecdb;
  --bg-card: #fffdf4;
  --border: #ddd2b8;
  --text: #1e2b27;
  --text-dim: #55685f;
  --text-muted: #8a998f;
  --teal: #0e9c8d;
  --teal-bright: #0b7f73;
  --orange: #e07000;
  --accent: #0e9c8d;
  --amber-soft: #c96400;
  --gradient: linear-gradient(120deg, #0e9c8d 0%, #0b7f73 45%, #e07000 100%);
  --glow-teal-text: 0 0 1px rgba(11,127,115,.9), 0 0 12px rgba(14,156,141,.55), 0 0 34px rgba(14,156,141,.30);
  --glow-amber-text: 0 0 1px rgba(201,100,0,.9), 0 0 12px rgba(224,112,0,.55), 0 0 36px rgba(224,112,0,.32);
  --shadow-brand: 0 0 0 1px rgba(14,156,141,.22), 0 10px 44px -12px rgba(14,156,141,.38);
  --shadow-brand-hover: 0 0 0 1px rgba(14,156,141,.45), 0 16px 60px -14px rgba(14,156,141,.55);
  --font-display: 'Big Shoulders', 'Arial Narrow', sans-serif;
  --font-script: 'Mr Dafoe', cursive;
  --font-body: 'Karla', 'Segoe UI', sans-serif;
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='128'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(80rem 40rem at 88% -6%, rgba(224,112,0,.07) 0%, transparent 60%),
    radial-gradient(70rem 42rem at -10% 26%, rgba(14,156,141,.055) 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

::selection { background: var(--orange); color: #12100a; }

a { color: var(--teal-bright); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Header */
header {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 233, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text);
  text-shadow: 0 0 14px rgba(14,156,141,.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(14,156,141,.45));
}
.logo span {
  color: var(--amber-soft);
  text-shadow: var(--glow-amber-text);
}
nav a {
  margin-left: 26px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
nav a:hover { color: var(--teal-bright); text-shadow: var(--glow-teal-text); }

/* Hero */
.hero {
  text-align: center;
  padding: 90px 0 60px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05em;
  padding: 0 0.12em;
  color: var(--amber-soft);
  text-shadow: var(--glow-amber-text);
  transform: rotate(-2deg) translateY(-0.14em);
}
.hero p {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 36px;
}

/* Buttons */
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff8ea;
  box-shadow: 0 0 24px -8px rgba(224, 112, 0, 0.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--amber-soft);
  box-shadow: 0 0 34px -8px rgba(224, 112, 0, 0.85);
  color: #fff8ea;
}
.btn-secondary {
  background: transparent;
  color: var(--teal-bright);
  border: 1px solid rgba(14,156,141,.5);
  box-shadow: 0 0 16px -6px rgba(14,156,141,.4);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 0 24px -6px rgba(14,156,141,.6);
  color: var(--teal-bright);
}

/* Store badges (official look — keep native) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff !important;
  border: 1px solid #a6a6a6;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 180px;
  text-decoration: none;
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: #fff;
  box-shadow: 0 14px 40px -10px rgba(224, 112, 0, 0.4);
  color: #fff !important;
}
.store-badge-icon { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1; }
.store-badge-line1 { font-size: 11px; font-weight: 400; margin-bottom: 4px; }
.store-badge-android .store-badge-line1 { font-size: 10px; letter-spacing: 1px; }
.store-badge-line2 { font-size: 19px; font-weight: 600; letter-spacing: -0.5px; }

/* Stats strip */
.stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-shadow: var(--glow-teal-text);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--orange);
  margin-top: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Section titles */
.section-title {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 36px;
}

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 70px;
}
.city-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.city-card:hover {
  border-color: rgba(14,156,141,.6);
  transform: none;
  box-shadow: 0 0 20px -6px rgba(14,156,141,.45), inset 0 0 12px -8px rgba(14,156,141,.5);
}
.city-card:hover h3 { color: var(--teal-bright); text-shadow: var(--glow-teal-text); }
.city-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
  color: var(--text);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.city-card .count {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.city-card .state { color: var(--text-muted); font-size: 12px; letter-spacing: 0.12em; }

/* Deal cards — menu-board rows. Entire card is a stretched link to the
   homepage hero; the owner "claim" link sits above it via z-index. */
.deal-list { margin-bottom: 70px; }
.deal-card {
  position: relative;
  background: transparent;
  border: none;
  border-bottom: 1px dashed var(--border);
  border-radius: 0;
  padding: 18px 6px 14px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.deal-card:hover {
  border-color: var(--border);
  transform: none;
  box-shadow: none;
  background: rgba(14, 156, 141, 0.035);
}
.deal-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
.deal-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0;
}
.deal-card-info { position: relative; z-index: 0; }
.deal-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.deal-card:hover .deal-name { color: var(--teal-bright); text-shadow: var(--glow-teal-text); }
.deal-time { color: var(--text-dim); font-size: 14px; margin-top: 2px; }
.deal-tag {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid rgba(224, 112, 0, 0.5);
  box-shadow: 0 0 14px -5px rgba(224,112,0,.5), inset 0 0 10px -6px rgba(224,112,0,.4);
  pointer-events: none;
}
.deal-claim-row {
  flex: 0 0 100%;
  margin-top: 4px;
  padding-top: 10px;
  border-top: none;
  display: flex;
  justify-content: flex-end;
}
.deal-claim {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0 4px 12px;
}
.deal-claim:hover { color: var(--orange); }

/* "Looking for more?" inline link below the deal list */
.deal-more-link {
  margin: 20px 0 32px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
}
.deal-more-link a {
  color: var(--teal-bright);
  font-weight: 700;
  text-decoration: none;
}
.deal-more-link a:hover { color: var(--orange); }
.deal-premium-badge {
  display: inline-block;
  margin-left: 8px;
  background: var(--orange);
  color: #fff8ea;
  font-size: 0.62em;
  font-family: var(--font-body);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: 0.14em;
  vertical-align: middle;
  box-shadow: 0 0 14px -4px rgba(224,112,0,.6);
}

/* Premium subscriber spotlight — the backlit amber sign box */
.premium-spotlight {
  position: relative;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(224, 112, 0, 0.12) 0%, rgba(224, 112, 0, 0) 55%),
    radial-gradient(100% 80% at 100% 100%, rgba(14, 156, 141, 0.06) 0%, rgba(14, 156, 141, 0) 60%),
    #fff6e3;
  border: 1px solid rgba(224, 112, 0, 0.6);
  border-radius: var(--radius);
  padding: 28px 32px 26px;
  margin: 0 0 40px;
  box-shadow:
    0 0 0 1px rgba(224,112,0,.18),
    0 0 54px -14px rgba(224, 112, 0, 0.55),
    inset 0 0 40px -22px rgba(224, 112, 0, 0.6);
  overflow: hidden;
}
.premium-spotlight::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 16px rgba(224,112,0,.7);
}
.premium-spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
  background: transparent;
  border: 1px solid rgba(224, 112, 0, 0.45);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  box-shadow: 0 0 14px -5px rgba(224,112,0,.5);
}
.premium-spotlight-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--amber-soft);
  text-shadow: var(--glow-amber-text);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.premium-spotlight-pin { font-size: 0.9em; line-height: 1; }
.premium-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 20px;
}
.premium-spotlight-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 3px;
}
.premium-spotlight-headline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--orange);
  border: 1px solid rgba(224, 112, 0, 0.45);
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 14px -5px rgba(224,112,0,.4);
}
.premium-spotlight-specials-wrap {
  background: rgba(0, 0, 0, 0.015);
  border: 1px dashed rgba(224, 112, 0, 0.3);
  border-radius: 4px;
  padding: 16px 20px 18px;
  margin-bottom: 20px;
}
.premium-spotlight-specials-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.premium-spotlight-specials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px 24px;
}
.premium-spotlight-specials li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  list-style: none;
}
.premium-spotlight-specials li::before {
  content: '🍸';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
}
.premium-spotlight-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(224, 112, 0, 0.2);
}
.premium-spotlight-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.4;
}
.premium-spotlight-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.premium-spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.premium-spotlight-btn-primary {
  background: var(--orange);
  color: #fff8ea;
  border: 1px solid var(--orange);
  box-shadow: 0 0 20px -6px rgba(224,112,0,.6);
}
.premium-spotlight-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px -6px rgba(224, 112, 0, 0.8);
  color: #fff8ea;
}
.premium-spotlight-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.premium-spotlight-btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.article .premium-spotlight { margin: 28px 0 40px; }
.article .premium-spotlight-specials li {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .premium-spotlight { padding: 22px 20px 20px; }
  .premium-spotlight-name { font-size: 26px; gap: 8px; }
  .premium-spotlight-footer { flex-direction: column; align-items: flex-start; }
  .premium-spotlight-actions { width: 100%; }
  .premium-spotlight-btn { flex: 1; justify-content: center; }
}

/* Placeholder Featured Partner spotlight */
.premium-spotlight-placeholder {
  border-style: dashed;
  border-color: rgba(224, 112, 0, 0.7);
  padding-top: 64px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.premium-spotlight-placeholder:hover {
  border-color: var(--orange);
  transform: none;
  box-shadow:
    0 0 0 1px rgba(224,112,0,.3),
    0 0 64px -14px rgba(224, 112, 0, 0.65),
    inset 0 0 44px -22px rgba(224, 112, 0, 0.7);
}
.premium-spotlight-placeholder::before { display: none; }
.premium-spotlight-stretched {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: var(--radius);
}
.premium-spotlight-placeholder-banner {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--orange);
  color: #fff8ea;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  padding: 12px 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 0 24px -4px rgba(224, 112, 0, 0.6);
}
.premium-spotlight-placeholder-content {
  opacity: 0.55;
  transition: opacity 0.25s ease;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.premium-spotlight-placeholder:hover .premium-spotlight-placeholder-content { opacity: 0.75; }
.premium-spotlight-placeholder .premium-spotlight-btn-primary { cursor: pointer; }

@media (max-width: 640px) {
  .premium-spotlight-placeholder { padding-top: 60px; }
  .premium-spotlight-placeholder-banner { font-size: 13px; padding: 11px 14px; letter-spacing: 0.08em; }
}

/* Blog cards — gig-poster listing rows */
.blog-card {
  display: block;
  background: transparent;
  border: none;
  border-bottom: 1px dashed var(--border);
  border-radius: 0;
  padding: 28px 6px;
  margin-bottom: 0;
  transition: background 0.2s ease;
  color: var(--text);
}
.blog-card:hover {
  border-color: var(--border);
  transform: none;
  box-shadow: none;
  background: rgba(14, 156, 141, 0.035);
  color: var(--text);
}
.blog-card:hover h3 { color: var(--teal-bright); text-shadow: var(--glow-teal-text); }
.blog-card h3 {
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--text);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.blog-card p { color: var(--text-dim); font-size: 15px; }
.blog-date {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Article */
.article { max-width: 760px; margin: 0 auto; padding: 60px 24px; position: relative; z-index: 2; }
.article h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
}
.article h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  margin: 44px 0 14px;
  color: var(--amber-soft);
  text-shadow: 0 0 14px rgba(224,112,0,.35);
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}
.article p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.article ul { margin: 0 0 20px 24px; }
.article li { color: var(--text-dim); font-size: 16px; margin-bottom: 8px; line-height: 1.6; }
.article .highlight {
  background: rgba(14, 156, 141, 0.05);
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
  box-shadow: inset 0 0 30px -18px rgba(14,156,141,.5);
}
.article .highlight p { margin: 0; color: var(--text); }
.article strong { color: var(--text); }
.article a { color: var(--teal-bright); }
.article a:hover { color: var(--orange); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--bg-alt);
  position: relative;
  z-index: 2;
}
footer::before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(14,156,141,.5) 50%, transparent 95%);
  box-shadow: 0 0 12px rgba(14,156,141,.35);
}
footer a { color: var(--text-dim); margin: 0 14px; }
footer a:hover { color: var(--teal-bright); }

/* Responsive */
@media (max-width: 760px) {
  .hero { padding: 60px 0 40px; }
  .stats { gap: 32px; padding: 36px 0; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  nav a { margin-left: 14px; font-size: 12px; }
  .deal-name { font-size: 18px; }
  .logo { font-size: 16px; white-space: nowrap; }
  .logo-icon { width: 28px; height: 28px; }
}
