/* ══════════════════════════════════════════
   The Guilty Bar — Bar Profile Pages
   ══════════════════════════════════════════ */

:root {
  --bar-gold:   #c9a84c;
  --bar-amber:  #d4730a;
  --bar-text:   #f2e8d8;
  --bar-muted:  rgba(242,232,216,.65);
  --bar-bg:     rgba(255,255,255,.03);
  --bar-border: rgba(255,255,255,.08);
}

/* ── Hub hero ─────────────────────────────────────────────── */
.bars-hub-hero {
  background: linear-gradient(160deg, #0d0802 0%, #1a0f04 50%, #0d0802 100%);
  border-bottom: 1px solid var(--bar-border);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.bars-hub-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bar-gold);
  margin-bottom: .75rem;
}
.bars-hub-hero h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--bar-gold);
  margin: 0 0 .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bars-hub-hero p {
  color: var(--bar-muted);
  font-size: .95rem;
  margin: 0;
}

/* ── Hub filter bar ───────────────────────────────────────── */
.bars-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.75rem 0 1.25rem;
}
.bars-filter-btn {
  background: transparent;
  border: 1px solid var(--bar-border);
  color: var(--bar-muted);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.bars-filter-btn:hover { border-color: rgba(201,168,76,.4); color: var(--bar-gold); }
.bars-filter-btn.active { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.4); color: var(--bar-gold); }

/* ── Hub bar card ─────────────────────────────────────────── */
.hub-bar-card {
  display: flex;
  flex-direction: column;
  background: var(--bar-bg);
  border: 1px solid var(--bar-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s, transform .2s;
  height: 100%;
}
.hub-bar-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-2px); }
.hub-bar-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.hub-bar-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,6,2,.7));
}
.hub-bar-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.hub-bar-location {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bar-gold);
  margin-bottom: .35rem;
}
.hub-bar-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bar-text);
  margin-bottom: .3rem;
  line-height: 1.25;
}
.hub-bar-style {
  font-size: .78rem;
  color: var(--bar-muted);
  margin-bottom: .6rem;
  flex: 1;
  line-height: 1.5;
}
.hub-bar-count {
  font-size: .72rem;
  color: rgba(201,168,76,.6);
  font-weight: 600;
  border-top: 1px solid var(--bar-border);
  padding-top: .55rem;
  margin-top: auto;
}
.hub-bar-closed { font-size: .68rem; background: rgba(255,80,80,.1); border: 1px solid rgba(255,80,80,.2); color: rgba(255,140,140,.7); padding: .15rem .5rem; border-radius: 4px; margin-left: .5rem; }

/* ── Profile page hero ────────────────────────────────────── */
.bar-profile-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  overflow: hidden;
}
.bar-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45) saturate(.7);
}
.bar-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(10,6,2,.85) 100%);
}
.bar-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.bar-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--bar-gold);
  margin-bottom: .6rem;
}
.bar-profile-name {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--bar-gold);
  margin: 0 0 .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.1;
  text-wrap: balance;
}
.bar-tagline {
  font-size: .9rem;
  color: rgba(242,232,216,.7);
  margin: 0 0 1rem;
  font-style: italic;
}
.bar-accolade {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--bar-gold);
  padding: .25rem .7rem;
  border-radius: 16px;
  margin: .2rem .2rem 0 0;
}
.bar-closed-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  background: rgba(255,80,80,.12);
  border: 1px solid rgba(255,80,80,.25);
  color: rgba(255,140,140,.8);
  padding: .25rem .7rem;
  border-radius: 16px;
  margin: .2rem .2rem 0 0;
}

/* ── Profile page body ────────────────────────────────────── */
.bar-section-h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bar-text);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--bar-border);
}
.bar-body-text {
  color: var(--bar-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.bar-body-text:last-child { margin-bottom: 0; }

/* ── Sidebar info card ────────────────────────────────────── */
.bar-info-card {
  background: var(--bar-bg);
  border: 1px solid var(--bar-border);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  position: sticky;
  top: 90px;
}
.bar-info-label {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(242,232,216,.3);
  margin-top: .75rem;
  margin-bottom: .18rem;
}
.bar-info-label:first-child { margin-top: 0; }
.bar-info-value {
  font-size: .84rem;
  color: var(--bar-muted);
  line-height: 1.5;
}
.bar-visit-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.28);
  color: var(--bar-gold);
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: background .2s;
  letter-spacing: .03em;
}
.bar-visit-btn:hover { background: rgba(201,168,76,.18); color: var(--bar-gold); }
.bar-closed-note {
  background: rgba(255,80,80,.06);
  border: 1px solid rgba(255,80,80,.15);
  border-radius: 8px;
  padding: .75rem 1rem;
  margin-top: 1.25rem;
  font-size: .78rem;
  color: rgba(255,140,140,.7);
  line-height: 1.5;
  text-align: center;
}

/* ── Drink cards ──────────────────────────────────────────── */
.bar-drinks-sub {
  font-size: .82rem;
  color: var(--bar-muted);
  margin-bottom: 1.25rem;
}
.bar-drink-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem .9rem;
  background: var(--bar-bg);
  border: 1px solid var(--bar-border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.bar-drink-card:hover { border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.04); }
.bar-drink-emoji { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.bar-drink-info { flex: 1; min-width: 0; }
.bar-drink-name {
  font-size: .86rem;
  font-weight: 600;
  color: var(--bar-text);
  margin-bottom: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-drink-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bar-drink-cat.cat-ic  { color: rgba(212,115,10,.8); }
.bar-drink-cat.cat-mt  { color: rgba(232,148,26,.8); }
.bar-drink-arrow { color: rgba(201,168,76,.4); font-size: .75rem; flex-shrink: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .bar-info-card { position: static; }
  .bar-profile-hero { min-height: 280px; }
}
@media (max-width: 575px) {
  .bar-profile-name { font-size: 1.9rem; }
  .bars-filter-bar { gap: .35rem; }
  .bars-filter-btn { font-size: .72rem; padding: .28rem .7rem; }
}
