
/*                            */
/*           FOOTER           */
/*                            */

footer{
  margin-top: 30px;
  text-align: center;
}

.footer-wave img {
  width: 100%;
  display: block;
  margin-bottom: -200px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-avis {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  flex: 0 0 300px;
}

.footer-avis h3 {
  font-size: 1.2rem;
  text-transform: inherit;
}

.footer-avis a{
  text-transform: inherit;
  margin: 20px auto;
}
.footer-avis a:focus{
  text-transform: inherit;
}

.btn-avis {
  background: var(--color_rouge);
  color: var(--color_blanc);
  font-weight: 900;
  font-variation-settings: 'wght' 900;
  font-family: 'Open Sans Static', 'Open Sans', sans-serif;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
}

.etoiles {
  color: var(--color_orange);
  font-size: 1.2rem;
}

.footer-logo {
  flex: 0 0 300px;
  text-align: right;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 10px;
}

.footer-slogan {
  font-size: 0.9rem;
  color: var(--color_rouge);
}

.footer-menu {
  background-color: var(--color_beige);
  padding: 22px 0px 16px 0px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  padding-bottom: 10px;
}

.footer-links li + li::before {
  content: " - ";
  margin: 0 8px;
  color: var(--color_rouge);
}

.footer-menu a{
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: var(--color_rouge) !important;
  transition: all 0.2s ease-in-out;
}

.footer-menu a:hover{
  color: var(--color_orange) !important;
}

.footer-menu p{
  margin: 0px;
  font-size: 12.8px;
  color: var(--color_rouge);
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-avis, .footer-logo {
    flex: unset;
  }
}
