/* Styles généraux pour le footer */
.footer {
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3vw 3em;
}

/* Conteneur des colonnes principales */
.footer-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
  width: 100%;
  margin: 0 auto;
}

/* Style individuel des colonnes */
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 150px;
  margin: 0 0 0 -2em;
}

/* Conteneur pour aligner logo et texte horizontalement */
.logo-container {
  display: flex;
  flex-direction: row;
  align-items: self-start;
  gap: 1vw;
  justify-content: center;
}

/* Nouveau conteneur pour le titre et le sous-titre */
.logo-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ajustements pour le logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wp-block-site-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.5vw;
}

.wp-block-site-logo img {
  height: auto;
  max-width: 7vw;
  min-width: 50px;
  margin-right: 1vw;
}

/* Style du titre du logo */
.wp-block-site-title.logo-text {
  font-size: min(3vw, 2.5em);
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* Style du sous-titre */
.footer h2.subtitle {
  font-size: min(1.2vw, 0.8em);
  color: #1f8bd7;
  margin: 0.5vw auto 0;
  white-space: nowrap;
}

/* Alignement et style des liens */
.footer-links {
  text-align: center;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 1vw 1.5vw -2vw 1.5vw;
  font-size: min(1.5vw, 1em);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #000000;
}

/* Style des icônes des réseaux sociaux */
.footer-social {
  display: flex;
  justify-content: center;
  margin: -2em;
  gap: 0;
}

.footer-social a {
  color: #555;
  font-size: 1.5vw;
  text-decoration: none;
  transition: color 0.3s;
  margin: -0.5em;
}

.footer-social a:hover {
  color: #000000;
}

/* Style du texte de copyright */
.footer-copy {
  font-size: 1.5vw;
  color: #777;
  text-align: center;
  margin: -1em auto;
}

/* Styles responsives pour les petits écrans */
@media screen and (max-width: 693px) {
  .footer {
    margin: 0 auto;
    padding: 2em 0 0 0;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-column {
    width: 100%;
    margin: -1em auto 0;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
    margin: 0 auto -7em;
  }

  .wp-block-site-logo img {
    max-width: 7vw;
    min-width: 100px;
  }

  .wp-block-site-title.logo-text {
    font-size: 5vw;
  }

  .footer h2.subtitle {
    font-size: 2vw;
  }

  .footer-links {
    text-align: center;
    margin-top: 1em;
  }

  .footer-links a {
    display: block;
    margin: 0.5em 0;
    font-size: 3.5vw;
  }

  /* Ajustement spécifique pour "Politique de confidentialité" */
  .footer-links a:nth-child(3) {
    margin: -2em auto 2em auto;
  }

  .footer-copy {
    font-size: 3.5vw;
  }

  .footer-social a {
    font-size: 4vw;
    margin: 0;
    padding: 0;
  }
}
