/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

@import "https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap";
body {
    font-family: Public Sans, sans-serif;
}

/* Force the container to flex and visible */
#navbar-menu {
  display: flex !important;
  align-items: center !important;
}

/* Hide the toggle button (the three dots) */
#navbar-toggler {
  display: none !important;
}

/* Make the dropdown-menu always visible, inline */
#navbar-menu .dropdown-menu {
  display: flex !important;
  position: static !important;
  float: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* Optional: hide the section header */
#navbar-menu .dropdown-header {
  display: none !important;
}

/* Clean up the nav links */
#navbar-menu .nav-link {
  padding: 0.5rem 0.75rem !important;
  white-space: nowrap !important;
}