.navbar {
  background: white;
  padding: 2vw;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #e60023;
  width: 12vw;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight:800;
font-family:"Overlock", sans-serif;
}
.nav-links a:hover {
  color: #e60023;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin-bottom: 5px;
  border-radius: 5px;
}
@media (max-width: 768px) {
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #e60023;
  width: 45vw;
  line-height:0;
}
  .hero-text h1 {
    font-size: 2rem; font-family:"Overlock", sans-serif; font-weight: 900; font-style: normal
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 20px;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}