
.menu-samping {
  background: linear-gradient(135deg, #5bbcf3 0%, #2EA4E6 100%);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
  font-weight: 550;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(45, 47, 152, 0.12);
  transition: all 0.25s ease;
}

.menu-samping:hover {
  transform: translateY(-4px);
  color: #ffffff;
  background: linear-gradient(135deg, #3a3cc0 0%, #5a5ed5 100%);
  box-shadow: 0 12px 30px rgba(45, 47, 152, 0.25);
}

/* ===== SEAMLESS JOURNAL HEADER ===== */
.journal-top-banner {
  background: linear-gradient(
    to bottom,
    #5bbcf3 0%,
    #2EA4E6 100%,
    #2fa4e7 0%
  );
  color: #ffffff;
}

/* Container */
.journal-top-inner {
  max-width: 2000px;
  margin: 0 auto;
  padding: 26px 20px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
}

/* KIRI */
.jtb-left img {
  max-height: 64px;
}

/* TENGAH */
.jtb-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0;
  width: max-content;
}


/* JUDUL UTAMA */
.jtb-title {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;

  /* Shadow halus seperti contoh */
  text-shadow:
    0 3px 6px rgba(0, 0, 0, 0.25);
}

/* SUBTITLE */
.jtb-subtitle {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.95;
}

.jtb-subtitle {
  position: relative;
}

.jtb-subtitle::after {
  content: "";
  display: block;
  margin: 8px auto 0;

  /* Bentuk lonjong */
  width: 180px;
  height: 10px;

  /* Warna bayangan */
  background: rgba(0, 0, 0, 0.35);

  /* KUNCI agar tidak petak */
  border-radius: 50%;

  /* Blur besar agar lembut */
  filter: blur(10px);

  /* Opsional: lebih natural */
  opacity: 0.7;
}


/* KANAN */
.jtb-right {
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}

/* ===== REMOVE NAVBAR SEPARATOR ===== */
/* #headerNavigationContainer.navbar {
  background: linear-gradient(
    to bottom,
    #42AFEC 0%,
    #2797d6 100%
  );
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
} */

#headerNavigationContainer.navbar {
    background: linear-gradient(to bottom, #42AFEC 0%, #2797d6 100%);
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Hilangkan garis putih kecil */
#headerNavigationContainer .container-fluid {
  border-top: none !important;
}

.journal-top-banner {
  position: relative;
  z-index: 2;
}

#headerNavigationContainer {
  position: relative;
  z-index: 1;
}

/* Shadow keseluruhan header */
.journal-top-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18),
    transparent
  );
}

@media (max-width: 768px) {
  .journal-top-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .jtb-center {
    position: static;
    transform: none;
    width: auto;
  }

  .jtb-right {
    text-align: center;
  }

  .jtb-title {
    font-size: 34px;
    letter-spacing: 4px;
  }
}

@media (min-width: 1200px) {
    .container {
        width: 1320px;
    }
}

