/* ─── Big Pour custom styles ─── */

:root {
  --pour-yellow: #f5a623;
  --pour-dark:   #1a1a2e;
}

body {
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ── Navbar brand ── */
.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: .5px;
}

/* ── Bar search result cards ── */
.bar-card {
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: default;
}
.bar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.12) !important;
}

/* ── Star picker ── */
.star-picker {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.star-btn {
  background: none;
  border: none;
  padding: .1rem .2rem;
  cursor: pointer;
  color: #ccc;
  transition: color .1s, transform .1s;
  line-height: 1;
}

.star-btn:hover,
.star-btn.active {
  color: var(--pour-yellow);
  transform: scale(1.15);
}

/* ── Bar hero photo ── */
.bar-hero-photo {
  width: 100%;
  height: auto;
  border-radius: .75rem;
  display: block;
}

/* ── Rating badge pill ── */
.rating-pill {
  font-size: .75rem;
  padding: .25em .6em;
}

/* ── Spinner overlay ── */
#loadingSpinner {
  display: none;
}
#loadingSpinner.show {
  display: block;
}

/* ── Leaderboard table rounded corners ── */
.table-responsive > .table {
  border-radius: .5rem;
}

/* ── Mobile tweaks ── */
@media (max-width: 576px) {
  .display-5 { font-size: 1.8rem; }
  .star-btn i { font-size: 1.6rem !important; }
}
