/* ============================================
   CSS GENIUS
   ============================================ */

/* ===== BODY ===== */
html, body {
    font-family: Aptos, "Segoe UI", Arial, sans-serif !important;
    background: url(https://static.vecteezy.com/system/resources/thumbnails/002/289/261/small/school-education-seamless-pattern-education-symbols-sketch-backdrop-with-school-supplies-back-to-school-icons-doodle-line-art-notebook-background-vector.jpg);
    background-repeat: repeat; 
    background-size: auto;
    margin: 0;
}

/* ===== CONTAINER (DITAMBAH ROUNDED) ===== */
.pkp_structure_page {
    max-width: 1200px;
    margin: 25px auto;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    border-radius: 14px;
    border: 1px solid #88B8CD;

}

/* ============================================
   HEADER FULL IMAGE (DITAMBAH ROUNDED)
   ============================================ */
.pkp_structure_head,
.pkp_head_wrapper {
    padding: 0 !important;
    background: #88B8CD !important;
    border-radius: 14px 14px 0 0; /* ✅ rounded atas */
}
.pkp_structure_head {
    border-bottom: 2px solid #f39c12;
}

.pkp_site_name .is_img img {
    max-height: 100% !important; /* Tinggi maksimum mengikuti container */
    max-width: 100% !important; /* Lebar maksimum mengikuti container */
}

.pkp_site_name {
    height: auto;
    overflow: hidden;
}

.pkp_site_name img {
    width: auto;
    height: auto;
    object-fit: cover;
}

/* ============================================
   NAVBAR
   ============================================ */
.pkp_navigation_primary_row {
    background: #88B8CD;
    font-weight: normal;
}

/* Menu */
.pkp_navigation_primary_row a {
    color: #000000 !important;
    padding: 0 15px !important;
    line-height: 40px !important;
}

/* Hover */
.pkp_navigation_primary_row a:hover {
    background: #f39c12;
    color: #4f54b3;
}

/* Dropdown */
.pkp_navigation_primary_row ul ul {
    background: #bfeaff !important;
}

.pkp_navigation_primary_row ul ul a {
    color: #000000 !important;
}

.pkp_navigation_primary_row ul ul a:hover {
    background: #f39c12 !important;
    color: #000000 !important;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.pkp_breadcrumbs {
    background: transparent !important;
    border: none !important;
}

.pkp_breadcrumbs a {
    color: #88B8CD !important;
}

/* ============================================
   CONTENT
   ============================================ */
.pkp_structure_content {
    background: #ffffff !important;
}

.pkp_structure_main {
    padding: 20px;
}

/* Judul */
.pkp_structure_main h1 {
    font-weight: 600;
    font-size: 20px;
}

/* Link */
.pkp_structure_main a {
    color: #348fb5;
}

.pkp_structure_main a:hover {
    color: rgba(45,59,28,0.8) !important;
}

/* ============================================
   ARTIKEL
   ============================================ */
.obj_article_summary {
    padding: 15px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid #88B8CD !important;
    font-size: 12px;
}

.obj_article_summary:hover {
    background: transparent !important;
}

/* ============================================
   BUTTON PDF
   ============================================ */
.obj_galley_link {
    font-weight: 700;
    text-transform: capitalize !important;
    background: #ff9800 !important;
    color: #ffffff !important;
    border: none !important;
}

.obj_galley_link:hover {
    background: #ffcc80 !important;
}

/* ============================================
   SIDEBAR (OJS DEFAULT)
   ============================================ */
.custom-side-menu .menu-title {
    background: #88B8CD;
    color: #ffffff;
    text-align: center;
    padding: 13px;
    font-weight: normal;
}

.custom-side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-side-menu ul li a {
    display: block;
    background: #dfeff6;
    color: #000000;
    padding: 13px;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 #ffffff;
}

.custom-side-menu ul li a:hover {
    background: #88B8CD;
    color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */
.pkp_structure_footer_wrapper {
    background: #88B8CD !important;
    border-bottom: 20px solid #88B8CD;
    border-top: 2px solid #f39c12;
    border-radius: 0 0 14px 14px; 
}

.pkp_footer_content {
    width: 100%;
    padding: 10px 0;
}

.pkp_footer_content img {
    border: none;
}

.pkp_brand_footer {
    display: none;
}

/* ============================================
   HOMEPAGE
   ============================================ */
.homepage_image {
    display:inline-block;
    width:28%;
    float:right;
}

.homepage_image img {
    margin:60px 0px 0px -20px;
    box-shadow:4px 2px 5px gray;
    width:300px;
}

.homepage_about {
    display:inline-block;
    width:70%;
}

.homepage_about p {
    text-align:justify;
}

/* Responsive */
@media (max-width: 600px) {
    .homepage_about {
        width:100%;
    }
}

@media (max-width: 360px) {
    .homepage_image {
        width:90%;
        margin:0;
    }
}

/* ============================================
   TOMBOL BAHASA
   ============================================ */
/* POSISI LANGUAGE SWITCHER */
.pkp_navigation_user_wrapper {
    position: absolute;
    top: 10px;
    right: 20px;
}
/* SEMBUNYIKAN TEKS */
.pkp_navigation_user_wrapper .locale a {
    font-size: 0;
    display: inline-block;
    width: 28px;
    height: 20px;
    margin-left: 5px;
}

/* INDONESIA */
.pkp_navigation_user_wrapper .locale_en a {
    background: url('https://flagcdn.com/w40/id.png') no-repeat center/cover;
}

/* ENGLISH */
.pkp_navigation_user_wrapper .locale_id a {
    background: url('https://flagcdn.com/w40/us.png') no-repeat center/cover;
}
.pkp_navigation_user_wrapper .locale a:hover {
    transform: scale(1.1);
    transition: 0.2s;
}


/* ============================================
   SIDE BAR CUSTOM
   ============================================ */

/* SIDEBAR */
.sidebar {
  font-family: Aptos,Arial, sans-serif;
}

/* BOX CARD */
.box {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f39c12!important;
  border: 1px solid #88B8CD;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.box:hover {
  transform: translateY(-2px);
}

/* HEADER */
.box-header {
  padding: 10px;
  background: #88B8CD;
  color: #000000;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  border-bottom: 1px solid #f39c12;
}

/* MENU */
.menu {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.menu li {
  border-bottom: 1px solid #eee;
}

.menu li:last-child {
  border-bottom: none;
}

.menu li a {
  display: block;
  padding: 1px 14px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.menu li a:hover {
  background: #f0f7fa;
  color: #ff9800;
  padding-left: 16px;
}

/* CENTER */
.center {
  text-align: center;
  padding: 15px;
}

/* IMAGE */
.img-full {
  width: 100%;
  max-width: 270px;
  border-radius: 0px;
}

/* TOOLS */
.tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 10px;
}

.tools img {
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
  display: block;
  border-radius: 0px;
}

/* hover efek image sidebar*/
.tools img:hover {
  transform: translateY(-2px); /* naik sedikit */
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* bayangan */
  transition: 0.2s;
}