/* === Reset & Base Style === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #EEE;
  overflow-x: hidden;
  font-family: tahoma, geneva, sans-serif;
}
a { color: #195762; }
a:hover { color: #cacdc4; }

/* === Site Branding & Header === */
.pkp_site_name {
  margin: 0;
  padding: 0 !important;
}
.pkp_site_name .is_img img {
  width: 100% !important;     /* logo isi penuh container */
  height: auto !important;    /* jaga proporsi */
  max-height: none !important;/* jangan dibatasi tinggi */
  display: block;
  margin: 0 auto;
}
.pkp_site_name_wrapper {
  background: transparent !important;
  margin: 0;
  padding: 0 auto !important;
  text-align: center;
   
}

/* === Ubah background header biru jadi merah senada === */
.pkp_structure_head {
  background-color: #b71c1c !important; /* merah tua */
}

.pkp_site_name, 
.pkp_site_name a {
  color: #fff !important; /* teks judul tetap kontras */
}

.pkp_structure_page {
  margin: auto;
  width: 1162px;
  background: #fff;
  padding-bottom: 0 !important;
}
.pkp_structure_content {
  padding-top: 0;
}
.pkp_structure_sidebar .pkp_block .title {
  font-family: Sunflower, helvetica, calibri;
}
.pkp_navigation_primary_row {
  background: #C8102E; /* merah sama dengan footer */
  margin-top: 0;
  padding-top: 0;
}


/* === Kotak Sidebar === */
.pkp_block {
    background: #ffffff;           /* Warna background box */
    border: none;     
    padding: 15px;
    margin-bottom: 20px;           /* Jarak antar box */
    
}

/* Hilangkan style lama */
.pkp_block {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Judul menu */
.pkp_block .title {
    background: #f2f2f2;       /* abu-abu muda */
    color: #333;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 6px;        /* sudut melengkung */
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Daftar menu */
.pkp_block ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pkp_block ul li {
    margin-bottom: 0px;
}

/* Item menu */
.pkp_block ul li a {
    display: block;
    padding: 10px 14px;
    background: #e0e0e0;        /* abu medium */
    border-radius: 1px;         /* sudut melengkung */
    color: #333;                /* teks abu tua */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

/* Hover effect */
.pkp_block ul li a:hover {
    background: #c9c9c9;        /* abu lebih gelap saat hover */
    color: #000;
}




/* ===== Custom Footer OJS 3 ===== */
.pkp_structure_footer .pkp_footer_content {
    background: #B5121B;      /* Warna latar footer */
    color: #ffffff;           /* Warna teks */
    padding: 20px 0;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.pkp_structure_footer .pkp_footer_content a {
    color: #ddd;           /* Warna link */
    text-decoration: none;
    transition: 0.3s;
}
.pkp_structure_footer .pkp_footer_content a:hover {
    color: #ffffff;           /* Warna saat hover */
    text-decoration: underline;
}

/* Bagian paling bawah (brand footer) */
.pkp_structure_footer .pkp_brand_footer {
    background: #C8102E;
    padding: 10px;
}
