/* Ensure the navbar is column-oriented */
.navbar.main-menu {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Adjust spacing on the main menu title */
.main-menu__title {
  margin: 0 auto;
  text-align: center;
  padding-top: 0.2rem;   /* reduce top padding */
  padding-bottom: 1rem; /* add bottom padding */
}

/* Keep nav items centered */
.main-menu__nav {
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* Center UL */
#navigationPrimary {
  margin: 0 auto;
}

/* Dropdown menus should align below centered links */
.dropdown-menu {
  text-align: center;
}

/* Mobile behavior: hamburger stays top right */
.navbar-toggler {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.main-footer {
  border-top: 2px solid #e0e0e0; /* light gray border */
  margin-top: 2rem;             /* space above footer */
  padding-top: 1.5rem;          /* space inside footer above content */
}

/* Add padding on top of footer block */
.main-footer__block {
  padding-top: 1.5rem; /* adjust as needed */
}

/* Hide the PKP/OJS logo in the footer */
.main-footer .img-fluid[alt*="OJS/PKP"] {
  display: none;
}

