/* .navbar Section */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 4.5em;
  min-width: 100%;
  padding: 0.5em 1.2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--zinc-300);
  /* box-shadow: var(--shadow-md); */
  background-color: var(--white);
  z-index: 900;
}

.nav .left-content {
  display: flex;
  gap: 2em;
  align-items: center;
}

.nav .left-content #nav-items {
  position: fixed;
  top: 4.5em;
  left: 0;
  right: 0;
  min-width: 100vw;
  min-height: calc(100vh - 4.5em);
  display: none;
  flex-direction: column;
  z-index: 999;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.nav .left-content #nav-items.active {
  display: flex;
}

.nav .left-content #nav-items .nav-item {
  padding: 1em;
  color: var(--zinc-700);
  font-weight: 500;
  font-size: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--zinc-300);
  cursor: pointer;
}

.nav .left-content #nav-items li.actions {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  min-width: 100%;
}
.nav .left-content #nav-items li.actions a {
  padding: 0.8em 3em;
}

.nav .left-content #nav-items li.actions:hover {
  background-color: transparent;
}

.nav .left-content #nav-items .nav-item:hover {
  background-color: var(--zinc-200);
}

.nav .left-content #nav-items .nav-item a {
  min-height: 100%;
  min-width: 100%;
}

.nav .right-content {
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav .right-content .icon-list {
  display: none;
  align-items: center;
  gap: 0.5em;
}

.nav .right-content a.login {
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 1em;
}

.nav button.menu {
  display: flex;
}

@media (min-width: 728px) {
  .nav .left-content #nav-items {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: auto;
    min-height: auto;
    gap: 2em;
  }

  .nav .left-content #nav-items .nav-item {
    padding: initial;
    text-align: initial;
    border-bottom: 0;
    cursor: pointer;
  }

  .nav .left-content #nav-items .nav-item:hover {
    background-color: transparent;
  }

  .nav .left-content #nav-items .nav-item:hover a {
    color: var(--zinc-400);
  }

  .nav .left-content #nav-items li.actions {
    display: none;
  }

  .nav .left-content #nav-items,
  .nav .right-content .icon-list,
  .nav .right-content a.login {
    display: flex;
  }

  .nav button.menu {
    display: none;
  }
}

/* Footer Section */
footer {
  display: flex;
  flex-direction: column;
  gap: 12.5em;
  padding: 2.5em 1rem;
  background-color: var(--violet-200);
}

footer .content {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

footer .content .group .newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

footer .content .group .newsletter h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

footer .content .group .newsletter .subscribe {
  max-width: 20em;
  display: flex;
  border: 1px solid var(--zinc-900);
  border-radius: 0.2em;
}

footer .content .group .newsletter .subscribe input {
  padding: 0.5em 1em;
  border: none;
  background-color: transparent;
}

footer .content .group .newsletter .subscribe button {
  padding: 0 1em;
  border: none;
  bottom: transparent;
  border-left: 1px solid var(--zinc-900);
  border-radius: 0;
}

footer .content .group {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

footer .content .group nav {
  display: grid;
  grid: 1fr;
  gap: 1.8em;
}

footer .content .group nav .column {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

footer .content .group nav .column .title {
  font-size: 1.2rem;
  white-space: nowrap;
  font-weight: 600;
}

footer .bottom {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 0.5em 0;
  border-top: 1px solid var(--zinc-900);
}

footer .bottom h4 {
  font-weight: 400;
}

footer .bottom .socials {
  display: flex;
  gap: 0.2em;
  align-items: center;
}

@media (min-width: 728px) {
  footer .content .group {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  footer .content .group nav {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  footer .content .group nav {
    grid-template-columns: repeat(4, 1fr);
  }
}
