/* =========================================================
   OJS PROFESSIONAL HEADER + FOOTER FULL CSS
   Journal: Journal of Smart Computing and Quantum Technologies
========================================================= */

/* ---------------------------------------------------------
   REMOVE DUPLICATE JOURNAL TITLE
--------------------------------------------------------- */

.pkp_site_name {
    display: none !important;
}

/* ---------------------------------------------------------
   HEADER CLEANUP
--------------------------------------------------------- */

.pkp_structure_head {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: #ffffff;
}

/* ---------------------------------------------------------
   HOMEPAGE HEADER IMAGE
--------------------------------------------------------- */

.pkp_page_index .homepage_image,
.pkp_page_index .homepage_image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* REMOVE EXTRA SPACE BELOW HEADER */

.pkp_page_index .homepage_image {
    margin-bottom: 0 !important;
}

/* ---------------------------------------------------------
   NAVIGATION MENU
--------------------------------------------------------- */

.pkp_navigation_primary_wrapper {
    background: #000000 !important;
    border-top: none !important;
}

.pkp_navigation_primary_row {
    background: #000000 !important;
}

/* MENU LINKS */

.pkp_navigation_primary > li > a {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 14px 18px !important;
}

/* MENU HOVER */

.pkp_navigation_primary > li > a:hover {
    color: #4da3ff !important;
}

/* DROPDOWN MENU */

.pkp_navigation_primary ul {
    background: #111111 !important;
}

.pkp_navigation_primary ul li a {
    color: #ffffff !important;
}

.pkp_navigation_primary ul li a:hover {
    background: #1f1f1f !important;
    color: #4da3ff !important;
}

/* SEARCH COLOR */

.pkp_navigation_search_wrapper a {
    color: #ffffff !important;
}

/* ---------------------------------------------------------
   MAIN CONTENT AREA
--------------------------------------------------------- */

.page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* REMOVE LARGE EMPTY AREA */

.pkp_structure_content {
    padding-top: 15px !important;
    margin-top: 0 !important;
}

/* ---------------------------------------------------------
   CONTENT TYPOGRAPHY
--------------------------------------------------------- */

body {
    font-family: Arial, sans-serif !important;
    color: #222 !important;
    line-height: 1.7 !important;
}

/* HEADINGS */

h1, h2, h3, h4 {
    color: #0d3d75;
}

/* LINKS */

a {
    color: #0056a3;
}

a:hover {
    color: #003d75;
}

/* ---------------------------------------------------------
   SIDEBAR BLOCKS
--------------------------------------------------------- */

.pkp_block {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #ffffff;
}

/* ---------------------------------------------------------
   ISSUE / ARTICLE CARDS
--------------------------------------------------------- */

.obj_issue_summary,
.obj_article_summary {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    background: #ffffff;
}

/* ---------------------------------------------------------
   PROFESSIONAL COMPACT FOOTER
--------------------------------------------------------- */

.pkp_structure_footer_wrapper {
    background: #d9d9d9 !important;
    border-top: 1px solid #c8c8c8;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* FOOTER MAIN */

.pkp_structure_footer {
    color: #111 !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    line-height: 1.6 !important;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* FOOTER CONTENT */

.pkp_structure_footer .footer_content {
    max-width: 78%;
}

/* FOOTER TEXT */

.pkp_structure_footer p {
    margin: 2px 0 !important;
}

/* FOOTER LINKS */

.pkp_structure_footer a {
    color: #0056a3 !important;
    text-decoration: none;
    font-weight: 500;
}

.pkp_structure_footer a:hover {
    text-decoration: underline;
}

/* OJS BRAND FOOTER */

.pkp_structure_footer .pkp_brand_footer {
    float: none !important;
    margin-top: 0 !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
}

/* OJS LOGO SIZE */

.pkp_brand_footer img {
    max-height: 38px !important;
    width: auto !important;
    opacity: 0.95;
}

/* OTHER FOOTER IMAGES */

.pkp_structure_footer img {
    vertical-align: middle;
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

button,
.cmp_button,
.obj_issue_summary .title a {
    border-radius: 4px;
}

/* ---------------------------------------------------------
   MOBILE RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 768px) {

    /* MENU */

    .pkp_navigation_primary > li > a {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }

    /* FOOTER */

    .pkp_structure_footer {
        font-size: 12px !important;
        padding: 8px 12px !important;
        flex-direction: column;
        text-align: center;
    }

    .pkp_structure_footer .footer_content {
        max-width: 100%;
    }

    .pkp_structure_footer .pkp_brand_footer {
        justify-content: center;
        margin-top: 10px !important;
    }

    .pkp_brand_footer img {
        max-height: 30px !important;
    }

}