header{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.banner{
  background-color: var(--red);
  padding:0px;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0;
}

.banner-image {
  height: 16rem;
  max-width: 100%;
  object-fit: contain;
}

.nav-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  position: relative; 
}

.nav-links{
  margin-top: 2rem;
  display:flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  list-style-type: none;
  color: black;
}

.nav-links li a{
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0.15rem 0.3rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  border-bottom: 2px solid black;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--blue);
  background: none;
  border: none;
  padding: 1rem;
}



@media (max-width: 700px) {
  .nav-container {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    width: 50%;
    max-width: 100%;
    height: 60px;
    z-index: 9999;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 0rem;
    right: 0rem;
    z-index: 10000;
  }

  .hamburger.active {
    color: var(--dark-blue);
    background-color: white;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: absolute;
    right: 0;
    z-index: 9998;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    padding: 0.5rem 0.75rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
    text-align: center;
    display: block;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* Banner image stays on top */
  .banner-image {
    width: 100%;
    height: auto;
    max-height: 16rem;
    object-fit: cover;
  }
}