/* =====================================================
GLOBAL RESET / FULL WIDTH FIX
===================================================== */

.pkp_structure_page {
    max-width: 100% !important;
    padding: 0 !important;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* =====================================================
FULL WIDTH HEADER BANNER
===================================================== */

.pkp_structure_head {
    width: 100%;
}

.pkp_site_name_wrapper {
    width: 100%;
    text-align: center;
    border-bottom: 4px solid #003366;
}

.pkp_site_name img {
    width: 100%;
    height: auto;
    max-height: 220px;
    display: block;
}

/* =====================================================
MOVE MENU BELOW BANNER
===================================================== */

.pkp_navigation_primary_wrapper {
    width: 100%;
    display: block;
    text-align: center;
    margin: 5px 0 10px 0;
}

.pkp_navigation_primary > li {
    display: inline-block !important;
    float: none !important;
}

.pkp_navigation_primary > li > a {
    padding: 10px 15px;
}

.pkp_navigation_primary > li > a:hover {
    color: #003366;
    text-decoration: underline;
}

/* =====================================================
SIDEBAR BUTTONS
===================================================== */

.journal-buttons a {
    display: block;
    background: #8B0A2A;
    color: white;
    text-align: center;
    padding: 14px;
    margin: 10px 0;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.journal-buttons a:hover {
    background: #6d0822;
}

/* =====================================================
HOMEPAGE INFO BOXES
===================================================== */

.journal-info-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 30px auto;
}

.info-box {
    width: 250px;
    background: #f4f4f4;
    margin: 10px;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.info-box h3 {
    margin-top: 0;
    color: #003366;
}

.info-box a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #003366;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.info-box a:hover {
    background: #001f40;
}

/* =====================================================
INDEXING LOGOS
===================================================== */

.indexing-logos {
    text-align: center;
    margin-top: 20px;
}

.indexing-logos img {
    width: 100px;
    max-width: 100%;
    margin: 8px;
}

/* =====================================================
JOURNAL META LINE (ISSN / DOI)
===================================================== */

.journal-meta {
    text-align: center;
    font-size: 14px;
    padding: 8px;
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
}

/* =====================================================
FOOTER STYLING
===================================================== */

.pkp_structure_footer {
    text-align: center;
    font-size: 14px;
    padding: 20px;
    background: #003366;
    color: white;
}

.pkp_structure_footer p {
    margin: 5px 0;
    color: white;
}

/* =====================================================
MOBILE RESPONSIVENESS
===================================================== */

@media (max-width: 768px) {

    .pkp_site_name img {
        max-height: 150px;
    }

    .pkp_navigation_primary > li {
        display: block !important;
        margin: 5px 0;
    }

    .journal-buttons a {
        font-size: 14px;
        padding: 10px;
    }

    .journal-info-boxes {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        width: 90%;
    }

    .indexing-logos img {
        width: 80px;
    }
}