.site-branding {
  display: flex;
  align-items: center;
  gap: 12px; /* jarak logo dan title */
}

.custom-logo-link img {
  width: 60px;
}

.site-title a {
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

.site-header {
  top: 45px;
  background: rgba(10, 10, 10, 0.1);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
}

/* =========================
   TOP BAR BASE
========================= */
.top-bar {
  width: 100%;
  position: fixed;
  background: rgba(10, 10, 10, 0.1);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  top: 0;
  z-index: 9999;
}

.top-bar.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
}

/* LAYOUT */
.top-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */
.top-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddd;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s ease;
}

.top-item i {
  font-size: 13px;
  opacity: 0.8;
}

/* Hover lebih halus */
.top-item:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* =========================
   RIGHT SIDE (SOCIAL)
========================= */
.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON SOCIAL (modern circle) */
.top-right .social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover effect lebih modern */
.top-right .social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .site-header {
    top: 0px;
  }

  .top-bar {
    display: none !important;
  }

  .top-bar-wrap {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-left {
    flex-direction: column;
    gap: 4px;
  }

  .top-right {
    justify-content: center;
  }
}