/* Conteneur général */
.stay-section {
  margin-top: 2rem;
}

/* Style de chaque "pill" */
.stay-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  color: #333;
  transition: all 0.25s ease;
  margin: 0.25rem;
  white-space: nowrap;
}

.stay-card i {
  font-size: 1rem;
  color: #0d6efd;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

/* Effets au survol */
.stay-card:hover {
  background: #0d6efd;
  color: white;
  border-color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.stay-card:hover i {
  color: white;
}

/* Variante pour la section "Langues parlées" */
.stay-card.lang {
  background: #f1f3f5;
  border-color: #dee2e6;
}

.stay-card.lang:hover {
  background: #198754;
  border-color: #198754;
}

/* === Section "Idéal pour votre séjour" === */
.stay-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.stay-section .d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* espace égal entre les cards */
  gap: 0.75rem;
}

/* Style général de chaque card */
.stay-card {
  flex: 1 1 calc(25% - 0.75rem); /* 4 par ligne sur grand écran */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: #333;
  transition: all 0.2s ease-in-out;
  white-space: normal;
}

/* Effet léger au survol */
.stay-card:hover {
  background-color: #096bdd;
  transform: translateY(-2px);
}

/* Icône à gauche du texte */
.stay-card i {
  font-size: 1rem;
  color: #eb60c4; /* rouge ADMSoft */
}

/* Cartes de langues */
.stay-card.lang {
  flex: 1 1 calc(20% - 0.75rem);
  justify-content: center;
  text-align: center;
}

/* === Responsive === */

/* Moyen écran (tablette) → 3 par ligne */
@media (max-width: 992px) {
  .stay-card {
    flex: 1 1 calc(33.33% - 0.75rem);
  }
  .stay-card.lang {
    flex: 1 1 calc(33.33% - 0.75rem);
  }
}

/* Petit écran (mobile) → 2 par ligne */
@media (max-width: 768px) {
  .stay-card {
    flex: 1 1 calc(50% - 0.75rem);
	margin-left: 0;
    margin-right: 0;
  }
  .stay-card.lang {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

/* Très petit écran → 1 par ligne */
@media (max-width: 480px) {
  .stay-card,
  .stay-card.lang {
    flex: 1 1 100%;
	margin-left: 0;
    margin-right: 0;
  }
}



