footer {
  position: relative;
  background: var(--backgound-color);
  color: var(--gray-100);
  padding: 40px 0 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* 🔹 COLONNES PRINCIPALES */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 30px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-column  {
  list-style: none;
  padding: 0;
}

.footer-column  {
  margin-bottom: 8px;
}
.text-item-footer {
  color: var(--gray-100);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.9rem;
  transition: color 0.3s;
}
.text-item-footer:hover {
  color: var(--primary);
}

.footer-column  a {
  color: var(--gray-100);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-column  a p {
padding: 3px 0px;
}
.footer-column  a:hover {
  color: var(--primary);
}

/* 🔹 LIGNE & LIENS LÉGAUX */
hr {
  border: 0.5px solid var(--gray-100);
  margin: 20px 0;
}

.footer-bottom a {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.footer-bottom  a {
  color: var(--gray-100);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-bottom  a:hover {
  color: var(--primary);
}

.footer-bottom p {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--gray-100);
}

/* 🔹 RESPONSIVE */
@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: left;
  }

  .footer-column {
    text-align: left;
  }
}
.text-container-footer {
  display: flex;
  flex-direction: column; /* Aligner les mots verticalement */
  justify-content: center;
  align-items: center;
  height: 70px; /* Hauteur totale du conteneur des mots */
  width: auto;
}

.text-item-footer {
  font-size: 1.4rem;
  font-weight: bold;
  border: 1px solid var(--gray-100);
  padding: 10px;
  border-radius: 25px;
  margin: 0; /* Pas de marge entre les mots */
  color: var(--gray-100);
  text-align: left; /* Centrer les mots */
}
@media (max-width: 350px) {
  .text-item-footer {
    font-size: 1rem;
  }}
  @media (max-width: 280px) {
    .text-item-footer {
      font-size: 0.9rem;
    }}