footer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px min(5vw, 50px) 0;
  background-color: var(--colour-4);
  border-top: 1px solid var(--colour-6);
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-menu .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu .footer-links > a > .logo {
  width: 160px;
}

.footer-menu .footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--colour-5);
  margin: 0 0 0.25rem;
}

.footer-menu .footer-links > a {
  font-size: 0.9rem;
  color: var(--colour-5);
  text-decoration: none;
}

.footer-menu .footer-links > a:hover {
  color: var(--color-light-blue);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: flex;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

.copyright-text {
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-bottom: 1.5rem;
  color: var(--colour-5);
  border-top: 1px solid var(--colour-6);
  padding-top: 1.5rem;
}
#admin-button {
  position: fixed;
  display: flex;
  justify-content: end;
  align-items: center;
  text-decoration: none;
  right: 0;
  bottom: 100px;
  z-index: 1;

  &>button {
    font-size: 2rem;
    font-weight: 600;
    padding: 0.2em 0.2em;
    background-color: lightgrey;
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
  }
  &>button:hover {
    background-color: grey;
  }

}
#whatsapp-button {
  position: fixed;
  right: 16px;
  bottom: 50px;
  z-index: 2;
  text-decoration: none;
}

#whatsapp-button button {
  font-size: 2.5rem;
  padding: 0.2em 0.3em;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#whatsapp-button button:hover {
  background-color: #128C7E;
}

@media screen and (min-width: 600px) {
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-menu .footer-links {
    width: auto;
    min-width: 140px;
  }
}

@media screen and (min-width: 769px) {
  footer {
    padding: 80px 50px 0;
  }

  .footer-menu {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
