.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.logo {
  font-size: 1.9rem;
  font-weight: bold;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #83aaf4;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons-hamburger {
  display: none;
}

.social-icon {
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #83aaf4;
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

@media (max-width: 840px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    display: none;
  }

  .social-icons-hamburger {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
}