/* === Inline Nav Patch (scoped to #myNav) === */
#myNav nav {
  width: 100%;
  height: 100vh;             /* leaves room for the fixed social bar */
  padding:250px 0 0 0;
  list-style: none;
  text-align: center;
  background-color: #ffffff;
}

#myNav nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 205px;             /* matches your small-screen layout */
  margin: auto;
  color: #1D002C;
  text-decoration: none;
  font-size: x-large;
  transition: ease-in-out .2s;
  transform: scale(.9);
  overflow: hidden;
  border-bottom: solid thin #000000;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

#myNav .navIcons {
  width: 75px;
  height: 75px;
}

/* active link */
#myNav a.is-active { text-decoration: underline; }

/* fixed social bar stays pinned inside overlay */
#myNav #socialLinksContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 20px 0px;
  background-color: #000000;
}
#myNav #socialLinksContainer img {
  width: 50px;
  height: 50px;
  transition: ease-in-out .5s;
}
