/* =========================================================
   OJS 3.5 CUSTOM THEME
   Responsive Journal Style
========================================================= */

/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --primary:#005792;
    --secondary:#0a9396;
    --light:#f5f7fa;
    --dark:#1f2937;
    --white:#ffffff;
    --shadow:0 4px 20px rgba(0,0,0,0.08);
    --radius:14px;
}

/* GLOBAL */
body{
    font-family:'Poppins',sans-serif;
    background:#f4f7fb;
    color:#333;
    line-height:1.7;
    margin:0;
    padding:0;
}

/* CONTAINER */
.pkp_structure_content,
.pkp_structure_page{
    max-width:1300px;
    margin:auto;
}

/* =========================================================
   HEADER
========================================================= */

.pkp_structure_head{
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("https://serayujournal.com/templates/images/banner.jpg");
    background-size:cover;
    background-position:center;
    padding:40px 20px;
    border-bottom:5px solid var(--secondary);
}

/* JOURNAL TITLE */
.pkp_site_name .is_img img{
    max-height:90px;
}

.pkp_site_name_wrapper{
    text-align:center;
}

.pkp_site_name a{
    font-size:34px;
    font-weight:700;
    color:white !important;
    text-transform:uppercase;
    letter-spacing:1px;
    text-decoration:none;
}

/* ISSN TEXT */
.pkp_site_name::after{
    content:"Journal of Social Empowerment and Participatory Action Research";
    display:block;
    font-size:20px;
    color:#33d417;
    margin-top:8px;
    font-weight:300;
    font-weight: bold;
}

/* =========================================================
   NAVIGATION
========================================================= */

.pkp_navigation_primary_wrapper{
    background:var(--primary);
    box-shadow:var(--shadow);
}

.pkp_navigation_primary > li > a{
    color:white !important;
    font-weight:500;
    padding:16px 18px;
    transition:0.3s;
}

.pkp_navigation_primary > li > a:hover{
    background:var(--secondary);
    border-radius:6px;
}

/* SEARCH */
.pkp_navigation_search_wrapper{
    padding-right:15px;
}

.pkp_search input[type="text"]{
    border-radius:30px;
    border:none;
    padding:10px 18px;
}

/* LANGUAGE SWITCHER */
.pkp_block.block_language{
    margin-top:10px;
}

.block_language .title{
    display:none;
}

.block_language ul{
    display:flex;
    gap:8px;
    justify-content:center;
    padding:0;
}

.block_language li{
    list-style:none;
}

.block_language a{
    background:white;
    color:var(--primary);
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
}

/* =========================================================
   HOMEPAGE CONTENT
========================================================= */

.page_index_journal .homepage_about{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    margin-top:30px;
}

/* ANNOUNCEMENT */
.cmp_announcements,
.current_issue{
    background:white;
    padding:25px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    margin-top:25px;
}

/* ARTICLE LIST */
.obj_article_summary{
    background:white;
    padding:20px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    margin-bottom:20px;
    transition:0.3s;
}

.obj_article_summary:hover{
    transform:translateY(-4px);
}

.obj_article_summary .title a{
    color:var(--primary);
    font-size:20px;
    font-weight:600;
    text-decoration:none;
}

/* SIDEBAR */
.pkp_structure_sidebar{
    padding-top:30px;
}

.pkp_block{
    background:white;
    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    margin-bottom:25px;
    overflow:hidden;
}

.pkp_block .title{
    background:var(--primary);
    color:white;
    padding:14px 20px;
    font-size:16px;
    font-weight:600;
}

.pkp_block .content{
    padding:20px;
}

/* BUTTON */
.cmp_button,
button,
input[type=submit]{
    background:var(--primary) !important;
    color:white !important;
    border:none !important;
    border-radius:30px !important;
    padding:10px 20px !important;
    transition:0.3s;
}

.cmp_button:hover,
button:hover{
    background:var(--secondary) !important;
}

/* =====================
   FOOTER - SPASI LEBIH RAPAT
===================== */

footer {
  background: var(--dark);
  color: white;
  padding: 35px 0 10px; /* sebelumnya 70px */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px; /* sebelumnya 40px */
  margin-bottom: 15px;
}

.footer-box h3 {
  margin-bottom: 10px; /* sebelumnya 20px */
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  line-height: 1.5;
}

.footer-box ul li {
  margin-bottom: 6px; /* sebelumnya 12px */
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  margin-top: 10px;
  font-size: 13px;
}

/* Sosial media lebih rapat */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================================================
   REMOVE PKP LOGO
========================================================= */

.pkp_brand_footer{
    display:none !important;
}

/* =========================================================
   LOGIN / FORM
========================================================= */

.cmp_form{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width:992px){

    .pkp_site_name a{
        font-size:24px;
    }

    .pkp_navigation_primary > li > a{
        padding:12px;
        font-size:14px;
    }

    .page_index_journal .homepage_about,
    .cmp_announcements,
    .current_issue{
        padding:20px;
    }
}

@media screen and (max-width:768px){

    .pkp_structure_head{
        padding:25px 15px;
    }

    .pkp_site_name a{
        font-size:20px;
        line-height:1.4;
    }

    .obj_article_summary{
        padding:15px;
    }

    .obj_article_summary .title a{
        font-size:17px;
    }

    .pkp_navigation_primary_wrapper{
        text-align:center;
    }

    .block_language ul{
        flex-wrap:wrap;
    }
}

@media screen and (max-width:480px){

    .pkp_site_name a{
        font-size:18px;
    }

    .pkp_navigation_primary > li > a{
        font-size:13px;
        padding:10px;
    }

    .pkp_block .content{
        padding:15px;
    }
}

/*==================================
ADDITIONAL MENU OJS
VERSI BIRU
===================================*/

.additional-menu{
    width:100%;
    margin:15px auto;
    font-family:'Poppins',sans-serif;
}

/* HEADER MENU (biru lebih tua) */

.menu-title{

    background:#0869AB;

    color:white;

    text-align:center;

    padding:12px;

    font-weight:700;

    font-size:18px;

    border-radius:12px 12px 0 0;

    letter-spacing:1px;

    box-shadow:
    0 3px 10px rgba(0,0,0,.10);

}

/* LIST */

.additional-menu ul{
    margin:0;
    padding:0;
}

.additional-menu li{
    list-style:none;
    margin-bottom:1px;
}

.additional-menu li a{

    display:block;

    text-decoration:none;

    text-align:center;

    background:#0D82D1; /* warna dari gambar */

    color:white;

    padding:11px;

    font-size:15px;

    font-weight:600;

    border-bottom:3px solid #0A6CAF;

    border-radius:8px;

    transition:all .3s ease;
}

/* Efek hover */

.additional-menu li a:hover{

    transform:
    translateY(-2px)
    scale(1.02);

    background:white;

    color:#0D82D1;

    box-shadow:
    0 6px 15px rgba(13,130,209,.25);

}

/* efek klik */

.additional-menu li a:active{
    transform:scale(.98);
}


/* Responsive */

@media(max-width:768px){

.menu-title{
    font-size:16px;
}

.additional-menu li a{
    padding:10px;
    font-size:14px;
}

}

/*==================================
POLICY + ARTICLE TEMPLATE
BIRU OJS
===================================*/

.policy-box{
    width:100%;
    margin:15px auto;
    font-family:'Poppins',sans-serif;
}

.menu-title{

    background:#0869AB;

    color:white;

    text-align:center;

    padding:12px;

    font-size:18px;

    font-weight:700;

    border-radius:10px;

    margin-bottom:2px;

    box-shadow:
    0 3px 10px rgba(0,0,0,.08);
}


/* MENU POLICY */

.policy-list{
    padding:0;
    margin:0;
}

.policy-list li{
    list-style:none;
    margin-bottom:1px;
}

.policy-list li a{

    display:block;

    background:#0D82D1;

    color:white;

    text-align:center;

    text-decoration:none;

    padding:11px;

    font-size:15px;

    font-weight:600;

    border-radius:8px;

    transition:all .3s ease;

}


/* Hover */

.policy-list li a:hover{

    transform:
    translateY(-2px)
    scale(1.02);

    background:white;

    color:#0D82D1;

    box-shadow:
    0 6px 15px rgba(13,130,209,.25);

}


/* TEMPLATE */

.template-title{
    margin-top:10px;
}

.template-box{

    background:white;

    padding:15px;

    border-radius:10px;

    text-align:center;

    border-bottom:4px solid #0D82D1;

}

.template-link{

    display:block;

    transition:.4s;
}

.template-link img{

    width:100%;

    max-width:210px;

    height:auto;

}

/* Hover gambar */

.template-link:hover{

    transform:
    scale(1.05);

}


/* RESPONSIVE */

@media(max-width:768px){

.menu-title{
    font-size:16px;
}

.policy-list li a{
    font-size:14px;
    padding:10px;
}

}
/*==================================
LANGUAGE SWITCHER DI MENU OJS
===================================*/

/* Posisi di kanan dekat search */

.block_language{
    display:inline-block;
    margin-right:15px;
}

/* Hilangkan judul "Language" */

.block_language .title{
    display:none;
}

/* Susun horizontal */

.block_language ul{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    padding:0;
}

.block_language li{
    list-style:none;
}

/* Tombol ID / EN */

.block_language a{

    display:block;

    padding:6px 12px;

    background:#0D82D1;

    color:white !important;

    text-decoration:none;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

    transition:.3s;
}

.block_language a:hover{

    background:white;

    color:#0D82D1 !important;

    transform:scale(1.05);

}

/* Bahasa aktif */

.block_language .current a{

    background:#0869AB;

    color:white !important;

}
.pkp_navigation_search_wrapper{
    display:flex;
    align-items:center;
    gap:10px;
}

.indexing-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    margin:20px auto;
}

.indexing-box h3{
    text-align:center;
    color:#0056b3;
    margin-bottom:15px;
    font-size:20px;
}

.index-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.index-grid a{
    border:1px solid #ddd;
    border-radius:8px;
    padding:8px;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:0.3s;
}

.index-grid a:hover{
    transform:translateY(-3px);
    box-shadow:0 4px 8px rgba(0,0,0,.2);
}

.index-grid img{
    width:100%;
    max-width:120px;
    height:auto;
}

@media(max-width:768px){
    .index-grid{
        grid-template-columns:1fr;
    }
}