.scroll-to-top {
  position: fixed;
  bottom: 5%;
  right: 30px;
  background-color: #C3965F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 55px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  transform: scale(0);
  border: 1px solid var(--bg);

  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover img{
  transform: translateY(-5px);

}


.scroll-to-top:hover {
  border-bottom: 1px solid white;
}

.scroll-to-top img {
  width: 24px;
  height: 24px;
}

.scroll-to-top.show {
  transform: scale(1);
}


#footer {
  background: #000611;
  padding: 6rem 2rem;
  padding-bottom: 2rem;
}

#footer .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  color: white;
  width: 80%;
  margin: 0 auto;

}

#footer .top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 4rem;
}

#footer .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding-top: 2rem;
  }


  #footer .bottom-content
  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding-top: 2rem;
    width: 100%;
  }


  #footer .bottom-content p {
    opacity: 0.8;
  }


  #footer .allright {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  #footer .bottom-content a {
    opacity: 1;
  }
  
    

  #footer .special {
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

  #footer .social  {
    display: flex;
    gap: 1rem;
    align-items: start;
  }

  #footer .social ul, #footer .menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }

  #footer .social img {
    width: 20px;
    height: 20px;
  }

  #footer .menu  {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
  }


  #footer .menu  li{
   opacity: 0.8;
  }

  #footer .menu  li:hover{
    opacity: 1;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
  }

  #footer .title  {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
  }

  #footer .title div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: start;
  }
    

  #footer .title a{
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
   }
    
   #footer .title a:hover{
    opacity: 1;
    text-decoration: underline;
   }

   #footer .opening-hours p {
    opacity: 0.8; 
   }

   #footer .opening{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
   }

   #footer .line{
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1)    ;
   }


   @media (max-width: 1200px) {
    #footer .container{
      width: 90%;
    }
  }

@media (max-width: 1000px) {


  #footer .container{
    gap: 0;
  }

  #footer {
    padding: 2rem;
  }
  #footer .top {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  #footer .title, #footer .opening,#footer .menu{
    align-items: center;
    width: 100%;
    text-align: center;
  }

  #footer .social ul, #footer .menu ul{
    align-items: center;
    width: 100%;
    text-align: center;
  }

  #footer .bottom-content{
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  #footer .allright{
    flex-direction: column;

    align-items: center;
    width: 100%;
    text-align: center;
  }


  #footer .title div{
    align-items: center;
  }
  
}
  

.whatsapp-button {
  padding: 1rem 0.8rem;
  position: fixed;
  bottom: 5%;
  left: 30px; /* instead of right */
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  gap: 1rem;
  cursor: pointer;
  z-index: 999;
  transform: scale(0);
  border: 1px solid var(--bg);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition:  0.3s ease-in-out;

}

.whatsapp-button img {
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;

}

.whatsapp-button p {
  font-size: 12px;
  text-align: center;
}



.whatsapp-button.show {
  transform: scale(1);
}





.whatsapp-button:hover img{
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .whatsapp-button p{
    font-size: 10px !important;
  }
}