/* Shared chrome for /contoh design-example pages — kept separate from style.css
   so each concept page can define its own theme without fighting the main site vars. */

.demo-topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1.25rem;
  background: #12142B;
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .85rem;
}
.demo-topbar a.demo-back{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: .9;
  transition: opacity .2s ease;
}
.demo-topbar a.demo-back:hover{ opacity: 1; }
.demo-topbar .demo-tag{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .3rem .7rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: .02em;
}
.demo-topbar .demo-cta{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  color: #12142B !important;
  padding: .4rem .9rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 576px){
  .demo-topbar{ font-size: .75rem; padding: .6rem .9rem; }
  .demo-topbar .demo-cta span{ display: none; }
}
