/* =======================
   Base Reset
   ======================= */
body {
  background: #f8faff !important;
  color: #222 !important;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

a, a:link, a:visited {
  color: #222 !important;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #555 !important;
}

/* =======================
   Header Full Width
   ======================= */
.pkp_structure_head {
  background-color: #a8d0e6 !important;
  padding: 15px 0;
  border-bottom: none !important;
}

.pkp_site_name_wrapper {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.pkp_site_name, .pkp_site_name a {
  color: #222 !important;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

/* =======================
   Navbar Override
   ======================= */
.navbar-default {
  background-color: #9cc3e4 !important;
  border: none !important;
}

.navbar-default .navbar-nav > li > a {
  color: #222 !important;
  padding: 10px 20px;
  transition: all 0.3s;
  border-radius: 6px;
}

.navbar-default .navbar-nav > li > a:hover {
  background-color: #7ab0dd !important;
  color: #222 !important;
}

/* =======================
   Konten Utama
   ======================= */
/* Bungkus struktur utama (konten + sidebar) dengan flex */
.pkp_structure_content {
  display: flex;
  align-items: stretch; /* pastikan tinggi sejajar */
  gap: 10px; /* jarak antar kolom */
}

 .pkp_structure_main {
  flex: 5; /* konten utama lebih lebar */
  max-width: none; /* hilangkan batasan agar fleksibel */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column; /* biar isi dalam tetap rapi */

}

.pkp_structure_page {
  background: none !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
}

/* =======================
   Sidebar Minimalis
   ======================= */
.pkp_structure_sidebar {
  flex: 2; /* lebar sidebar relatif terhadap konten */
  background: linear-gradient(180deg, #d0e7f9, #ffffff);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}


.pkp_structure_sidebar .pkp_block .title {
  background: transparent;
  color: #222 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 15px;
  border-bottom: 1px solid #c0e0f5;
}

.pkp_structure_sidebar .pkp_block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkp_structure_sidebar .pkp_block ul li a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  border-top: 1px solid #cce6f8;
  transition: background 0.3s;
}

.pkp_structure_sidebar .pkp_block ul li a:hover {
  background: #cce6f8;
}

/* =======================
   Tombol Submit
   ======================= */
.submit-btn, .btn-primary {
  background-color: #9cc3e4 !important;
  border: none !important;
  color: #222 !important;
  font-weight: 600;
  border-radius: 25px !important;
  padding: 10px 30px !important;
  transition: 0.3s;
}

.submit-btn:hover, .btn-primary:hover {
  background-color: #7ab0dd !important;
  color: #222 !important;
}

/* =======================
   Sidebar Custom Menu Style
   ======================= */
.journal_info_block {
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
}

.journal_info_block .title {
  background: #9cc3e4;
  color: #222 !important;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 18px;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid #c0e0f5;
  text-align: center;
}

.journal_info_block ul.sidemenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

.journal_info_block ul.sidemenu li {
  border-bottom: 1px solid #e4f1fb;
}

.journal_info_block ul.sidemenu li:last-child {
  border-bottom: none;
}

.journal_info_block ul.sidemenu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.journal_info_block ul.sidemenu li a:hover {
  background: #cce6f8;
  color: #000;
  padding-left: 22px; /* efek geser lembut */
}

/* responsif: rapatkan di layar kecil */
@media (max-width: 768px) {
  .journal_info_block .title {
    font-size: 14px;
    padding: 10px;
  }

  .journal_info_block ul.sidemenu li a {
    font-size: 13px;
    padding: 8px 12px;
  }
}


/* =======================
   Footer GREGET Styling
   ======================= */
.pkp_structure_footer {
  background: linear-gradient(90deg, #9cc3e4, #a8d0e6) !important;
  color: #222 !important;
  padding: 30px 0;
  border-top: none;
  font-size: 14px;
}

.footer-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-info {
  flex: 2;
  min-width: 250px;
}

.footer-info a {
  color: #222 !important;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
  color: #000 !important;
}

.footer-indexes {
  flex: 1;
  text-align: right;
}

.footer-indexes img {
  margin: 5px 8px;
  transition: transform 0.3s;
  vertical-align: middle;
}

.footer-indexes img:hover {
  transform: scale(1.05);
}

/* License section */
.footer-license {
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 10px;
}

/* Responsif */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .footer-indexes {
    text-align: center;
  }
}



/* =======================
   Responsive Layout
   ======================= */
@media (max-width: 992px) {
  .pkp_structure_main {
    width: 95%;
    padding: 20px;
  }
}

/* =======================
   Struktur Layout Flex
   ======================= */

/* Bungkus struktur utama (konten + sidebar) dengan flex */
.pkp_structure_content {
  display: flex;
  align-items: stretch; /* pastikan tinggi sejajar */
  gap: 10px; /* jarak antar kolom */
}

/* Konten utama */
.pkp_structure_main {
  flex: 5; /* konten utama lebih lebar */
  max-width: none; /* hilangkan batasan agar fleksibel */
}



