/* ===========================
   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 (FINAL RAPI)
=========================== */

.journal-sidebar {
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

/* JUDUL SIDEBAR */
.sidebar-title {
  background: #049fd7;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* LIST MENU */
.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* JARAK ANTAR KOTAK (UBAH DI SINI) */
.sidebar-menu li {
  margin-bottom: 5px; /* <-- JARAK KOTAK */
}

/* KOTAK MENU */
.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 5px;

  padding: 14px 18px;
  background: #ffffff;
  color: #000000;

  border: 1px solid #049fd7;   /* WARNA BORDER */
  border-radius: 10px;         /* BORDER RADIUS */

  text-decoration: none;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* ICON */
.sidebar-menu .icon {
  font-size: 18px;
  min-width: 24px;
  text-align: center;
}

/* HOVER */
.sidebar-menu a:hover {
  background: #049fd7;   /* MERAH */
  color: #ffffff;        /* TEKS PUTIH */
  transform: translateX(6px); /* geser halus */
}

/* ICON SAAT HOVER */
.sidebar-menu a:hover .icon {
  transform: scale(1.15);
}


/* Sidebar */
.journal-sidebar {
  margin-top: 50 !important;
}

/* Jika masih turun, paksa naik */
.pkp_structure_main::before {
  content: none !important;
}


/* ===========================
   EDITORIAL TEAM – SELARAS SIDEBAR
=========================== */

.editorial-preview {
  padding: 0;
}

/* ITEM EDITOR */
.editor-item {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;

  background: #ffffff;
  border: 1px solid #049fd7;
  border-radius: 10px;

  transition: all 0.3s ease;
}

/* HOVER SEIRAMA MENU */
.editor-item:hover {
  background: #049fd7;
  transform: translateX(6px);
}

/* FOTO */
.editor-item img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #049fd7;
  background: #fff;
}

/* INFO */
.editor-info strong {
  display: block;
  font-size: 14px;
  color: #049fd7;
  transition: color 0.3s;
}

.editor-info span {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
}

.editor-info small {
  font-size: 11px;
  color: #000000;
  transition: color 0.3s;
}

/* SAAT HOVER → PUTIH */
.editor-item:hover strong,
.editor-item:hover span,
.editor-item:hover small {
  color: #ffffff;
}

/* TOMBOL READ MORE */
.editor-more {
  display: block;
  margin-top: 10px;
  padding: 10px;
  text-align: center;

  background: #ffffff;
  color: #049fd7;
  border: 1px solid #049fd7;
  border-radius: 10px;

  font-weight: 500;
  text-decoration: none;

  transition: all 0.3s ease;
}

.editor-more:hover {
  background: #049fd7;
  color: #ffffff;
  transform: translateX(6px);
}



/* ===========================
   TOMBOL LOGIN & REGISTER (KOTAK)
=========================== */

/* Target link Login & Register */
.pkp_navigation_user a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  margin-left: 6px;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;

  color: #049fd7;
  background: #049fd7;

  border: 1.5px solid #ffffff;
  border-radius: 8px;

  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.pkp_navigation_user a:hover {
  background: #049fd7;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Fokus (aksesibilitas) */
.pkp_navigation_user a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.25);
}




/* ===============================
   RESET DASAR
   =============================== */

   * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f8;
    margin: 0;
    padding: 0px;
}


/* ===============================
   CONTAINER UTAMA
   =============================== */

.container {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 0px;
}


/* ===============================
   JUDUL + GARIS
   =============================== */

.journal-title {
    font-size: 26px;
    font-weight: bold;
    border-bottom: 3px solid #049fd7;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.journal-title .issn {
    float: right;
    font-size: 18px;
    font-weight: normal;
    color: #049fd7;
}


/* ===============================
   COVER + DESKRIPSI
   =============================== */

.content-top {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.image-box {
    width: 240px;
    overflow: hidden;
    border-radius: 8px;
}

.image-box img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


/* ===============================
   DESKRIPSI (RATA KIRI–KANAN)
   =============================== */

.description {
    flex: 1;
}

.description p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
    color: #333;
    margin: 0;
}


/* ===============================
   GARIS PEMISAH
   =============================== */

.divider {
    border-top: 3px solid #0d9aff;
    margin: 20px 0;
    margin-bottom: 5px;
}


/* ===============================
   BANNER
   =============================== */

.banner-box {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.banner-box img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


/* ===============================
   INFO JOURNAL
   =============================== */

.info-journal h2 {
    background: #049fd7;
    color: #ffffff;
    padding: 10px 12px;
    margin: 0;
    font-size: 18px;
}


/* ===============================
   TABEL INFO JOURNAL
   =============================== */

.info-journal table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.info-journal th,
.info-journal td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.info-journal th {
    width: 30%;
    background: #f2f2f2;
    text-align: left;
}

.info-journal tr:hover {
    background: #1ab1d7;
}






/* ==========================================================
   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/jurnal-kudsdsdsdssdsdsdsd.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;
}
