/* ============================================================
   MOOD HOUSE — Top Bar
   ============================================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: var(--color-bg-dark);
  z-index: var(--z-topbar);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
}
.topbar-left a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.topbar-left a:hover { color: var(--color-gold); }
.topbar-left svg  { width: 13px; height: 13px; flex-shrink: 0; }

.topbar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}

.topbar-center {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-center a {
  color: var(--color-gold);
  transition: opacity var(--transition-fast);
}
.topbar-center a:hover { opacity: 0.8; }
.topbar-center svg { width: 13px; height: 13px; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-social a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
}
.topbar-social a:hover { color: var(--color-gold); }
.topbar-social svg { width: 15px; height: 15px; }

.topbar-book-btn {
  padding: 6px 18px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}
.topbar-book-btn:hover { opacity: 0.88; }

@media (max-width: 1024px) {
  .topbar-center { display: none; }
}
@media (max-width: 768px) {
  .topbar-left  { display: none; }
  .topbar-inner { justify-content: flex-end; }
}
