/* -----------------------------------Footer----------------------------------------------- */
footer {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--colour-1);
  color: black;
  padding: 50px;
  padding-bottom: 0;
}
.footer {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: auto;

  justify-items: start;
  align-items: start;
  width: 100%;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 0.5rem;
}
.footer-menu a, .footer-menu p {
  line-height: 1.5rem;
  /* padding-left: 16px; */
  color: black;
}
.footer-menu a, .footer-menu p {
  margin: 0;
}
.footer-menu a:hover {
  color: white;
}
.footer-menu .social-icons {
  display: flex;
  flex-direction: row;
  font-size: 2rem;
  gap: 0.5rem;
}
.footer-menu .social-icons a {
  color: var(--colour-2);
}
.footer-menu .payment-icons {
  padding-left: 9px;
}
.footer-menu .social-icons a:hover {
  color: white;
}

.copyright-text {
  text-align: center;
  margin-top: 20px;
}
#admin-button {
  position: fixed;
  display: flex;
  justify-content: end;
  align-items: center;
  text-decoration: none;
  right: 0;
  bottom: 100px;
}
#admin-button 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;
}
#admin-button button:hover{
  background-color: grey;
}

#whatsapp-button {
  position: fixed;
  display: flex;
  justify-content: end;
  align-items: center;
  text-decoration: none;
  right: 10px;
  bottom: 50px;
}

#whatsapp-button button{
  font-size: 3rem;
  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: 425px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media screen and (min-width: 600px) {
  .footer {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    width: min(90vw, 800px);
  }
  #whatsapp-button {
    right: 20px;
    bottom: 90px;
  }
}
@media screen and (min-width: 769px) {
  #whatsapp-button {
    right: 50px;
  }
  #whatsapp-button button{
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
