
/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 0;
  margin-right: 0;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 36px;
  margin: 3px auto;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu li {
  text-align: center;
  margin: 0;
}
.mobile-menu li a {
  display: block;
  padding: 14px 32px;
  color: #222;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s;
}
.mobile-menu li a:hover {
  background: #f0f4fa;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 220px;
    background: #232526;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 80px 24px 24px 24px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.08);
    transition: right 0.3s;
    z-index: 100;
    display: flex;
  }
  .nav-links.nav-active {
    right: 0;
  }
  .hamburger {
    display: flex;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 200;
  }
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(48deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-48deg);
}




/* HERO */
@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-banner h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 20px;
  }
}
