@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap");

/* CSS Document */

html,
body {
    background: #f2f2f2;
}

/* logo alt ve üst boşlukları */
@media (min-width: 992px) {
    .pkp_site_name {
        padding-top: 1.071rem;
        padding-bottom: 1.071rem;
    }

    .pkp_site_name .is_img img {
        max-height: 60px;
    }
}

/* Global Body Variables */
body {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.785rem;
    margin-top: 0px;
    margin-bottom: 0px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
div,
ul,
ol,
td,
th {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
}

/* Structure page */
.pkp_structure_page {
    background-color: #ffffff;
}

/* Header Navigation */
@media (min-width:992px) {
    #headerNavigationContainer .pkp_head_wrapper {
        padding-top: 0px;
    }
}

/* Site nav menu */
.pkp_site_nav_menu {
    background-color: #2f2f2f;
    height: 55px;
}


/* List Item */
#navigationPrimary>li {
    height: 55px;
}

/* List Item (hover) */
#navigationPrimary>li:hover {
    background-color: #0f0f0f;
}


.pkp_navigation_primary_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1160px;
}

#navigationPrimary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.pkp_navigation_search_wrapper {
    flex: 0 0 auto;
    min-width: 120px;
    text-align: right;
}

@media (min-width: 992px) {
    .pkp_navigation_search_wrapper a {
        color: rgb(255 255 255 / 84%);
    }
}

#navigationPrimary>li>a {
    color: #ffffff;
}



/* üst menü alanının genişliği */
.pkp_navigation_primary_row {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2px;
}

/* Navigation items */
.pkp_structure_page .pkp_structure_footer_wrapper {
    transform: translatex(0px) translatey(0px);
    background-color: #f3f3f3;
}

.pkp_structure_footer footer {
    background-color: #f3f3f3;
}

.pkp_structure_head {
    position: relative;
    z-index: 1000;
}

.pkp_site_nav_menu {
    position: relative;
    z-index: 1000;
}

/* Dropdown menus */
#navigationPrimary li ul {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    background-color: #2f2f2f;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#navigationPrimary li ul li {
    height: 45px;
}

#navigationPrimary li ul li a {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 15px;
    color: #ffffff;
    font-size: 15px;
    background-color: #2f2f2f;
}

#navigationPrimary li ul li a:hover {
    background-color: #0c0c0c;
}

#navigationPrimary li:hover>ul {
    display: block;
}



@media (min-width: 992px) {
    .pkp_navigation_primary>li:first-child a {
        margin-left: 0.1em;
    }
}


@media (min-width: 992px) {
    .pkp_navigation_primary>li>a:hover {
        border-color: transparent !important;
    }
}


/* Mobile navigation - Fixed version */
@media (max-width: 991px) {
    .pkp_site_nav_menu {
        width: 100%;
        background-color: #2f2f2f;
        z-index: 999;
        position: relative;
        margin-top: 10px;
    }

    #navigationPrimary {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        list-style: none;
        background-color: #2f2f2f;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        height: 100%;
        overflow: visible;
    }

    #navigationPrimary>li {
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #navigationPrimary>li:last-child {
        border-bottom: none;
    }

    #navigationPrimary>li>a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px 20px;
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        background-color: #2f2f2f;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    /* Dropdown submenu styles - Fixed positioning */
    #navigationPrimary li ul {
        display: none;
        width: 100%;
        background-color: #3a3a3a;
        margin: 0;
        padding: 0;
        top: 5px;
        list-style: none;
        position: relative;
        z-index: 2;
    }

    #navigationPrimary li:focus-within>ul,
    #navigationPrimary li:hover>ul {
        display: block;
    }

    #navigationPrimary li ul li {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    #navigationPrimary li ul li a {
        display: block;
        padding: 12px 20px 12px 30px;
        color: #e0e0e0;
        background-color: transparent;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.3s ease;
    }

    #navigationPrimary li ul li a:hover {
        background-color: rgba(0, 0, 0, 0.2);
        color: #1abc9c;
        padding-left: 35px;
    }

    /* Dropdown indicator */
    #navigationPrimary>li:has(ul)>a::after {
        content: "▼";
        margin-left: auto;
        font-size: 10px;
        transition: transform 0.3s ease;
        padding-left: 10px;
    }

    #navigationPrimary>li:focus-within>a::after,
    #navigationPrimary>li:hover>a::after {
        transform: rotate(180deg);
    }

    /* Active state */
    #navigationPrimary>li:focus-within>a,
    #navigationPrimary>li:hover>a {
        background-color: #3a3a3a;
        color: #1abc9c;
    }

    /* Prevent content overlapping */
    .pkp_structure_content {
        clear: both;
        position: relative;
        z-index: 1;
    }
}



/* Sidebar styles */
.pkp_structure_sidebar:before {
    border-left: 1px solid #ddd;
}

.pkp_block {
    padding: 0px 3px 5px 5px;
    font-size: 14px;
    line-height: 20px;
}

.block_make_submission {
    padding: 15px 3px 5px 5px;
}

.pkp_block .title {
    width: 100%;
    background-color: #d7d7d7;
    height: 30px;
    font-size: 13px;
    color: #257072;
    padding-top: 0.4em;
    margin-bottom: 0px;
    border: 0px;
    text-align: center;
}

.pkp_block .content ul li {
    padding: 0px 0;
    background-color: #f4f4f2;
}

.pkp_block li {
    border-radius: 0;
    position: relative;
    background-color: #f1f1f1;
    display: block;
}

.pkp_block ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.pkp_block ul>li a {
    color: #495464;
    padding: .75rem 1rem;
    display: flex;
}

.pkp_block ul>li a:hover {
    text-decoration: none;
    background-color: #bbbfca;
}

.pkp_block ul>li em {
    box-sizing: border-box;
    display: inline-block;
    font: 1.09em / 1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin: 0px 15px 0px -10px;
    border-right: 1px solid #e7e5e5;
    width: 35px;
    color: #257072;
}

/* Custom menu */
.custom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-menu li {
    background: #f6f6f6;
    margin-bottom: 2px;
    position: relative;
}

.custom-menu li a {
    display: block;
    padding: 1px 5-1px;
    text-decoration: none;
    color: black;
    font-family: 'OpenSans', Arial, Tahoma, Verdana;
    font-size: 16px;
    position: relative;
    min-height: 5px;
    line-height: 30px;
}

.custom-menu li a::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background-color: #002F6C;
}

/* Main content styles */
.pkp_structure_main {
    font-family: 'OpenSans', Arial, Tahoma, Verdana;
    font-size: 14px;
    text-align: justify;
    line-height: 1.43rem;
    color: rgba(0, 0, 0, 0.87);
}

.pkp_structure_main p {
    text-align: justify;
    font-size: 1.1em;
}

.obj_article_details .abstract {
    text-align: justify;
}

.obj_article_details .author_bios {
    text-align: justify;
}

/* Headings */
h1 {
    display: block;
    font-family: 'OpenSans', Arial, Tahoma, Verdana;
    font-size: 2.3em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    color: #257072;
}

h2 {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(17, 17, 17);
    font-size: 28px;
    line-height: 34px;
    margin: 0.67em 0;
}

.page_index_journal .current_issue h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: rgba(17, 17, 17, 0.87);
}


.pkp_structure_main h2 {
    font-family: 'OpenSans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.87);
    font-size: 28px;
    line-height: 34px;
}

.pkp_structure_main .page h1 {
    font-family: 'OpenSans', Arial, Tahoma, Verdana, sans-serif;
        font-style: normal;
        font-weight: 400;
        color: rgba(17, 17, 17, 0.87);
        font-size: 28px;
        line-height: 34px;
}


.pkp_structure_main h3 {
    font-family: 'OpenSans', Arial, Tahoma, Verdana;
}

h3 {
    font-family: 'OpenSans', Arial, Tahoma, Verdana;
}

h4 {
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    color: #257072;
}

/* Article specific styles */
.page_article .obj_article_details h1 {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(17, 17, 17);
    font-size: 28px;
    line-height: 41px;
    margin: 0.67em 0;
}

.obj_issue_summary .title {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 21px;
    line-height: 30px;
    margin: 0.67em 0;
}

.pkp_structure_main h1 {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 28px;
    line-height: 30px;
    margin: 0.67em 0;
}

.obj_article_summary .meta {
    font-size: 13px;
}

.pkp_page_index .current_issue .current_issue_title {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-size: 20px;
    line-height: 29px;
    margin: 0.67em 0;
}

/* Section titles */
.sections .title a {
    font-family: 'Open Sans', Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #111;
    font-size: 1.28em;
    line-height: 24px;
    text-decoration: none;
}

.sections li .title {
    color: #111 !important;
}

.sections .title a:hover {
    color: #0682e7;
}



/* Social media styles */
.sosyalmedya {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sosyalmedyabutton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 10px 20px;
    margin: 1px 0;
    color: #495464;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.sosyalmedyabutton img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.youtube {
    background-color: #f4f4f2;
}

.youtube:hover {
    background-color: #bbbfca;
    color: #495464;
}

.instagram {
    background-color: #f4f4f2;
}

.instagram:hover {
    background-color: #bbbfca;
    color: #495464;
}

.linkedin {
    background-color: #f4f4f2;
}

.linkedin:hover {
    background-color: #bbbfca;
    color: #495464;
}

.twitter {
    background-color: #f4f4f2;
}

.twitter:hover {
    background-color: #bbbfca;
    color: #495464;
}


/* Social media icons variant */
.sosyalmedya.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}

.sosyalmedya.icons a {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
}





.sosyalmedya {
    display: flex;
    align-items: center;
    flex-direction: row;
    /* Yan yana gelsin */
    gap: 20px;
    margin-top: 20px;
    justify-content: space-around;

}

.sosyalmedya a {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
}

/* Sosyal medya ikonları */
.sosyalmedya .twitter {
    background-image: url('/public/icons/twitter.png');
}

.sosyalmedya .youtube {
    background-image: url('/public/icons/youtube.png');
}

.sosyalmedya .linkedin {
    background-image: url('/public/icons/linkedin.png');
}

.sosyalmedya .instagram {
    background-image: url('/public/icons/instagram.png');
}



/* Footer styles */
.custom-footer {
    background-color: #f3f3f3;
    font-family: 'OpenSans', Arial, Tahoma, Verdana, sans-serif;
    font-weight: 400;
    color: rgb(120, 120, 120);
    font-size: 13px;
    line-height: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
}

.footer-column h3 {
    font-family: 'OpenSansBold', Arial, Tahoma, Verdana, sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 19px;
    color: #6d6d6d;
    margin-bottom: 10px;
}

.footer-column a {
    color: rgb(120, 120, 120);
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}

.footer-bottom a {
    color: rgb(120, 120, 120);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Footer content */
.pkp_structure_footer_wrapper .pkp_structure_footer .pkp_footer_content {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}

.pkp_structure_page .pkp_structure_footer_wrapper {
    transform: translatex(0px) translatey(0px);
    background-color: #f3f3f3;
}

.pkp_structure_page .pkp_structure_footer_wrapper,
.pkp_structure_footer footer {
    background-color: #f3f3f3;
}

.pkp_brand_footer {
    display: none;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

/* Article details */
.entry_details .item .galleys_links {
    display: inline-grid;
    width: 100%;
    transform: translatex(0px) translatey(0px);
}

.pkp_structure_page .pkp_structure_content .pkp_structure_main .page_article .obj_article_details .row .entry_details .item .galleys_links {
    grid-template-columns: 100% !important;
}

.galleys_links li a {
    width: 100%;
    height: 30px;
    margin-bottom: 3px;
}

.pkp_structure_page .pkp_structure_content {
    transform: translatex(0px) translatey(0px);
}

.obj_article_details .entry_details .item {
    transform: translatex(0px) translatey(0px);
}

@media (min-width:992px) {
    .obj_article_details .entry_details .item {
        padding-top: 20px;
    }
}

/* Galley buttons with download count */
.galley_button_content {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding-right: 2.8em;
}

.galley_superscript {
    position: absolute;
    top: -0.6em;
    right: 0em;
    font-size: 0.7em;
    color: #0077cc;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.galley_superscript i.fa-download {
    font-size: 1.2em;
}

/* Utility classes */
.row.justify-content-center.text-center {
    display: none;
}



/* ek uygulamalar */

@media (min-width: 992px) {
    .pkp_navigation_primary>li>a:focus {
        background: transparent !important;
    }
}



