/* Styles pour le footer */
.footer {
  color: white; /* Couleur du texte en blanc */
  padding: 40px 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  background-color: transparent; /* Le fond devient transparent */
  box-shadow: none; /* Enlève toute ombre si elle existe */
}

/* Conteneur principal du footer */
.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Section adresse dans le footer */
.footer-address {
  flex: 1;
  max-width: 45%;
  padding: 0 20px;
}

.footer-address h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-address p {
  font-size: 1rem;
  color: #fff;
}

.footer-address a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-address a:hover {
  text-decoration: underline;
}

/* Section horaires d'ouverture */
.footer-schedule {
  flex: 1;
  max-width: 45%;
  padding: 0 20px;
}

.footer-schedule h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-schedule p {
  font-size: 1rem;
  color: #fff;
}

/* Liste de liens en bas du footer */
.footer-links {
  margin-top: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-links li {
  font-size: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-sav {
  flex: 1;
  max-width: 45%;
  padding: 0 20px;
}

.footer-sav h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-sav p {
  font-size: 1rem;
  color: #fff;
}

.footer-sav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.footer-sav a:hover {
  text-decoration: underline;
}

/* Responsivité */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-address, .footer-schedule {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-links ul {
    flex-direction: column;
  }
}
