/* Stylesheet Elegan untuk Jurnal Fakultas Teknik
   Fokus pada keterbacaan, profesionalisme, dan estetika modern.
*/

/* 1. Impor Font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather:wght@400;700&display=swap');

/* Palet Warna Teknik (Coklat Elegan):
   Coklat Utama: #4a2c11
   Coklat Aksen / Bronze: #a06d3b
   Latar Netral: #f7f5f2
   Teks Utama: #2d251e
*/

body {
  font-family: 'Merriweather', serif; /* Font Serif untuk keterbacaan maksimal */
  color: #2d251e;
}

h1, h2, h3, h4, h5, h6, .title, .pkp_block .title {
  font-family: 'Lato', sans-serif; /* Font Sans-serif untuk semua judul */
}

a {
  color: #4a2c11; /* Warna link utama menggunakan coklat tua */
  text-decoration: none;
}
a:hover {
  color: #a06d3b;
  text-decoration: underline;
}

/* --- Struktur Utama --- */

.pkp_structure_page {
  margin: 0 auto;
  max-width: 1160px;
  background: #ffffff; /* Latar belakang putih bersih */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
}

.pkp_structure_head {
  background-color: #ffffff;
  border-bottom: 3px solid #4a2c11;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pkp_structure_sidebar.left {
  background-color: #f7f5f2; /* Latar netral hangat untuk sidebar */
  border-right: 1px solid #e2ded8;
}

.pkp_structure_footer_wrapper {
  background: #4a2c11; /* Footer dengan warna coklat tua profesional */
  color: #ffffff;
}
.pkp_footer_content a {
  color: #f7f5f2;
}


/* --- Menu Vertikal --- */
.vertical-menu {
  width: 100%;
}
.vertical-menu a {
    background-color: transparent; /* Latar belakang bersih */
    color: #2d251e;
    display: block;
    padding: 12px 15px;
    font-family: 'Lato', sans-serif;
    border-bottom: 1px solid #e2ded8;
    transition: all 0.2s ease-in-out;
}
.vertical-menu a:hover {
  background-color: rgba(74, 44, 17, 0.08); /* Sedikit warna coklat saat hover */
  color: #4a2c11;
  text-decoration: none;
}
.vertical-menu a.active {
    background-color: #4a2c11;
    color: white;
    border-left: 5px solid #a06d3b; /* Aksen coklat bronze untuk item aktif */
    padding-left: 10px;
}
.pkp_structure_sidebar.left .title {
    background-color: #4a2c11;
    color: white;
    margin: 0;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 15px;
    font-size: 1.2em;
}

/* --- Halaman Detail Artikel & Daftar Artikel --- */
.obj_article_details .page_title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  color: #2d251e;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #a06d3b; /* Garis bawah aksen bronze */
  background-color: transparent;
  box-shadow: none;
}
.obj_article_details .abstract {
  text-align: justify;
  line-height: 1.8;
}
.obj_issue_toc .articles > li {
  margin-bottom: 25px;
  border: 1px solid #e2ded8;
  padding: 1.5rem;
  border-radius: 8px; /* Sudut lebih lembut */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Bayangan lebih halus */
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.cmp_article_list.articles li:hover {
  transform: translateY(-3px); /* Efek terangkat saat hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: #a06d3b;
  background-color: #fff;
}

/* --- Lainnya --- */
.pkp_navigation_primary_row {
  background-color: #f7f5f2;
  border-bottom: 1px solid #e2ded8;
}
section.homepage_about {
  padding: 30px 20px;
  font-size: 1.05em;
  color: #2d251e;
  background: #f7f5f2; /* Latar belakang netral hangat */
  margin-top: 21px;
  text-align: justify;
  border-radius: 8px;
  border-left: 4px solid #a06d3b;
}
section.homepage_about h2 {
  color: #4a2c11;
  text-shadow: none;
}