/* Custom CSS for Co-CREATES Journals OJS 3.4 */

/* Wrapper for the header */
.pkp_head_wrapper {
    width: 100%;
}

/* Wrapper for site name (logo area) */
.pkp_site_name_wrapper {
    width: 100%;
    padding: 0;
}

div.pkp_site_name_wrapper .pkp_site_name {
    height: 100%;
    padding: 0;
}

/* For logo image wrapper */
div.pkp_site_name_wrapper a.is_img {
    height: 100%;
    padding: 0 0 0 0;
}

/* Maximum height of logo image */
.pkp_site_name a.is_img img {
    max-height: 100%;
}

/* User navigation menu */
.pkp_navigation_user > li > a {
    color: #000; /* corrected rgb(f f f) to proper white */
    
}

/* Mobile navigation toggle (hamburger) */
.pkp_site_nav_toggle > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 19px;
    border-bottom: 3px solid #f3702f;
    text-indent: -9999px;
    overflow: hidden;
}

.pkp_site_nav_toggle > span:before,
.pkp_site_nav_toggle > span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    text-align: justify;
    background: #f3702f;
    
}


/* Page wrapper */
.page_index_site {
    padding: 30px;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

/* Title: JOURNAL PUBLICATION */
.page_index_site .about_site h1 {
    text-align: center;
    color: #0056a6;   /* Biru */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    
}

/* Section title: Journals */
.page_index_site .journals h2 {
    font-size: 22px;
    color: #f3702f;   /* Oren */
    border-bottom: 3px solid #f3702f;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    
}

/* Journal list styling */
.page_index_site .journals ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Journal item */
.page_index_site .journals li.has_thumb {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.page_index_site .journals li.has_thumb:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Thumbnail */
.page_index_site .journals .thumb {
    flex: 0 0 180px;
    overflow: hidden;
}

.page_index_site .journals .thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* Journal content */
.page_index_site .journals .body {
    flex: 1;
    padding: 15px 20px;
}

/* Journal title */
.page_index_site .journals .body h3 a {
    color: #0056a6;
    font-size: 30px;
    text-decoration: none;
    font-weight: bold;
}

.page_index_site .journals .body h3 a:hover {
    color: #f3702f;
}

/* Description */
.page_index_site .journals .description {
    font-size: 14px;
    color: #333;
    margin: 10px 0 15px;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Links (View Journal, Current Issue) */
.page_index_site .journals .links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.page_index_site .journals .links li a {
    background: #0056a6;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.page_index_site .journals .links li a:hover {
    background: #f3702f;
}
