
/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply Poppins font globally */
body, html {
    font-family: 'Poppins', sans-serif !important;
}

/* Apply Poppins to major text and UI elements */
h1, h2, h3, h4, h5, h6,
.navbar, .pkp_site_name, .pkp_navigation_primary,
.pkp_structure_main, .pkp_block, .pkp_page_content,
.pkp_page_footer, .pkp_nav_list, .pkp_page_index_journal {
    font-family: 'Poppins', sans-serif !important;
}

/* Make navigation links pink */
.pkp_navigation_primary a,
.pkp_nav_list a,
.navbar a {
    color: #fda2a5 !important; /* Pink */
}

/* Dropdown menu background + text */
.pkp_navigation_primary ul,
.dropdown-menu {
    background-color: #ffffff !important; /* White background */
}

.pkp_navigation_primary ul a,
.dropdown-menu a {
    color: #000000 !important; /* Black text */
}

/* Add hover effect for dropdown items */
.pkp_navigation_primary ul a:hover,
.dropdown-menu a:hover {
    background-color: #f2f2f2 !important; /* Light gray hover */
    color: #000000 !important;
}

/* Make the logo bigger */
.pkp_site_name img, /* Main site logo */
.pkp_brand img,     /* Journal-specific logo if used */
.pkp_navigation_user img {
    max-height: 120px !important; /* Adjust size as needed */
    height: auto;
    width: auto;
}

/* Hide only the "About the Journal" heading on the homepage */
.homepage_about h2 {
    display: none !important;
}

/* Optional: add spacing if the larger logo affects layout */
.pkp_site_name {
    padding: 10px 0;
}
