footer {
  position: relative;
  width: 100%;
  color: white;
  z-index: 1;
}

.footer-bg-image{
  position: absolute;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.95;
}

.container-footer {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.back-to-top {
  order: 1;
  margin-top: 20px;
}

.back-to-top a {
  display: inline-block;
  width: 25px;
  height: 25px;
  transition: transform 0.5s;
}

.back-to-top a:hover {
  transform: translateY(-4px);
}

.back-to-top img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 0.80rem black);
}

.footer-logo {
  order: 2;
  max-width: 200px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-contacts {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    margin: 40px 40px 60px 40px;
    align-items: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 40px;

}

.contact-item {
  text-align: center;
  font-size: 21px;
}

.contact-font{
    font-family: 'Vera Humana 95';
    margin-bottom: 0;
    text-align: center;
}

.social-links {
  order: 3;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.social-links a {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.08);
}

.social-links img {
  width: 100%;
  height: auto;
}

.footer-links {
  order: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
  letter-spacing: 1px;
}

.footer-links a:hover {
  text-shadow: 1px 2px 3px black;
  transition: all 0.2s ease;
}

.font-lien-utile{
  font-family: 'Vera Humana 95';
}

.footer-copyright {
  order: 6;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-copyright p{
  margin-bottom: 0;
}

.contact-item.phone,
.contact-item.email {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.contact-item.phone p,
.contact-item.email p {
  pointer-events: none;
}

.contact-item.phone::after,
.contact-item.email::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: default;
}


/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 1300px) {
  .footer-logo{
    max-width: 175px;
  }
  
  .contact-font{
    font-size: 18px;
  }

  .footer-links{
    gap: 40px;
  }
  
  .social-links{
    gap: 30px;
  }
  
  .footer-links a{
    font-size: 16px;
  }  
  
  .footer-copyright p{
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .footer-contacts{
    gap: 50px;
  }
  
    .social-links{
    gap: 20px;
  }
}
  
@media (max-width: 1100px) {
  .container-footer{
    padding-bottom: 15px;
  }
  
  .footer-logo{
    max-width: 170px;
  }  
  
  .footer-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px;
    margin: 20px 20px;
  }
  
  .footer-contacts .social-links {
    order: 4; 
  }  
  
  .contact-font{
    font-size: 20px;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    text-align: center;
  }

  .footer-links a {
    display: block;
    padding: 5px 0;
  }   
}
  
  
@media (max-width: 1000px) {
  .footer-bg-image{
    height: 130%;
  }
  
  .footer-logo {
    max-width: 160px;
  }
  
  .contact-font{
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
.back-to-top{
  margin-bottom: 5px;
 } 
}

@media (max-width: 720px) {
  .footer-contacts {
    flex-direction: column;
    display: flex;
    gap: 30px;
    padding: 30px;
    margin: 30px 20px;
  }

  .footer-contacts .social-links {
    order: 4;
    margin-top: 20px;
  }

  .footer-links {
    flex-direction: column;
    display: flex;
  }
}

@media (max-width: 700px) {
  .footer-logo {
    max-width: 150px;
 }
}
 
@media (max-width: 400px) {
 .contact-font {
    font-size: 16px;
 }
 
 .social-links a {
    width: 22px;
    height: 22px;
 }
 
 .footer-logo {
    max-width: 130px;
 } 
}

@media (max-width: 370px) {
 .social-links a {
    width: 20px;
    height: 20px;
 } 
}
/* RESPONSIVE */
/* RESPONSIVE */