.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
}

.menu-toggle {
  font-size: 2rem;
  color: #ff0000;
  cursor: pointer;
  z-index: 1100;
}


.hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background-color: #001D3D;
  height: 500px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  padding-top: 150px;
}



.fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0a0f2c;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align: center;
  padding-top: 100px;
}

.fullscreen-menu.active {
  display: block;
}

.close-toggle {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* Fullscreen menu styles */

.fullscreen-menu ul {
  list-style: none;
  text-align: center;
}

.fullscreen-menu ul li {
  margin: .5rem 0;
}

.fullscreen-menu ul li a {
  color: #f9c800;
  font-size: 2rem;
  text-decoration: none;
  font-weight: bold;
}

/* Always show hamburger */
@media (min-width: 0px) {
  .menu-toggle {
    display: block;
  }
}
