/* NAVBAR STYLES */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  border-radius: 0%;
}

/* Hide checkbox input */
.menu-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Navigation Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f1c40f;
}
