/* Hamburger menu styles */
.hamburger {
  display: none;
  width: 20px;
  height: 20px;
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
}

.hamburger svg {
  width: 100%;
  height: 100%;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #333;
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.nav-links-mobile.active {
  display: flex;
}

.nav-links-mobile a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: 70px;
    background: var(--bg-color);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

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

  .nav-links a {
    margin: 10px 0;
  }
}
