:root {
  --primary-color: #3474eb;
  --primary-hover: #2164db;
  --secondary-color: #ff6b6b;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gray-light: #e9ecef;
  --gray: #adb5bd;
  --shadow: 0 5px 15px rgba(0,0,0,0.05);
  --shadow-hover: 0 10px 25px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --border-radius: 12px;
}


html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

/* Ajoutez ces styles pour corriger l'alignement du footer */

/* Structure du corps principal */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container principal - prend tout l'espace disponible */
.container.py-5 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* En mode questions, s'assurer que la carte prend l'espace nécessaire sans plus */
.search-card {
  margin-bottom: auto; /* Pousse le footer vers le bas */
  max-height: none; /* Supprimer la restriction de hauteur qui peut causer des problèmes */
}

/* Footer avec dégradé de couleur du logo */
footer {
  background: linear-gradient(135deg, #6c63ff 0%, #5a4de6 100%); /* Teinte plus violette */
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(52, 116, 235, 0.15);
  z-index: 10;
}

/* Améliorer le texte dans le footer */
footer p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Améliorer le texte dans le footer */
footer p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Conteneur de résultats - assurer qu'il prend toute la hauteur disponible */
.results-view {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.results-view .container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Mode page d'accueil - s'assurer que la hauteur est correcte */
.hero-container {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Utiliser toute la hauteur de la vue */
  color: var(--text-color);
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
}

/* Hero Section */
.hero-container {
  background: linear-gradient(135deg, #f9f9f9 0%, #e4e8f0 100%);
  height: 100vh; /* Pleine hauteur de l'écran */
  min-height: 700px; /* Hauteur minimale pour les petits écrans */
  margin-bottom: 0; /* Supprimer la marge du bas */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 2500px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  z-index: 10;
  margin-top: 7rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a5568;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-text .lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #4a5568;
  max-width: 500px;
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shapes for visual interest */
.shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

.shape-1 {
  background: linear-gradient(45deg, rgba(52, 116, 235, 0.6), rgba(90, 148, 243, 0.4));
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: morph 8s ease-in-out infinite;
}

.shape-2 {
  background: linear-gradient(45deg, rgba(250, 112, 154, 0.4), rgba(254, 225, 64, 0.2));
  width: 200px;
  height: 200px;
  top: 30%;
  right: 20%;
  animation: morph 9s ease-in-out infinite;
  animation-delay: 1s;
}

.shape-3 {
  background: linear-gradient(45deg, rgba(67, 233, 123, 0.4), rgba(56, 249, 215, 0.2));
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 20%;
  animation: morph 7s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Correction des icônes sur la page d'accueil */
/* Réinitialiser les styles pour assurer des dimensions correctes */
.destination-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  z-index: 5;
  position: relative;
}

.destination-icon {
  background: white;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  transform: translateY(0);
  cursor: pointer;
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1; /* Force un rapport largeur/hauteur de 1:1 */
}

/* Assurer que l'icône est parfaitement carrée */
.destination-icon .icon-container {
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1; /* Force un rapport largeur/hauteur de 1:1 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex: none; /* Empêcher la flexbox de modifier les dimensions */
}

.destination-icon:hover {
  transform: translateY(-10px);
}

.destination-icon i {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.destination-icon span {
  font-size: 0.9rem;
  font-weight: 600;
}

.destination-icon.beach i {
  color: #ff9f43;
}

.destination-icon.mountain i {
  color: #3474eb;
}

.destination-icon.city i {
  color: #a166ab;
}

.destination-icon.nature i {
  color: #0ba360;
}

.start-button {
  background: linear-gradient(135deg, #6c63ff 0%, #5a4de6 100%); /* Teinte plus violette */
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-align: center;
}

.start-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Nouvelle barre de progression avec gradient */
.progress-container {
  margin-bottom: 2.5rem;
  position: relative;
  padding-top: 30px;
  padding-bottom: 10px;
  display: none; /* Cachée par défaut */
}

/* Masquer les anciens points */
.progress-steps {
  display: none;
}

/* Style amélioré pour la barre de progression */
.progress {
  height: 10px;
  background-color: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
  margin: 0 10px;
}

/* Barre de progression avec gradient et animation */
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #5a94f3, #6ea1ff);
  border-radius: 20px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(52, 116, 235, 0.3);
  position: relative;
  width: 0%; /* Commence à zéro */
}

/* Animation d'éclat pour la barre */
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2s infinite;
}

/* Suppression des marqueurs textuels - comme demandé */
.progress-markers {
  display: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  60%, 100% {
    transform: translateX(100%);
  }
}

/* Search Card */
.search-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: none;
  max-height: 80vh; /* Limiter la hauteur à 80% de la vue */
  overflow-y: auto; /* Ajouter défilement si nécessaire */
}

/* Question Sections */
.question-section {
  margin-bottom: 1.5rem;
}

.question-section h3 {
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
}

.question-section h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(white);
  border-radius: 2px;
}

/* Options Container */
.options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

/* Option Cards */
.option-card {
  flex: 1;
  min-width: 140px;
  background: var(--light-bg);
  border: none;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Icon Container with Gradients */
.icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s ease;
}

/* Different gradient backgrounds for each icon type */
.couple-gradient {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.friends-gradient {
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.family-gradient {
  background: linear-gradient(45deg, #43e97b, #38f9d7);
  box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3);
}

.party-gradient {
  background: linear-gradient(45deg, #fa709a, #fee140);
  box-shadow: 0 5px 15px rgba(250, 112, 154, 0.3);
}

.nature-gradient {
  background: linear-gradient(45deg, #0ba360, #3cba92);
  box-shadow: 0 5px 15px rgba(11, 163, 96, 0.3);
}

.relax-gradient {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb);
  box-shadow: 0 5px 15px rgba(161, 140, 209, 0.3);
}

.culture-gradient {
  background: linear-gradient(45deg, #f9d423, #ff4e50);
  box-shadow: 0 5px 15px rgba(249, 212, 35, 0.3);
}

.weekend-gradient {
  background: linear-gradient(45deg, #f093fb, #f5576c);
  box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.week-gradient {
  background: linear-gradient(45deg, #5ee7df, #b490ca);
  box-shadow: 0 5px 15px rgba(94, 231, 223, 0.3);
}

.twoweeks-gradient {
  background: linear-gradient(45deg, #a166ab, #5073b8);
  box-shadow: 0 5px 15px rgba(161, 102, 171, 0.3);
}

.month-gradient {
  background: linear-gradient(45deg, #667eea, #764ba2);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.option-card .label {
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.option-card:hover .icon-container {
  transform: scale(1.1);
}

.option-card.active {
  background: #f0f7ff;
  border: 2px solid var(--primary-color);
}

.option-card.active .label {
  color: var(--primary-color);
  font-weight: 600;
}

/* Month Selector */
.month-selector-container {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  margin: 2rem 0;
}

.month-selector {
  width: 100%;
  padding: 1rem;
  border: none;
  background: var(--light-bg);
  font-family: 'Poppins', sans-serif;
  min-height: 200px;
}

.month-selector option {
  padding: 0.5rem;
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.nav-button {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-button:hover {
  background: rgba(52, 116, 235, 0.1);
}

.nav-button.next-button {
  margin-left: auto;
}

.nav-button.prev-button {
  margin-right: auto;
}

/* Search Button */
.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 300px;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--primary-color), #5a94f3);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 116, 235, 0.3);
  margin-left: auto;
}

.search-button:hover {
  background: linear-gradient(45deg, #2164db, #4384ef);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 116, 235, 0.4);
}

.search-button i {
  font-size: 1rem;
}

/* Loader */
.loader-container {
  display: none; /* This should be 'none', not 'flex' */
  text-align: center;
  padding: 5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 4px solid var(--gray-light);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  animation: spin 1s linear infinite;
}

.loader-container p {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Results View (Full Screen) */
.results-view {
  position: fixed; /* Au lieu de fixed pour permettre une structure normale */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  z-index: 900;
  overflow-y: auto; /* Permettre le scroll si nécessaire */
}

.results-view .container {
  flex: 1; /* Prend tout l'espace disponible */
  padding: 20px 15px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-title {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 2.2rem;
  margin: 0;
  position: relative;
}

.results-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.back-button {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-button:hover {
  background: var(--primary-color);
  color: white;
}

.destination-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.destination-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  cursor: pointer;
}

.destination-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.destination-type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, var(--primary-color), #5a94f3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(52, 116, 235, 0.3);
}

.destination-content {
  padding: 1.5rem;
}

.destination-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-bg);
}

.destination-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.destination-meta span {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
  gap: 6px;
}

.destination-meta i {
  color: var(--primary-color);
}

/* Styles pour le bouton de tri */
.sorting-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.sort-button-container {
  position: relative;
}

.sort-button {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-button:hover {
  background-color: #f8f8f8;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sort-arrow {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.sort-button:focus .sort-arrow,
.sort-dropdown.visible + .sort-button .sort-arrow {
  transform: rotate(180deg);
}

.sort-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-top: 0.3rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 10;
  overflow: hidden;
  display: none;
  min-width: 150px;
}

.sort-dropdown.visible {
  display: block;
  animation: fadeIn 0.2s ease;
}

.sort-option {
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-option:hover {
  background-color: #f5f5f5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .search-card {
    padding: 1.5rem;
  }
  
  .options-container {
    flex-direction: column;
  }
  
  .navigation-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-button, .search-button {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  .results-header {
    flex-direction: column;
    text-align: center;
  }
  
  .results-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .back-button {
    width: 100%;
    justify-content: center;
  }
}

/* Pour les appareils mobiles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    /* Supprimer les valeurs problématiques */
    /* padding: 0rem; */
    /* margin: -3rem; */
    /* Les remplacer par un positionnement plus stable */
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
  }
  
  /* Ajout d'une règle spécifique pour gérer le logo correctement */
  .app-logo-centered {
    position: relative;
    margin-top: 30px !important; /* Marge fixe pour tous les navigateurs */
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-bottom: 10px;
  }
  
  /* Ajustement de l'espacement du texte */
  .hero-text {
    margin-top: 0;
    padding-top: 10px;
  }
  
  /* Pour s'assurer que le contenu est bien affiché */
  .hero-container {
    padding: 20px 10px;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
}

/* Ajout spécifique pour Safari */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 992px) {
    .hero-content {
      /* Ajustements spécifiques à Safari si nécessaire */
      padding: 0;
      margin: 0;
    }
    
    .app-logo-centered {
      /* Peut-être un léger ajustement pour Safari */
      padding-top: 5px;
    }
  }
}

/* Bulles animées en arrière-plan */
.bubbles-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 8s infinite ease-in-out;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 20%;
  background: linear-gradient(to right, #43e97b, #38f9d7);
  opacity: 0.2;
  animation-duration: 12s;
}

.bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 25%;
  top: 65%;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  opacity: 0.2;
  animation-duration: 16s;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  top: 10%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  opacity: 0.2;
  animation-duration: 10s;
}

.bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 50%;
  top: 75%;
  background: linear-gradient(to right, #ff6b6b, #ff8e8e);
  opacity: 0.2;
  animation-duration: 14s;
}

.bubble:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 65%;
  top: 15%;
  background: linear-gradient(to right, #f9d423, #ff4e50);
  opacity: 0.2;
  animation-duration: 13s;
}

.bubble:nth-child(6) {
  width: 90px;
  height: 90px;
  left: 80%;
  top: 55%;
  background: linear-gradient(to right, #0ba360, #3cba92);
  opacity: 0.2;
  animation-duration: 15s;
}

.bubble:nth-child(7) {
  width: 60px;
  height: 60px;
  left: 5%;
  top: 70%;
  background: linear-gradient(to right, #fa709a, #fee140);
  opacity: 0.2;
  animation-duration: 11s;
}

.bubble:nth-child(8) {
  width: 110px;
  height: 110px;
  left: 75%;
  top: 85%;
  background: linear-gradient(to right, #f093fb, #f5576c);
  opacity: 0.2;
  animation-duration: 17s;
}

.bubble:nth-child(9) {
  width: 40px;
  height: 40px;
  left: 90%;
  top: 25%;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  opacity: 0.2;
  animation-duration: 9s;
}

.bubble:nth-child(10) {
  width: 130px;
  height: 130px;
  left: 15%;
  top: 40%;
  background: linear-gradient(to right, #43e97b, #38f9d7);
  opacity: 0.2;
  animation-duration: 18s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-40px) translateX(-10px) rotate(10deg);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-20px) translateX(15px) rotate(5deg);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0);
    opacity: 0.2;
  }
}

/* Ajuster l'opacité de l'arrière-plan du conteneur héros pour que les bulles soient visibles mais discrètes */
.hero-container {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7); /* Fond légèrement transparent */
}

.page-logo .logo-icon {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  color: #4e54c8;
}

.page-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bulles animées en arrière-plan */
.bubbles-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 8s infinite ease-in-out;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 20%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  animation-delay: 0s;
  animation-duration: 12s;
    opacity: 0.2;
}

.bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 25%;
  top: 65%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  animation-duration: 16s;
  opacity: 0.2;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  top: 10%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  animation-duration: 10s;
  opacity: 0.2;
}

.bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 50%;
  top: 75%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  animation-duration: 14s;
  opacity: 0.2;
}

.bubble:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 65%;
  top: 15%;
  background: linear-gradient(to right, #f9d423, #ff4e50);
  animation-duration: 13s;
  opacity: 0.2;
}

.bubble:nth-child(6) {
  width: 90px;
  height: 90px;
  left: 80%;
  top: 55%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  opacity: 0.2;
  animation-duration: 15s;
}

.bubble:nth-child(7) {
  width: 60px;
  height: 60px;
  left: 5%;
  top: 70%;
  background: linear-gradient(to right, #fa709a, #fee140);
    opacity: 0.2;
  animation-duration: 11s;
}

.bubble:nth-child(8) {
  width: 110px;
  height: 110px;
  left: 75%;
  top: 85%;
  background: linear-gradient(to right, #f093fb, #f5576c);
  opacity: 0.2;
  animation-duration: 17s;
}

.bubble:nth-child(9) {
  width: 40px;
  height: 40px;
  left: 90%;
  top: 25%;
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  opacity: 0.2;
  animation-duration: 9s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-40px) translateX(-10px) rotate(10deg);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-20px) translateX(15px) rotate(5deg);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0);
    opacity: 0.2;
  }
}

/* Ajuster l'opacité de l'arrière-plan du conteneur héros pour que les bulles soient visibles mais discrètes */
.hero-container {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7); /* Fond légèrement transparent */
}

.app-logo {
  position: absolute;
  top: 30px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
}

/* Style amélioré pour le logo centré */
.app-logo-centered {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 100;
}


.app-logo-centered .logo-text {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), #5a94f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  text-shadow: 2px 2px 15px rgba(52, 116, 235, 0.15);
  transition: all 0.3s ease;
}

.app-logo-centered:hover .logo-text {
  letter-spacing: -0.5px;
  transform: translateY(-2px);
}

/* "Peu importe" séparé et mis en valeur */
.any-month-container {
  margin-bottom: 1.5rem;
}

.month-card.any-month {
  width: 200px;
  margin: 0 auto;
  display: block;
}

.month-card.any-month .month-card-inner {
  background: linear-gradient(135deg, #3474eb, #5a94f3);
  color: white;
  font-weight: 600;
  padding: 15px 25px;
  display: flex;
  gap: 10px;
}

.month-card.any-month .month-card-inner.active {
  background: linear-gradient(135deg, #2164db, #4384ef);
  box-shadow: 0 8px 20px rgba(52, 116, 235, 0.3);
  transform: scale(1.05);
}

/* Grille de mois équilibrée */
.months-grid {
  margin: 2rem 0;
}

.months-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.month-card {
  flex: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.month-card:hover {
  transform: translateY(-5px);
}

.month-card-inner {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 15px 10px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-card-inner.active {
  border-color: var(--primary-color);
  background-color: #f0f7ff;
}

.month-card span {
  font-size: 0.95rem;
}

/* Couleurs saisonnières */
.month-card.winter .month-card-inner {
  background: linear-gradient(135deg, #f1f7fb, #e7eef4);
}

.month-card.spring .month-card-inner {
  background: linear-gradient(135deg, #e8f5e9, #dcedc8);
}

.month-card.summer .month-card-inner {
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
}

.month-card.autumn .month-card-inner {
  background: linear-gradient(135deg, #ffe5d9, #ffccbc);
}

.month-card.winter .month-card-inner.active {
  background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
  box-shadow: 0 8px 15px rgba(3, 169, 244, 0.3);
}

.month-card.spring .month-card-inner.active {
  background: linear-gradient(135deg, #dcedc8, #c5e1a5);
  box-shadow: 0 8px 15px rgba(139, 195, 74, 0.2);
}

.month-card.summer .month-card-inner.active {
  background: linear-gradient(135deg, #ffe0b2, #ffcc80);
  box-shadow: 0 8px 15px rgba(255, 152, 0, 0.2);
}

.month-card.autumn .month-card-inner.active {
  background: linear-gradient(135deg, #ffccbc, #ffab91);
  box-shadow: 0 8px 15px rgba(255, 87, 34, 0.5);
}

/* Responsive pour écrans mobiles */
@media (max-width: 768px) {
  .months-row {
    flex-wrap: wrap;
  }
  
  .month-card {
    flex-basis: calc(33.333% - 8px);
    min-width: unset;
  }
  
  .month-card.any-month {
    width: 100%;
  }
}

/* Pour très petits écrans */
@media (max-width: 480px) {
  .month-card {
    flex-basis: calc(50% - 6px);
  }
}

/* Optimisations pour écrans plus petits ou très grands */
@media (min-height: 900px) {
  .search-card {
    max-height: 70vh; /* Peut prendre moins de place sur les grands écrans */
  }
}

@media (max-height: 700px) {
  .option-card {
    padding: 1rem;
  }
  
  .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .question-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  
  .month-card-inner {
    padding: 12px 8px;
  }
}

/* Logo dans l'en-tête des autres pages */
.app-logo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px 0;
}

.app-logo-header .logo-icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--primary-color), #5a94f3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(52, 116, 235, 0.3);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.app-logo-header:hover .logo-icon {
  transform: rotate(0deg);
}

.app-logo-header .logo-icon i {
  color: white;
  font-size: 1.2rem;
}

.app-logo-header .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-color), #5a94f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

/* Ajustement de la barre de progression pour accommoder le logo */
.progress-container {
  padding-top: 15px;
}

/* Ajustement pour la vue des résultats */
.results-view .app-logo-header {
  margin-top: 10px;
}

/* Version responsive */
@media (max-width: 768px) {
  .app-logo-header {
    padding: 10px 0;
  }
  
  .app-logo-header .logo-icon {
    width: 30px;
    height: 30px;
  }
  
  .app-logo-header .logo-text {
    font-size: 1.3rem;
  }
}

/* Ajustements responsive pour mobile */

/* Correction du logo sur la page d'accueil */
@media (max-width: 768px) {
  /* Logo sur la page d'accueil - éviter la superposition avec le texte */
  .app-logo-centered {
    position: relative;
    top: 0;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  
  .app-logo-centered .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .app-logo-centered .logo-text {
    font-size: 2rem;
  }
  
  /* Ajustement du container hero pour mobile */
  .hero-container {
    height: auto;
    min-height: 120vh;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin-top: 0;
  }

  .hero-text .lead {
    font-size: 1.1rem;
  }

  /* Réduire les tailles et espacements des éléments */
  .search-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    overflow-y: visible;
    max-height: none;
  }
  
  .question-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .option-card {
    padding: 1rem 0.75rem;
  }
  
  .icon-container {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .option-card .label {
    font-size: 0.95rem;
  }
  
  /* Améliorer la sélection des mois sur mobile */
  .any-month-container {
    margin-bottom: 1rem;
  }
  
  .month-card-inner {
    padding: 10px 5px;
  }
  
  .month-card span {
    font-size: 0.85rem;
  }
  
  /* Corriger les problèmes de scroll */
  .results-view {
    position: absolute; /* Utiliser absolute au lieu de fixed pour permettre le scroll */
    height: auto;
    min-height: 100%;
  }
  
  /* Ajustements des résultats */
  .results-header h2 {
    font-size: 1.8rem;
  }
  
  .back-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .destination-card {
    margin-bottom: 1rem;
  }
  
  .destination-image {
    height: 180px;
  }
  
  .destination-name {
    font-size: 1.3rem;
  }
  
  .destination-content {
    padding: 1.2rem;
  }
  
  /* Ajuster la navigation */
  .navigation-buttons {
    margin-top: 1rem;
  }
  
  .nav-button, .search-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Petits écrans mobiles */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text .lead {
    font-size: 1rem;
  }
  
  .start-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Ajuster la grille de mois pour très petits écrans */
  .months-row {
    gap: 8px;
    margin-bottom: 8px;
  }
  
  /* Forcer le logo de la page de résultats à rester visible sans scroller */
  .results-view .app-logo-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
    z-index: 10;
    padding: 10px 0;
  }
}

/* Ajustements pour mobile UNIQUEMENT */
@media (max-width: 768px) {
  /* Footer plus petit sur mobile */
  footer {
    padding: 0.8rem 0;
  }

  footer p {
    margin: 0 auto;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    line-height: 1.4;
    max-width: 90%;
  }
  
  /* Réduction des cartes de résultats sur mobile */
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .destination-image {
    height: 160px;
  }
  
  .destination-content {
    padding: 1rem;
  }
  
  .destination-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .destination-description {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .destination-meta span {
    font-size: 0.85rem;
  }
}

/* Structure pour que le footer soit en bas sur toutes les pages */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container principal - prend tout l'espace disponible */
.container.py-5 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer principal du site */
footer {
  background: linear-gradient(135deg, #6c63ff 0%, #5a4de6 100%); /* Teinte plus violette */
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(52, 116, 235, 0.15);
  z-index: 10;
}

/* Structure pour la vue résultats */
.results-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Utiliser 100% au lieu de 100vh */
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  z-index: 900;
  overflow-y: auto;
}

/* Contenu principal - occupe l'espace disponible mais permet au footer de rester en bas */
.results-view .container {
  flex: 1;
  padding: 20px 15px; /* Réduire le padding */
}

/* Assurer suffisamment d'espace avant le footer */
.results-grid {
  margin-bottom: 90px;
}

/* S'assurer que le footer est correctement affiché quand les résultats sont visibles */
body.showing-results .results-view footer {
  display: block;
}

/* Améliorer l'interaction avec les logos */
.app-logo-header, .app-logo-centered {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.app-logo-header:hover, .app-logo-centered:hover {
  transform: translateY(-3px);
}

/* Améliorer les icônes sur la page d'accueil */
.destination-icon .icon-container {
  width: 60px;
  height: 60px; /* Même valeur que la largeur pour un cercle parfait */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-icon:hover .icon-container {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

/* S'assurer que les gradients sont appliqués avec les bonnes couleurs */
.destination-icon .party-gradient {
  background: linear-gradient(45deg, #fa709a, #fee140);
  box-shadow: 0 5px 15px rgba(250, 112, 154, 0.3);
}

.destination-icon .relax-gradient {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb);
  box-shadow: 0 5px 15px rgba(161, 140, 209, 0.3);
}

.destination-icon .nature-gradient {
  background: linear-gradient(45deg, #0ba360, #3cba92);
  box-shadow: 0 5px 15px rgba(11, 163, 96, 0.3);
}

.destination-icon .culture-gradient {
  background: linear-gradient(45deg, #f9d423, #ff4e50);
  box-shadow: 0 5px 15px rgba(249, 212, 35, 0.3);
}

/* Style pour les liens de logo */
.logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.logo-link:hover {
  text-decoration: none;
  color: inherit;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.budget-info {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.budget-amount {
  font-weight: bold;
}

.budget-details {
  font-size: 0.8rem;
  opacity: 0.8;
}

.destination-image {
  position: relative;
}

/* Nouveau conteneur principal pour les résultats */
.results-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Styles améliorés pour les filtres */
.results-filters {
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.filter-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background-color: #edf2fd;
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.filter-btn.active i {
  color: white;
}

/* Styles simplifiés pour le bandeau de filtres */
.filters-header {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filters-header h2 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.results-count {
  font-size: 0.9rem;
  background: rgba(74, 137, 220, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 0.5rem;
  font-weight: normal;
  color: #666;
}

.filter-buttons {
  display: flex;
  gap: 0.8rem;
}

/* Grille de destinations claire et efficace */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 par ligne sur desktop */
  grid-column: auto;
  gap: 1.5rem;
}

/* Media queries pour la responsivité */
@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 par ligne sur tablette */
  }
}

@media (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: 1fr; /* 1 par ligne sur mobile */
  }
}

/* Style pour le lien d'accès direct aux destinations */
.direct-access-link {
  margin-top: 1.5rem;
}

/* Style pour le lien d'accès direct aux destinations */
.direct-access-link {
  margin-top: 1.5rem;
}

.browse-link {
  color: rgba(255, 255, 255, 0);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.browse-link:hover {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.browse-link i {
  font-size: 0.8rem;
}

/* Styles pour le nouveau conteneur des actions de résultats */
.results-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Style pour le bouton "Toutes les destinations" */
.all-destinations-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(45deg, #5a94f3, #6999e0);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(90, 148, 243, 0.25);
}

.all-destinations-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(90, 148, 243, 0.35);
  background: linear-gradient(45deg, #4384ef, #6ea4ff);
  color: white;
  text-decoration: none;
}

.all-destinations-button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(90, 148, 243, 0.3);
}

.all-destinations-button i {
  font-size: 1.1rem;
}

/* Mise à jour du style des résultats header pour qu'il supporte le nouveau layout */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Adaptations pour mobile */
@media (max-width: 768px) {
  .results-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .all-destinations-button, .back-button {
    width: 100%;
    justify-content: center;
  }
}

.back-button a{
  text-decoration: none;;
}

\style.css
/* Bulles animées en arrière-plan */
.bubbles-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Ajuster l'opacité de l'arrière-plan du conteneur héros pour que les bulles soient visibles mais discrètes */
.hero-container {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7); /* Fond légèrement transparent */
}

.page-logo .logo-icon {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  color: #4e54c8;
}

.page-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
