/* Shrink the overall footer height */
.pkp_structure_footer_wrapper {
    padding-top: 15px !important; 
    padding-bottom: 10px !important;
}

/* Reduce extra space around the footer content */
.pkp_structure_footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

































/* Inject the tagline right below the main centered title */
.pkp_site_name a::after {
    content: "An Agricultural Magazine";
    display: block !important;
    font-size: 16px !important;
    font-weight: normal !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important; /* Makes it look very crisp */
    margin-top: 3px !important; /* Space between title and tagline */
    color: #e0e0e0 !important; /* A soft silver/white so it doesn't overpower the main title */
}






/* Increase the overall height of the blue header area */
.pkp_structure_head {
    padding-top: 30px !important;    /* Adds space above the main title */
    padding-bottom: 30px !important; /* Adds space below the menu */
}

/* Optional: Add a little extra space between the tagline and the menu */
.pkp_site_name_wrapper {
    margin-bottom: 25px !important; 
}











/* Make the top right User Menu match the main magazine menu */
.pkp_navigation_user > li > a {
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: bold !important;
}

/* Make the Submission Button Animated and Premium */
.block_make_submission a {
    transition: all 0.3s ease !important;
    background-color: #1a5b7f !important; /* Uses your theme's deep blue */
    color: #ffffff !important;
    border: none !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* This creates the smooth "lift and glow" animation when hovering */
.block_make_submission a:hover {
    transform: translateY(-4px) !important; /* Lifts the button */
    box-shadow: 0 10px 18px rgba(26, 91, 127, 0.4) !important; /* Adds a glowing shadow */
    background-color: #13435e !important; /* Slightly darker blue */
    text-decoration: none !important;
}












/* Make the main menu look like a premium magazine */
.pkp_navigation_primary > li > a {
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}









/* Hide the OJS/PKP branding in the footer */
.pkp_brand_footer {
    display: none !important;
}



