.pkp_brand_footer {
  display: none !important;
}

/* Make sure header is a positioning context */
.pkp_head_wrapper {
  position: relative;
}

/* --- MOBILE VIEW (show text only, hide image) --- */
@media (max-width: 992px) {
  .pkp_site_name {
    position: relative;
    text-align: left;
    display: inline-flex;
  }

  .pkp_site_name_wrapper {
    margin-top: 3%;
    padding-left: 0;
    padding-right: 0;
  }

  .pkp_site_nav_toggle{
    height: 1.3rem !important;
  }

  /* Hide the logo image */
  .pkp_site_name img {
    display: none !important;
  }

  /* Show the journal title text */
  .pkp_site_name::after {
    content: "JENIC: Journal of Entrepreneurship, Innovation, and Community Empowerment";
    display: block;
    font-size: clamp(0.5rem, 2vw, 1rem);
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    line-height: 1.4;
  }

  /* MOBILE: navigationUserWrapper becomes relative */
  #navigationUserWrapper {
    position: relative !important;
    top: 0 !important;
    font-weight: bold;
    z-index: 9999;
    padding: 0; /* remove background spacing */
    background: none !important; /* remove background from wrapper */
  }

  /* Apply background ONLY to list items */
  #navigationUserWrapper li {
    background-color: #10AC9B !important;
    border-radius: 6px;
    padding: 8px 12px; /* spacing inside item */
    margin-bottom: 6px; /* optional spacing between list items */
    margin-right: 12px;
  }

  /* Make text white */
  #navigationUserWrapper a,
  #navigationUserWrapper span,
  #navigationUserWrapper li {
    color: #ffffff !important;
  }

  /* Hover: text becomes black */
  #navigationUserWrapper li:hover a,
  #navigationUserWrapper li:hover span {
    color: #000000 !important;
  }

}

/* --- DESKTOP VIEW (show image only) --- */
@media (min-width: 992px) {
  .pkp_site_name img {
    display: block;
  }

  .pkp_site_name::after {
    content: none;
  }
}



#navigationUserWrapper {
  position: absolute;
  top: 40px;   /* adjust vertical position */
  font-weight: bold;
  z-index: 10; /* keep it above the logo image */
}



.pkp_navigation_user > li:last-child > a {
  margin-right: 0.8rem;
}

.pkp_navigation_user a {
  color: #ffffff;
}


/* Optional: make dropdown still usable */
#navigationUserWrapper .dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 9999;
}


.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}
.pkp_site_name .is_img img {
  max-height: 100% !important;
}
.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
.pkp_navigation_primary_wrapper{
  margin-left: 20px;
}
/*.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}*/
/*.pkp_structure_page {
  margin-bottom: 20 !important;
  padding-bottom: 20 !important;
}*/
.pkp_structure_page {
    margin: 0 auto;
    max-width: 1160px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.obj_article_details .abstract {
    text-align: justify;
    font:tahoma,geneva,sans-serif;
}
.block_make_submission_link {
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  font-size: 15px !important;
  line-height: 50px !important;
}
@keyframes blinker
{
  0%{opacity: 1.0}
  50%{opacity: 0.0}
  100%{opacity: 1.0}
}
.indexing-container {
    max-width: 350px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .indexing-container .title {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .indexing-container p {
    margin: 15px 0;
    text-align: center;
  }

  .indexing-container img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }

.jenic-nav-item {
  padding: 8px;
  border-bottom: 1px solid white;
  background: #10AC9B;
}

.jenic-nav-item a {
  color: white !important;
  text-decoration: none;
  display: block; /* so the hover area covers full box */
}

/* Hover effect: change text to black */
.jenic-nav-item:hover a {
  color: black !important;
}

.index-card {
  transition: all 0.35s ease;
  cursor: pointer;
}

.index-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2) !important;
  border-color: #10AC9B !important;
}

.index-card img {
  transition: transform 0.35s ease;
}

.index-card:hover img {
  transform: scale(1.08);
}

