/* Importation de la police Fredoka */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&display=swap');

/* Applique un style de base aux éléments */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  }

body {
  background-color: #cb6de5;
  color: white;
  text-align: center;
  line-height: 1.6;
  z-index: 1;
  font-family: "Fredoka One", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.top-header {
  background-color: #9400d9;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

/* Zones */
.top-header .left,
.top-header .right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-header .right {
  justify-content: flex-end;
}

/* Séparateurs */
.top-header .separator {
  color: #D9D9D9;
  font-weight: bold;
}

/* Liens généraux */
.top-header a {
  color: white;
  text-decoration: none;
}

/* Icônes gauche (téléphone + mail) */
.top-header .left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  transition: color 0.2s ease;
}

.top-header .left span i {
  color: #f5bd4f;
  transition: transform 0.2s ease, color 0.2s ease;
}

.top-header .left span:hover {
  color: #f0b134;
}

.top-header .left span:hover i {
  transform: scale(1.2);
  color: #fc952e;
}

/* Icônes à droite */
.top-header .right i {
  color: #ff3c3c;
  transition: transform 0.2s ease, color 0.2s ease;
}

.top-header .right a:hover i {
  transform: scale(1.2);
  color: #ebe7dd;
}

/* Bouton devis */
.top-header .right .devis-btn {
  background: white;
  color: #D9006E;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.top-header .right .devis-btn:hover {
  background: #D9006E;
  color: white;
}

/* Liens à droite */
.top-header .right a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

/* Effet commun au survol */
.top-header .right a:hover {
  color: #F4C542;
}

/* Responsive */
@media (max-width: 900px) {
  .top-header {
    grid-template-columns: 1fr auto;
    padding: 8px 20px;
  }

  /* On cache les textes et séparateurs */
  .top-header .left span,
  .top-header .right a:not(.devis-btn) {
    font-size: 0;
  }

  .top-header .separator {
    display: none;
  }

  /* On garde les icônes visibles */
  .top-header .left span i,
  .top-header .right a i {
    font-size: 18px;
  }

  /* Alignement */
  .top-header .left,
  .top-header .right {
    gap: 12px;
    flex-wrap: nowrap;
  }

  /* Bouton devis toujours visible */
  .top-header .right .devis-btn {
    font-size: 14px;
    padding: 5px 12px;
  }
}

@media (max-width: 600px) {
   .top-header .left span i,
  .top-header .right a i {
    font-size: 14px;
  }
  .top-header .right .devis-btn {
    font-size: 10px;
    padding: 5px 12px;
  }
}




#logo {
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  z-index: 1;
  max-width: 40%;
  height: auto;
}

h1{
  color:black;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.9rem;
  }
  #logo {
    width: 70%;
    max-width: 400px;
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  #logo {
    width: 70%;
    max-width: 70%;
    height: auto;
    margin-bottom: 0;
    border: 5px;
  }
}


/* Conteneur des boutons */
.button-containeur {
  display: flex;
  flex-wrap: wrap; /* Permet de passer à la ligne */
  justify-content: space-evenly; /* Répartit les boutons uniformément */
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Style des boutons */
a.element {
  display: inline-block;
  padding: 15px 30px; /* Espacement interne */
  font-size: 2em; /* Texte plus grand */
  color: rgb(19, 17, 17); /* Texte noir */
  text-decoration: underline; /* Texte souligné */
  text-align: center;
  border-radius: 30px; /* Coins arrondis */
  transition: all 0.3s ease;
  cursor: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 15px 10px; /* Espacement entre les boutons */
  margin-top: 50px;
  margin-bottom: 50px;
  width: calc(25% - 20px); /* Largeur pour 4 boutons par ligne */
  max-width: 800px;
  text-align: center;
  height: 100%;
  text-decoration: none;

}

.button-containeur .element {
  font-weight: 700;                 /* texte en gras */
  text-decoration: underline;       /* texte souligné */
  text-underline-offset: 4px;       /* espace entre texte et soulignement */
  text-decoration-thickness: 2px;   /* épaisseur du soulignement */
}

/* Couleurs uniques pour chaque bouton */
.bouton1 {
  background-color: #ff4d4d; /* Rouge */
  transform: rotate(-10deg); /* Incliné vers la gauche */
}

.bouton2 {
  background-color: #ffcc00; /* Jaune */
  transform: rotate(10deg); /* Incliné vers la droite */
}

.bouton3 {
  background-color: #6a0dad; /* Mauve */
  transform: rotate(-5deg); /* Incliné légèrement vers la gauche */
}

a.element:hover {
  background-color: #e079be; /* Changement de couleur de fond */
  color:black !important;
  transform: scale(1.1); /* Agrandissement léger */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Ombre plus forte */
}

@media (min-width: 711px) and (max-width: 1200px) {
  a.element {
    width: calc(30% - 10px);
    font-size: 1em;
    margin: 10px 5px;
  }
}

@media (min-width: 469px) and (max-width: 710px) {
a.element{
  margin:10px 0; 
  max-width: 250px;
  font-size: 1em;
  }
}

@media (max-width: 710px) {
  .button-containeur {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  a.element {
    width: calc(70% - 50px);
    margin: 20px 0;
  }
}

@media (max-width: 468px) {
  a.element{
    font-size: 1em;
    max-width: 200px;
  }
}

/* --- Structure principale --- */
.banner {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
  clip-path: ellipse(150% 100% at 50% 0%);
}

/* Colonne gauche (fond rose) */
.banner-left {
  flex: 1 1 40%;
  background: #ebc3d3; /* rose fuchsia */
  color: rgb(5, 5, 5);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.banner-left h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.banner-left p {
  margin-bottom: 1.5em;
  font-size: 1.5em;
}

.btn {
  display: inline-block;
  padding: 1rem 0.5rem;
  background: #3b02d8; /* vert clair */
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  max-width: 70rem;
  font-size: 1.5em;
}

/* Colonne droite (image + éléments décoratifs) */
.banner-right {
  flex: 1 1 60%;
  position: relative;
  overflow: hidden;
}

.banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .banner-left h2{
    font-size: 2em;
}
}

/* Responsive */
@media (max-width: 900px) {
  .banner {
    flex-direction: column;
  }

  .banner-left, .banner-right {
    flex: 1 1 100%;
  }

  .banner-left {
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* Titre plus petit sur mobile */
  .banner-left h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  /* Texte plus lisible sur mobile */
  .banner-left p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  /* Bouton adapté */
  .btn {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }

  .bubble, .star, .price {
    transform: scale(0.8);
  }
}

/* Encore plus petit (smartphones étroits) */
@media (max-width: 480px) {
  .banner-left h2 {
    font-size: 1.4rem;
  }

  .banner-left p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.7rem 0.9rem;
  }
}



/* Titre principal de la section */
h4 {
  font-size: 3em;
}

/* Section */
.services-section {
  padding: 3rem 2rem;
  text-align: center;
}

/* Diminuer l'espace entre le titre et le texte */
.services-section h4 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem; /* réduit l'espace sous le titre */
}

/* Augmenter l'espace après le texte */
.services-section p {
  max-width: 800px;
  margin: 0 auto 2rem auto; /* 0 au-dessus, 2rem en dessous */
  font-size: 1.5rem;
  color: #ffffff;
}


/* Cartes */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* Overlay avec titre plus lisible */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.2rem;
  color: #fff;
  font-weight: bold;
  text-align: left;
  clip-path: ellipse(150% 100% at 50% 100%);
  height: auto;
}

.overlay h3 {
  margin: 0;
  font-size: 1.8rem; /* titre plus grand */
  line-height: 1.3;
}

.overlay p {
  margin-top: 0.8rem;
  font-size: 1.2em; /* sous-texte plus lisible */
  font-weight: 400;
  color: #f1f1f1;
}

/* Couleurs */
.overlay.pink { background: #e91e63; }
.overlay.green { background: #8bc34a; }
.overlay.blue { background: #03a9f4; }
.overlay.purple { background: #9c27b0; }
.overlay.orange { background: #ff6600; }
.overlay.teal { background: #009688; }
.overlay.rose { background: #f3af1d; }


/* =========================
   RESPONSIVE SERVICES
========================= */

/* Tablette */
@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .card {
    height: 360px;
  }
   .services-section h4 {
    font-size: 3rem;
  }

  .services-section p {
    font-size: 1.2em;
}
}

/* Mobile */
@media (max-width: 600px) {
  .services-section {
    padding: 2.2rem 1.2rem;
  }

  .services-section h4 {
    font-size: 2.6rem;
  }

  .services-section p {
    font-size: 1.15rem;
    margin: 0 auto 1.6rem auto;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .card {
    height: 340px;
    border-radius: 16px;
  }

  .overlay {
    padding: 0.9rem 1rem;
  }

  .overlay h3 {
    font-size: 1.4rem;
  }

  .overlay p {
    font-size: 0.95rem;
  }
}

/* ✅ Responsive : sous 400px => garder seulement le titre, garder la forme arrondie */
@media (max-width: 400px) {

  /* 1) Cartes en 1 colonne + éviter le min 400px qui casse sur petit écran */
  .services-cards{
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  /* 2) Ajuster la hauteur de la card si besoin */
  .card{
    height: 320px; /* tu peux mettre 300/340 selon ton rendu */
  }

  /* 3) Overlay : on garde EXACTEMENT la forme, mais on réduit l'espace */
  .overlay{
    padding: 0.9rem 1rem;
    /* important : garde une hauteur mini pour conserver la forme arrondie */
    min-height: 95px; /* ajuste (80-110) selon ton design */
  }

  /* 4) On garde uniquement le titre */
  .overlay p{
    display: none;
  }

  .overlay h3{
    font-size: 1.5rem;
    line-height: 1.2;
    margin-top: 20px;
  }
}





.main-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* assure que les colonnes prennent toute la hauteur */
  gap: 3rem;
  padding: 40px;
  max-width: 1400px; /* centre le contenu */
  margin: 0 auto;
}

/* Colonne gauche */
.left-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap:80px;
  padding-top: 100px; /* décale toutes les cartes vers le bas */
}

/* Cartes gauche */
.content-layout, .weather-cancellation {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  height: 43%; /* prend presque la moitié du conteneur gauche */
  width: 100%; /* élargit légèrement les cartes */
  box-sizing: border-box;
  font-size: 1.5em;
}
.content-layout { background-color: #e74c3c; }
.weather-cancellation { background-color: #f39c12; }

.image-container, .weather-icon {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 190px;
}

/* Colonne droite */
.right-container {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Titre carousel lumineux */
.carousel-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #fff; /* couleur de base du texte */
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff;
  animation: flicker 1.5s infinite alternate;
}

/* Animation clignotante */
@keyframes flicker {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #ff00ff, 0 0 8px #ff00ff;
    opacity: 0.7;
  }
  100% {
    text-shadow: none;
    opacity: 0.5;
  }
}


/* Carousel (ratio 4:5) */
.carousel {
  width: 80%;
  aspect-ratio: 4 / 5;      /* IMPORTANT: même ratio que tes photos */
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex: 1;
}

/* Track doit prendre la hauteur du carousel */
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Chaque slide doit aussi prendre toute la hauteur */
.carousel-item {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
}

/* L'image remplit le slide */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* OK car conteneur = 4:5 */
  display: block;
}

/* =========================
   RESPONSIVE CLEAN & COHÉRENT
   (à mettre APRÈS ton CSS général)
========================= */

/* 1) Ajustements doux (sans changer le visuel) */
@media (max-width: 1100px) {
  .main-container { gap: 2rem; padding: 28px; }
  .left-container { gap: 50px; padding-top: 60px; }
  .carousel-title { font-size: 2.4rem; }
}

/* 2) Passage en colonne (cartes au-dessus du carousel) */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    padding: 22px;
  }

  /* même largeur de référence */
  .right-container,
  .carousel,
  .left-container {
    width: 100%;
    max-width: 600px;
  }

  .left-container {
    padding-top: 0;
    gap: 18px;
  }

  /* Cartes : layout stable image/texte */
  .content-layout,
  .weather-cancellation {
    width: 100%;
    height: auto;                 /* on neutralise ton 43% en colonne */
    min-height: 160px;
    gap: 14px;
    padding: 16px;
    align-items: center;
    font-size: 1.3em;
  }

  /* ✅ IMAGE : taille cohérente (ni min-width qui casse, ni width fixe) */
  .image-container,
  .weather-icon {
    /* remplace ton min-width:190px sur mobile */
    min-width: 0;
    flex: 0 0 clamp(120px, 32vw, 190px);  /* 120 -> 190 selon l'écran */
    width: clamp(120px, 32vw, 190px);
    height: auto;

    /* très important : si c'est <img> */
    object-fit: contain;          /* pas coupée */
    display: block;
  }

  /* ✅ TEXTE : prend le reste + retours à la ligne propres */
  .content-layout > :not(.image-container):not(.weather-icon),
  .weather-cancellation > :not(.image-container):not(.weather-icon) {
    flex: 1;
    min-width: 0;
  }

  .content-layout p,
  .weather-cancellation p,
  .content-layout span,
  .weather-cancellation span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
    font-size: 1.1em;
  }
}

@media (max-width: 700px) {
  .content-layout p,
  .weather-cancellation p,
  .content-layout span,
  .weather-cancellation span {
    font-size: 1.3em;
  }
  .content-layout,
  .weather-cancellation {
    font-size: 1.1em;
  }
}

/* 3) Petits écrans : on réduit progressivement, sans casser la cohérence */
@media (max-width: 520px) {
  .carousel-title { font-size: 2rem; }

  .content-layout,
  .weather-cancellation {
    min-height: 145px;
    padding: 14px;
    gap: 12px;
    font-size: 1.1em; /* garde une base lisible */
  }

  .image-container,
  .weather-icon {
    flex-basis: clamp(105px, 34vw, 155px);
    width: clamp(105px, 34vw, 155px);
  }

  .content-layout p,
  .weather-cancellation p,
  .content-layout span,
  .weather-cancellation span {
    font-size: 1.1em;
  }
}

/* 4) Très petit : on compresse encore un peu */
@media (max-width: 380px) {
  .content-layout,
  .weather-cancellation {
    min-height: 130px;
    padding: 12px;
    gap: 10px;
    font-size: 0.9em;
  }

  .image-container,
  .weather-icon {
    flex-basis: 96px;
    width: 96px;
  }
}

/* Sécurité anti-débordement */
.content-layout *,
.weather-cancellation * {
  min-width: 0;
}



/* Footer plein écran + couleur demandée */
.site-footer{
  font-family: "Poppins", Arial, sans-serif; 
  width:100%;
  background:#9400d9;              /* couleur demandée */
  color:#fff;
  padding:14px clamp(12px,4vw,18px);
  margin:32px 0 0;                 /* colle au bas de page */
  text-align:center;
  border-radius:0;                  /* plein écran, pas de coins */
  box-shadow:none;                  /* look plus flat */
}

/* “Header” de footer : liens sur toute la largeur */
.legal-links{
  width:100%;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  font-weight:600;
  line-height:1.25;
}

.legal-links a{
  color:#fff;
  text-decoration:none;
  position:relative;
  padding:6px 8px;                  /* zones tactiles mais sobres */
  border-radius:6px;
  font-size:clamp(12px, 1.9vw, 14px);  /* ← plus petit */
  opacity:.95;                      /* moins imposant */
}

/* Séparateur | en clair */
.legal-links a + a::before{
  content:"|";
  margin-right:8px;
  opacity:.5;
}

/* hover/focus discrets */
.legal-links a:hover{ text-decoration:underline }
.legal-links a:focus-visible{
  outline:2px solid rgba(255,255,255,.6);
  outline-offset:3px;
}

/* Crédit plus discret */
.credit{
  margin:6px 0 0;
  font-size:clamp(11px, 1.7vw, 13px);  /* ← plus petit */
  opacity:.85;
}

/* ---------- Responsive ---------- */
/* Mobile : liens empilés, séparés par une ligne claire, toujours plein écran */
@media (max-width:520px){
  .legal-links{
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }
  .legal-links a{
    padding:10px 12px;
    font-size:13px;
  }
  .legal-links a + a::before{ content:none }
  .legal-links a + a{
    border-top:1px solid rgba(255,255,255,.25);
  }
}


/* Conteneur pour les bulles, ne bloque plus le défilement */
.bubble-container {
  position: fixed; /* Permet aux bulles de se déplacer autour de la page */
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  pointer-events: none; /* Les bulles n'interfèrent pas avec les clics */
  overflow: hidden; /* Empêche les débordements des bulles */
  z-index: -1; /* Les bulles restent derrière le contenu principal */
  }
  
  /* Style de chaque bulle */
  .bubble {
  position: absolute;
  width: 60px;  /* Taille des bulles */
  height: 60px; /* Taille des bulles */
  border-radius: 50%; /* Forme ronde */
  opacity: 0.8;
  animation: float 20s infinite;
  }
  
  /* Animation des bulles */
  @keyframes float {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  25% {
    transform: translate(-30px, -50px);
    opacity: 1;
  }
  50% {
    transform: translate(40px, 30px);
    opacity: 0.7;
  }
  75% {
    transform: translate(-20px, -20px);
    opacity: 0.9;
  }
  100% {
    transform: translate(30px, 40px);
    opacity: 0.8;
  }
  }
  
  /* Définition des différentes couleurs et positions des bulles */
  .bubble:nth-child(1) { background-color: #ff7f50; left: 5%; top: 10%; animation-duration: 15s; animation-delay: 0s; }
  .bubble:nth-child(2) { background-color: #2ecc71; left: 15%; top: 15%; animation-duration: 18s; animation-delay: 2s; }
  .bubble:nth-child(3) { background-color: #1abc9c; left: 25%; top: 20%; animation-duration: 16s; animation-delay: 1.5s; }
  .bubble:nth-child(4) { background-color: #f39c12; left: 50%; top: 30%; animation-duration: 20s; animation-delay: 3s; }
  .bubble:nth-child(5) { background-color: #e74c3c; left: 70%; top: 25%; animation-duration: 12s; animation-delay: 0.5s; }
  .bubble:nth-child(6) { background-color: #9b59b6; left: 85%; top: 5%; animation-duration: 22s; animation-delay: 2.5s; }
  .bubble:nth-child(7) { background-color: #3498db; left: 10%; top: 50%; animation-duration: 18s; animation-delay: 1s; }
  .bubble:nth-child(8) { background-color: #f1c40f; left: 30%; top: 75%; animation-duration: 14s; animation-delay: 1.5s; }
  .bubble:nth-child(9) { background-color: #2ecc71; left: 60%; top: 10%; animation-duration: 16s; animation-delay: 0s; }
  .bubble:nth-child(10) { background-color: #3498db; left: 45%; top: 50%; animation-duration: 12s; animation-delay: 2s; }
  .bubble:nth-child(11) { background-color: #e67e22; left: 90%; top: 60%; animation-duration: 17s; animation-delay: 3s; }
  .bubble:nth-child(12) { background-color: #9b59b6; left: 20%; top: 85%; animation-duration: 15s; animation-delay: 1s; }
  .bubble:nth-child(13) { background-color: #1abc9c; left: 40%; top: 45%; animation-duration: 19s; animation-delay: 0.5s; }
  .bubble:nth-child(14) { background-color: #e74c3c; left: 60%; top: 10%; animation-duration: 13s; animation-delay: 2.5s; }
  .bubble:nth-child(15) { background-color: #ff7f50; left: 80%; top: 90%; animation-duration: 18s; animation-delay: 3s; }
  .bubble:nth-child(16) { background-color: #f1c40f; left: 25%; top: 35%; animation-duration: 15s; animation-delay: 2s; }
  .bubble:nth-child(17) { background-color: #3498db; left: 35%; top: 20%; animation-duration: 14s; animation-delay: 1.5s; }
  .bubble:nth-child(18) { background-color: #2ecc71; left: 55%; top: 80%; animation-duration: 20s; animation-delay: 0.5s; }
  .bubble:nth-child(19) { background-color: #9b59b6; left: 75%; top: 10%; animation-duration: 17s; animation-delay: 2s; }
  .bubble:nth-child(20) { background-color: #f39c12; left: 90%; top: 70%; animation-duration: 18s; animation-delay: 3s; }
  
  
  /* Curseur de défilement */
  .scroll-indicator {
  position: fixed;
  bottom: 20px;  /* Placer le curseur au bas de la page */
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  animation: bounce 1s infinite;
  z-index: -1;
  }
  
  @media (max-width: 768px) {
    .bubble {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
    .bubble-container{
      max-width: 100vw;
    }
    .bubble {
      width: 60px;
      height: 60px;
    }
  }
  
  /* Animation pour attirer l'attention */
  @keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}