/* =============================================
   TOP BAR (Ofis Bilgileri)
   ============================================= */
.top-bar {
  background: linear-gradient(90deg, #00c853, #7c3aed);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0;
  text-align: center;
  letter-spacing: 0.02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-bar .separator {
  opacity: 0.5;
}

/* Push navbar down for the top bar */
.navbar {
  top: 28px !important;
}

.hero {
  padding-top: 28px;
}

/* Mobile nav needs more top offset too */
.mobile-nav {
  padding-top: 80px !important;
}

@media(max-width: 768px) {
  .top-bar { font-size: 0.68rem; padding: 0.3rem 0; }
  .top-bar .container { gap: 0.4rem; }
  .top-bar .hide-mobile { display: none; }
  .navbar { top: 22px !important; }
  .hero { padding-top: 22px; }
}
