.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.nav_logo img {
  width: 120px;
}

.nav_container {
  display: flex;
  padding: 5px 20px 0 20px;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
}

.nav_menu {
  display: flex;

  align-items: center;
}

.nav_menu li {
  list-style: none;
}
.nav_menu a {
  text-decoration: none;
  color: black;
  font-size: 1.125rem;
  padding: 10px 20px;
  transition: ease-in-out all 0.4s;
}

.nav_menu a:hover {
  color: white;
  background-color: #1e3c5d;
  border-radius: 10px;
}
/* Hamburger hidden by default */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
  z-index: 200; /* ensures it's above menu */
  user-select: none;
}

/* Media Queries */
@media (max-width: 725px) {
  body.menu-open {
    overflow: hidden;
  }

  .hamburger {
    display: block;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }

  .hamburger.active {
    content: "✕";
    transform: rotate(90deg);
  }

  .nav_menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: max-content;
    background-color: white;
    padding: 20px 30px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 150;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .nav_menu.active {
    transform: translateX(0%);
  }

  .nav_menu li {
    padding: 12px 0;
    width: 100%;
  }

  .nav_menu a {
    padding: 10px 0;
    width: 100%;
    display: block;
    text-decoration: none;
    color: black;
    font-size: 1.125rem;
    transition: background 0.3s ease;
  }

  .nav_menu a:hover {
    background-color: #1e3c5d;
    color: white;
    border-radius: 8px;
    padding-left: 10px;
  }
}

footer {
  background-color: #2e2e2e;
  color: white;
  padding: 30px 20px;
}

.footer_container {
  display: flex;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.footer_container > div {
  flex: 1 1 180px; /* minimum width, flexible growth */
  max-width: 220px;
}

.first_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer_logo {
  width: 50%;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials img {
  width: 25px;
}

.footer_container li {
  list-style: none;
  margin: 5px 0;
}

.footer_container ul {
  padding: 0;
}

.footer_container ul a {
  text-decoration: none;
  color: white;
  display: block;
}

.footer_container span {
  font-size: 1rem;
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
}

.copyright hr {
  width: 92%;
  margin: 10px 0;
  border-color: #555;
}
