/* ================================
   OJS Default Theme Customization
   ================================ */

/* Body and Global Font */
body {
    font-family: serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f4f6f9;
    color: #333;
}
p{
	text-align: justify;
}
	/* ===== Header ===== */
.pkp_head_wrapper {
    background: linear-gradient(87deg, black, #00000000);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.pkp_site_name a {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pkp_navigation_primary li a {
    font-weight: 500;
    padding: 12px 18px;
    transition: all 0.3s ease;
}
.pkp_navigation_primary li a:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #ffcc00 !important;
}

/* ===== Homepage Journal Description ===== */
.pkp_site_description {
    font-size: 18px;
    color: #444;
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-left: 4px solid #0055a5;
    border-radius: 6px;
}

/* ===== Sidebar ===== */
.pkp_block {
   /* background: #f4f6f9;*/
    border: none;
    /*box-shadow: 0 2px 6px rgba(0,0,0,0.08);*/
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}
.pkp_block:hover {
    transform: translateY(-3px);
}
.pkp_block .title {
    font-size: 18px;
    font-weight: 600;
    color: #0055a5;
    margin-bottom: 12px;
}

/* ===== Article Titles ===== */
.obj_article_summary .title a {
    font-size: 14px;
    font-weight: bold;
    color: #003366 !important;
    transition: color 0.3s ease;
}
.obj_article_summary .title a:hover {
    color: #ff6600 !important;
}

/* ===== Buttons ===== */
.pkp_button,
.pkp_button_primary {
    background: linear-gradient(90deg, #0055a5, #003366) !important;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.pkp_button:hover,
.pkp_button_primary:hover {
    background: linear-gradient(90deg, #003366, #001f40) !important;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.pkp_structure_footer_wrapper {
    background: linear-gradient(90deg, #000000, #0559a9);
}
.pkp_footer_content {
    background: none;
    color: #ddd;
    padding: 35px 20px;
    text-align: center;
    font-size: 15px;
	line-height: 1;
}
.pkp_footer_content a {
    color: #ffcc00 !important;
    font-weight: 500;
    text-decoration: none;
}
.pkp_footer_content a:hover {
    text-decoration: underline;
}
.obj_issue_toc .pages {
    color: #003366;
    padding: 0px 15px;
    border-radius: 3px;
    border: 1px solid #ff7a18;
    width: fit-content;
}
@media (min-width: 992px) {
    .pkp_structure_main:first-child:last-child:before {
       display: none;
    }
}
@media (min-width: 992px) {
    .pkp_structure_main:first-child:last-child:after {
         display: none;
    }
	.pkp_brand_footer{
		position: absolute;
		top: 12%;
		left: 80%;
	}
	.has_site_logo .pkp_head_wrapper {
        width: 100%;
    }
	.pkp_site_nav_menu #navigationPrimary {
	   margin-left: 12%;
	}
    .pkp_navigation_search_wrapper {
        margin-right: 12%;
    }
	.pkp_structure_content {
        border-right: 1px solid lightgray;
		background: white;
    }
    /*.pkp_navigation_user li {
        margin-right: 12%;
    }*/
	.pkp_structure_sidebar {
        float: right;
        width: 280px;
    }
	.cmp_button, .cmp_form .buttons button, .page_lost_password .buttons button, .page_search .submit button, .block_make_submission a {
		background: #004a90;
	}
	.block_make_submission_link {
	  display:inline-block;
	  padding:12px 28px;
	  border-radius:8px;
	  background: linear-gradient(90deg,#ff7a18,#af002d 40%,#319197 100%);
	  color:#fff !important;
	  font-weight:700;
	  position:relative;
	  overflow:hidden;
	  text-decoration:none !important;
	  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
	}
	.block_make_submission_link::before{
	  content:"";
	  position:absolute;
	  top:-40%;
	  left:-40%;
	  width:180%;
	  height:180%;
	  background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.06) 100%);
	  transform: rotate(25deg);
	  animation: shimmerMove 2.5s linear infinite;
	  pointer-events:none;
	  mix-blend-mode: overlay;
	}
	@keyframes shimmerMove{
	  0% { transform: translateX(-100%) rotate(25deg); }
	  100% { transform: translateX(100%) rotate(25deg); }
	}

}
