.balades {
  padding: 5px 20px;
  background-color: var(--section-background-dark);
}

.balades-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.titres_section {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange-main);
}

.balade-texte {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 1rem;
}

.ligne {
  margin-bottom: 2rem;
}

.ligne.simple .colonne {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.ligne.triple {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.ligne.triple .colonne {
  flex: 1 1 calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 250px;
}

/* Images fixes */
.balade-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
  max-width: 350px;
}

/* Boutons */
.balade-btn {
  background-color: #ea4d1a;
  border: none;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.balade-btn:hover {
  background-color: #c43c13;
}
