/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.nav {
  display: flex;
}

.nav-list {
  /* list-style: none; */
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-left: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #00bcd4;
}

.hamburger {
  display: none;
  background: red;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
  }

  .nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list li {
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
  }
}
