/* === Header === */
header {
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
  position: relative;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ffbb00;
}

/* Hamburger icon hidden by default (desktop view) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* === Responsive Styles === */
@media (max-width: 900px) {
  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 9999;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #222;
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
    width: 200px;
  }

  #nav-links.active {
    display: flex;
  }

  #nav-links a {
    margin: 10px 0;
    padding: 10px;
    border-top: 1px solid #444;
  }
}

