/* FOOTER */
.footer-container {
  background-color: var(--gray-light);
  bottom: 0px;
  padding: 1.5rem 1rem 1.5rem 1rem;
  display: flex;
  text-align: center;
  margin-top: 8rem;
}

footer {
  margin-left: 8%;
  margin-right: 8%;
  width: 100%;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

footer a {
  text-decoration: none;
  color: var(--primary-dark);
  transform: color 0.3s ease;
}

footer img {
  cursor: pointer;
}

.footer-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-category {
  display: flex;
  flex-direction: column;
  padding: 3rem 0rem 3rem 0rem;
}

.footer-category-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  gap: 1rem;
}

.footer-category-list p {
  margin-top: 0;
  font-size: var(--font-size-regular); /* Adjust font size */
  font-weight: var(--typo-medium);
}

.footer-category-list a {
  font-size: var(--font-size-regular); /* Adjust font size */
  font-weight: var(--typo-regular);
}

.footer-category-list a:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 0.5px;
}

.copyright {
  padding: 0;
  margin: 0;
  font-size: var(--font-size-regular); /* Adjust font size */
  font-weight: var(--typo-regular);
}

.footer-logo {
  display: flex;
  flex-direction: row;
  gap: 35px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 50px;

  a {
    img {
      height: 40px;
    }
  }
}

@media (max-width: 1200px) {
  .footer-list {
    flex-direction: column;
  }

  .footer-category {
    padding: 1.5rem 0 1.5rem 0;
  }

  .footer-logo {
    gap: 20px;

    a {
      img {
        height: 35px;
      }
    }
  }
  .copyright {
    font-size: var(--font-size-small); /* Adjust font size */
  }
}
