/* ==========================================================================
   1. TOP NAVIGATION (Primary Menu)
   ========================================================================== */

/* Modern Navigation Hover + Focus */
.pkp_navigation_primary>li>a {
    transition: all 0.25s ease-in-out;
    /* Smooth animation */
    border-bottom: 2px solid transparent;
    /* Clean minimal underline */
}

.pkp_navigation_primary>li>a:hover,
.pkp_navigation_primary>li>a:focus {
    color: #ffffff;
    /* Pure white text */
    border-color: #ffffff;
    /* Soft underline highlight */
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    /* Glassy hover glow */
    backdrop-filter: blur(4px);
    /* Subtle modern blur */
}

/* Active navigation item style */
.pkp_navigation_primary>li>a.daz_nav_active {
    color: #fff;
    /* Active item text color */
    outline: 0;
    /* No outline */
    border-color: #fff;
    /* White border for active link */
}

/* Navigation container styling - INCREASED RADIUS */
.pkp_navigation_primary {
    display: inline-block;
    /* Layout */
    max-width: 90%;
    /* Restrict width */
    text-align: left;
    /* Align items left */
    border-radius: 8px;
    /* Increased from 5px to 8px */
}

/* ==========================================================================
   2. TYPOGRAPHY & HEADINGS
   ========================================================================== */

/* Current issue headers and general h2 titles */
.current_issue>h2,
.current_issue_title,
.daz_text_header,
.pkp_structure_main h2 {
    color: green;
    /* Green headings */
}

/* Section title style */
.section h2 {
    font-weight: bold;
    /* Bold */
    color: Green;
    /* Green label */
}

/* Paragraph header and text header styles */
.daz_paragraph_header,
.daz_text_header {
    color: #008000;
    /* Strong green */
    font-weight: bold;
    /* Bold headings */
}

/* Make all <p> justified */
p {
    text-align: justify;
    /* Justify text */
}

/* ==========================================================================
   3. ARTICLE & ISSUE LISTINGS
   ========================================================================== */

/* Article title + Read more link default color */
.title>a,
.pkp_page_index .current_issue .read_more {
    color: green;
    /* Green links */
}

/* Hover color adjustments */
.tile>a:hover,
.title>a:focus,
.pkp_page_index .current_issue .read_more:hover,
.pkp_page_index .current_issue .read_more:focus {
    color: rgb(14, 187, 14);
    /* Bright green hover */
}

/* Add spacing between issue sections */
.obj_issue_toc .sections:not(:first-child) {
    margin-top: 20px;
    /* Spacing */
}

/* Removes extra margin/padding from each section */
.obj_issue_toc .section {
    position: relative;
    margin: 0px 0px;
    /* Remove margin */
    padding: 0px;
    /* Remove padding */
}

/* Issue summary container rounding - INCREASED RADIUS */
.obj_issue_summary {
    border-radius: 8px;
    /* Increased from 5px to 8px */
    overflow: hidden;
    margin-bottom: 12px;
    /* Increased spacing for better separation */
}

/* Issue summary title colors */
.obj_issue_summary .title {
    color: green;
    /* Green text */
}

/* Hover on issue summary title */
.obj_issue_summary .title:hover,
.obj_issue_summary .title:focus {
    color: rgb(14, 187, 14);
    /* Brighter green */
}

/* ==========================================================================
   4. GALLEYS & BUTTONS
   ========================================================================== */

/* PDF/HTML galley link button style - INCREASED RADIUS */
.obj_galley_link {
    border: 1px solid green;
    /* Green border */
    border-radius: 5px;
    /* Increased from 3px to 5px */
    /* Font size */
    font-size: 13px;
    line-height: 28px;
    /* Button height */
    color: green;
    /* Text color */
    text-decoration: none;
    /* Remove underline */
}

/* Galley link hover */
.obj_galley_link:hover,
.obj_galley_link:focus {
    background: green;
    /* Green background */
    color: #fff;
    /* White text */
}

/* ==========================================================================
   5. SIDEBAR & BLOCKS
   ========================================================================== */

/* Sidebar links hover/focus background and border - INCREASED RADIUS */
.pkp_nav_list ul a:hover,
.pkp_nav_list ul a:focus {
    outline: 0;
    /* No outline */
    background: rgb(177, 231, 181);
    /* Light green background */
    border-color: #007ab2;
    /* Blue border */
    border-radius: 5px;
    /* Increased from 3px to 5px */
}

/* Extra left padding inside sidebar blocks */
.pkp_block .content p {
    padding-left: 5px;
    /* Indent text */
}

/* Sidebar block padding - INCREASED RADIUS */
.pkp_block {
    padding: 20px 30px 0 10px;
    /* Top and side padding */
    border-radius: 5px;
    /* Increased from 5px to 8px */
}

/* ==========================================================================
   6. CUSTOM BLOCKS & ANNOUNCEMENTS
   ========================================================================== */

/* Custom block header style - INCREASED RADIUS */
.daz_custom_block_head {
    background-color: #2a811c;
    /* Dark green */
    color: white;
    /* White text */
    border-top-left-radius: 8px;
    /* Increased from 3px to 8px */
    border-top-right-radius: 8px;
    /* Increased from 3px to 8px */
    font-size: 1.1rem;
    padding: 10px 15px !important;
}

/* Custom block content container styling - INCREASED RADIUS */
.daz_custom_block_content {
    border: solid 1px;
    /* Border */
    border-top: 0;
    /* No top border */
    border-color: green;
    /* Light green */
    border-bottom-left-radius: 8px;
    /* Increased from 3px to 8px */
    border-bottom-right-radius: 8px;
    /* Increased from 3px to 8px */
}

/* Custom block full container - INCREASED RADIUS */
.daz_custom_block {
    border-top-left-radius: 8px;
    /* Increased from 3px to 8px */
    border-top-right-radius: 8px;
    /* Increased from 3px to 8px */
    border-bottom-left-radius: 8px;
    /* Increased from 3px to 8px */
    border-bottom-right-radius: 8px;
    /* Increased from 3px to 8px */
    padding-bottom: 5px;
    /* Bottom spacing */
}

/* Announcement headings */
.obj_announcement_summary>h2>a,
.obj_announcement_summary .summary>p>strong,
.obj_announcement_full>h1,
.obj_announcement_full .description>p>strong {
    color: green;
    /* All green */
}

/* Hover on announcement title */
.obj_announcement_summary>h2>a:hover {
    color: blue;
    /* Blue on hover */
}

/* ==========================================================================
   7. FOOTER & EXTERNAL LINKS
   ========================================================================== */

/* Footer wrapper background - INCREASED RADIUS */
.pkp_structure_footer_wrapper {
    background: green;
    /* Light green background */

}

/* Other publication boxes - INCREASED RADIUS */
.otherpublicationsofmist {
    border: 2px solid green;
    /* Green border */
    margin: 2px;
    /* Outer space */
    padding: 4px 4px 0 4px;
    /* Inner space */
    width: 24%;
    /* Fixed width */
    height: auto;
    border-radius: 12px;
    /* Increased from 8px to 12px for softer corners */
    text-align: center;
    /* Center text */
    vertical-align: middle;
}

/* Hover on other publication blocks */
.otherpublicationsofmist:hover {
    border: 2px solid blue;
    /* Blue border on hover */
    background-color: lightgreen;
    /* Light green background */
}
/* ==========================================================================
   8. HIDE BRANDING ELEMENTS
   ========================================================================== */

/* Hide the OJS/PKP branding footer logo */
.pkp_brand_footer {
    display: none !important;
}
/* ==========================================================================
   3. SUBMISSION BUTTON (EYE-CATCHING PILL)
   ========================================================================== */
.block_make_submission a {
    display: block !important;
    padding: 12px 20px !important;
    background: linear-gradient(red) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    border-radius: 50px !important;
    box-shadow: 0 4px 12px rgba(27, 94, 17, 0.3);
    transition: all 0.3s ease !important;
    text-align: center;
    text-decoration: none !important;
}

.block_make_submission a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 94, 17, 0.4);
    filter: brightness(1.1);
}

