/* Header styles */
.header {
  width: 100%;
  top: 0;
  z-index: 1000;
  margin-top: 0.5rem;
}

.header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.CPlogo img {
  width: 100%;
  margin-left: 1rem;
}

.desktop-logo img {
  width: 100%;
  margin-right: -6rem;
}

.mobile-logo {
  display: none;
}

.mobile-logo img {
  width: 100%;
  height: 40px;
}

nav {
  display: flex;
  flex-direction: row;
  margin-left: 1rem;
  margin-top: 0.8rem;
}

.nav-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  z-index: 1000;
  gap: 10px;
}

.nav-list a {
  color: #459e55;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-weight: 100;
}

.nav-list a:hover {
  color: var(--secondary-color);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-menu span {
  display: block;
  width: 16px;
  height: 1px;
  background-color: rgb(14, 131, 74);
  margin: 5px 0;
  transition: 0.3s;
}

.CPlogo-mob {
  display: none;
}

@media (max-width: 768px) {
  body {
    width: 100%;
  }

  .burger-menu {
    display: block;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .CPlogo {
    display: none;
  }

  .CPlogo-mob {
    display: block;
  }

  .CPlogo-mob img {
    width: 80px;
    height: 40px;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }

  .CPlogo img {
    width: 80px;
    height: 40px;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: aliceblue;
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
  }

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

  .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .burger-menu {
    display: block;
    margin-top: -1.4rem;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .mobile-logo img {
    width: 140px;
    height: auto;
    margin-top: -1.4rem;
  }

  .CPlogo img {
    width: 80px;
    height: 40px;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    gap: 0.5px;
    width: 100%;
    background-color: #f2f2f3;
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
  }

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