/* nav - layout like your footer example */

html,body {
  font-family: 'Red Hat Text', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  background:white;
  text-align: left;

}

nav .nav-list {
  display: flex;
  justify-content: center;   /* keep everything centered */
  gap: 1rem;                 /* space between items */
  list-style: none;          /* remove bullets */
  padding: 0;
  margin: 0;
}

/* list items inline */
nav .nav-list li {
  display: inline;
}

/* separator between items (pipe) */
nav .nav-list li:not(:last-child)::after {
  content: " ";             /* add separator */
  margin-left: 0.5rem;
}

/* nav container background / spacing */
nav {
  background-color: #fff;    
  padding: 1rem 0;
}

/* link styling (remove underline and set color) */
nav .nav-list a {
  color: #333;
  font-weight: 500; 
  text-decoration: none;     /* remove underline */
  padding: 0.125rem 0.25rem;
  display: inline-block;
  text-decoration: none;
}


/* hover style */
nav .nav-list a:hover,
nav .nav-list a:focus {
  color: #e25822;
  text-decoration: none;
  outline: none;
}

/* center small-note or other inline text (if any) */
nav p {
  text-align: center !important;
  margin: 0 auto;
}

/* -------------------------
   Mobile: simple hamburger
   ------------------------- */

/* hide mobile toggle by default (desktop) */
.nav-mobile {
  display: none;
}

/* Toggle button markup: #nav-toggle > span */
#nav-toggle {
  display: inline-block;
  width: 36px;
  height: 28px;
  position: relative;
  text-decoration: none;
}

/* hamburger lines */
#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
}