
/* Responsive Navigation Bar */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: relative;
  background-color: #b7b7b7;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  border: none;
  background: none;
  color: #164166;
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  right: 1.5rem;
}

.logo img {
  max-width: 125%;
  height: auto;
  width: 450px;
  transition: width 0.3s ease;
  display: block;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #164166;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
  display: block;
  font-size: 2rem;
  background: none;
  border: none;
  color: #164166;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  z-index: 1000; /* LOWER */
}
	
.navbar .nav-links {
  display: none;
}	

.nav-links.show {
  display: flex;
  flex-direction: column;
  width: 100%; 
  background: #357FD3;
  position: absolute;
  top: 40px;
  left: 0;
  border-top: 2px solid #2769b3;
  padding: 1rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1001; /* HIGHER */
}

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
}
