/* ===========================
   FONT IMPORT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* ===========================
   KODE ASLI ANDA (DIPERTAHANKAN)
=========================== */

.journals ul .body .description a {
    display: inline;
}

#headerNavigationContainer {
    max-height: none;
}

.pkp_site_name {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pkp_site_name > a {
    padding-top: 0;
    padding-bottom: 0;
}

/* INI DIPERTAHANKAN → KUNCI HEADER PAS */
.pkp_site_name .is_img img {
    max-height: 200px !important;
    width: auto;
    height: auto;
}

/* Wrapper header */
.pkp_site_name_wrapper {
    padding-left: 0;
    padding-right: 0;
}


/* ===========================
   PERBAIKAN LAIN (AMAN)
=========================== */

/* User menu */
.pkp_navigation_user_wrapper {
    position: absolute;
    top: 8px;
    right: 20px;
    padding-right: 0;
}

/* Halaman utama */
.pkp_structure_page {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
}

/* Navigasi utama */
.pkp_navigation_primary > li > a {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}






/* ===========================
   SIDEBAR JURNAL
=========================== */

.journal-sidebar {
  font-family: "Poppins", sans-serif;
}

/* Judul sidebar */
.sidebar-title {
  background: #680a0a;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* List menu */
.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Item */
.sidebar-menu li {
  margin-bottom: 5px;
}

/* Link menu */
.sidebar-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #680a0a;
  background: #fff;
  color: #222;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

/* ICON */
.sidebar-menu .icon {
  font-size: 18px;
  color: #ffe311;
  min-width: 22px;
  text-align: center;
}

/* TEXT */
.sidebar-menu .text {
  font-weight: 500;
}

/* ===========================
 LOADING OVERLAY (FULL BOX)
=========================== */

.sidebar-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgb(104, 0, 0) 25%,
      rgba(104, 0, 0, 0.35) 50%,
      rgba(104, 0, 0, 0.15) 75%
  );
  transform: translateX(-100%);
  z-index: -1;
}

/* Hover / tap */
.sidebar-menu a:hover::before,
.sidebar-menu a:focus::before {
  animation: fullLoading 0.2s linear forwards;
}

/* Warna teks saat aktif */
.sidebar-menu a:hover {
  color: #ffffff;
}

/* Animasi */
@keyframes fullLoading {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}





/* ==========================================================
   BACKGROUND AREA ABU-ABU (DI LUAR KOTAK KONTEN)
   Dengan fitur:
   1. Bisa ganti warna background jika tidak pakai gambar
   2. Bisa atur ukuran background image
   ========================================================== */

/* ====== PENGATURAN BACKGROUND UTAMA ====== */
body {
  /* --- Ganti warna jika tidak pakai gambar --- */
  background-color: #000000;  /* Ganti warna di sini */

  /* --- Gambar background (opsional) --- */
  background-image: url('https://cvauratun.com/wp-content/uploads/2026/01/pexels-steve-12843338-1-scaled.jpg');

  background-repeat: no-repeat;
  background-position: center top;

  /* --- KONTROL UKURAN GAMBAR --- */
  background-size: cover; 
  /* 
     Opsi lain:
     background-size: contain;   (gambar penuh tapi tidak terpotong)
     background-size: 100% auto; (lebar penuh)
     background-size: auto 100%; (tinggi penuh)
  */

  background-attachment: fixed;
}




/* ================= TOP WRAPPER ================= */
.journal-top-wrapper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* ================= DESKRIPSI ================= */
.journal-desc {
  flex: 1;
}

.journal-desc p {
  text-align: justify;
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 10px;
}

/* ================= COVER ================= */
.journal-cover-side {
  width: 220px;
}

.journal-cover-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.journal-cover-side img:hover {
  transform: scale(1.15);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}

/* ================= INFO JURNAL ================= */
.journal-info-section {
  margin-top: 12px;
}

/* Header hijau tegas */
.info-header {
  background: #680a0a;
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px 6px 0 0;
}

/* Tabel */
.journal-info-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
}

.journal-info-table td {
  padding: 7px 9px;
  border-bottom: 1px solid #680a0a;
}

.journal-info-table td:first-child {
  width: 30%;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .journal-top-wrapper {
    flex-direction: column;
  }

  .journal-cover-side {
    width: 180px;
    margin: 0 auto;
  }
}



/* ================= fOOTER ================= */
.pkp_footer_content {
  float: left;
  width: 50%;  
  padding-top: 10px;
  padding-bottom: 10px;
}

.pkp_site_name_wrapper a.is_img img {
    max-height: none;
}

.pkp_brand_footer {
  float: right;
  width: 30%;
  padding-bottom: 10px;
  padding-top: 50px;
}

.pkp_page_index .homepage_about {
    padding-top: 0.123rem;
    padding-bottom: 2.143rem;
}

.pkp_structure_footer_wrapper {
	background: #e8ebef;
	border-bottom: double solid #201e1f; 
}