/* ===========================================================
   NGATUR WARNA SIDEBAR
   =========================================================== */

/* CONTAINER */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ITEM */
.sidebar-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 15px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;

  /* GRADASI MERAH → ORANGE */
  background: linear-gradient(135deg, #8B1E00, #B73A00, #E67E00);

  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
}

/* ICON STYLE */
.sidebar-menu .menu-item i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  color: #f1c40f;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER TOMBOL */
.sidebar-menu .menu-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 18px rgba(0,0,0,0.3);

  background: linear-gradient(135deg, #e6d700, #b76b00, #e6d700);
}
}

/* HOVER IKON (ANIMASI) */
.sidebar-menu .menu-item:hover i {
  transform: translateX(6px) scale(1.15) rotate(3deg);
}

/* ITEM KUNING (HEADER MENU) */
.sidebar-menu .menu-item.gold {
  background: linear-gradient(135deg, #d4b037, #b8962e);
  color: #083c34;
  font-weight: bold;
}

.sidebar-menu .menu-item.gold:hover {
  background: linear-gradient(135deg, #b8962e, #d4b037);
}




/* ===========================================================
   NGATUR BODY BACKGROUND 
   =========================================================== */
body {
    background-image: url("https://e-journal.iainptk.ac.id/public/site/images/adminejournal/chatgpt-image-apr-25-2026-02-59-52-pm.png") !important;

    background-repeat: repeat !important;   /* ini kunci utama */
    background-size: 520px !important;      /* kecilkan ukuran motif */
    background-position: top left !important;

    background-color: #ffffff !important;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.90);
    z-index: -1;
}
.pkp_structure_page,
.pkp_structure_main {
    background: transparent !important;
}



/* ===========================================================
   NGATUR TAMPILAN TERBITAN 
   =========================================================== */

.obj_issue_toc .articles .obj_article_summary {
    padding: 18px 22px !important;
    margin-bottom: 16px !important;

    background: linear-gradient(
        135deg,
        rgba(210, 176, 68, 0.10),   
        rgba(255, 255, 255, 0.96)
    ) !important;

    border: 1px solid rgba(210, 176, 68, 0.35) !important;
    border-left: 5px solid rgba(14, 82, 72, 0.6) !important;

    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;
	
	
	
