* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

body {
  background-color: #cb6de5;
  font-family: "Fredoka One", sans-serif;
  color: white;
  text-align: center;
  font-size: 1.5em;
  line-height: 1;
  margin-top: 50px;
}

body, .styled-section {
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

/* =========================
   TOP HEADER
========================= */
.top-header {
  background-color: #9400d9;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* gauche / centre / droite */
  align-items: center;
  padding: 8px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  gap: 12px;
}

/* Colonnes */
.top-header .left,
.top-header .center,
.top-header .right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.top-header .center { justify-content: center; }
.top-header .right  { justify-content: flex-end; }

.separator {
  color: #D9D9D9;
  font-weight: bold;
}

/* Liens base */
.top-header a { color: white; text-decoration: none; }

/* Téléphone / mail */
.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.top-link i {
  color: #f5bd4f;
  transition: transform 0.2s ease, color 0.2s ease;
}

.top-link:hover { color: #f0b134; }
.top-link:hover i { transform: scale(1.2); color: #fc952e; }

/* Bouton menu (au centre) */
.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;

  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: white;
  white-space: nowrap;
}

.dropbtn i {
  color: #ff3c3c;
  transition: transform 0.2s ease, color 0.2s ease;
}

.dropbtn:hover { background: rgba(255,255,255,0.15); }
.dropbtn:hover i { transform: scale(1.15); color: #ebe7dd; }

/* Bouton devis (sans icône) */
.devis-btn {
  background: white;
  color: #D9006E !important;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.devis-btn:hover {
  background: #D9006E;
  color: white !important;
}

/* Important : par défaut on affiche le texte complet */
.devis-short { display: none; }

/* Réseaux */
.social-link {
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.social-link:hover { color: #F4C542; }

.social-link i {
  color: #ff3c3c;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-link:hover i {
  transform: scale(1.2);
  color: #ebe7dd;
}

/* =========================
   RESPONSIVE (dès 940px)
========================= */
@media (max-width: 940px) {
  /* On évite les comportements "1fr" qui peuvent forcer des retours */
  .top-header {
    grid-template-columns: auto auto auto;
    padding: 8px 16px;
  }

  .separator { display: none; }

  /* Tout sur une ligne */
  .top-header .left,
  .top-header .center,
  .top-header .right {
    flex-wrap: nowrap;
  }

  /* On cache les textes (icônes seules), SAUF le devis */
  .top-header .text,
  .top-header .label {
    display: none;
  }

  /* Le bouton devis reste en texte */
  .devis-btn { padding: 6px 14px; }
}

/* =========================
   TRÈS PETIT ÉCRAN
   Empêche "Devis" de passer au-dessus du menu
========================= */
@media (max-width: 370px) {
  /* On remplace le texte long par "Devis" */
  .devis-full { display: none; }
  .devis-short { display: inline; }

  /* Compacte légèrement pour rester sur une ligne */
  .devis-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* =========================
   MENU OVERLAY
========================= */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9999;
}

.menu-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   PANEL
========================= */
.menu-panel{
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 22px;
  position: relative;
  transform: translateY(8px);
  transition: transform .25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden; /* évite les dépassements */
}

.menu-overlay.is-open .menu-panel{
  transform: translateY(0);
}

/* =========================
   BOUTON FERMER
========================= */
.menu-close{
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: #f3f3f3;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.menu-close i{
  color: #9400d9;
  font-size: 18px;
}

.menu-close:hover{
  transform: scale(1.05);
  background: #eaeaea;
}

/* =========================
   LOGO
========================= */
.menu-logo{
  display: flex;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 20px;
}

.menu-logo img{
  width: 220px;
  max-width: 65%;
  height: auto;
  transition: transform .25s ease;
}

.menu-overlay.is-open .menu-logo img{
  transform: scale(1.08);
}

/* =========================
   LISTE DES BOUTONS
========================= */
.menu-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;   /* mobile first */
  gap: 14px;
  align-items: center;
}

.menu-list li{
  width: 100%;
  display: flex;
  justify-content: center;
}

/* boutons */
.menu-list a.element{
  display: inline-flex;
  justify-content: center;
  align-items: center;

  /* ✅ moins large sur mobile (<900) */
  width: min(360px, 78vw);

  padding: 14px 18px;
  font-size: 1.05em;
  color: rgb(19,17,17);
  text-decoration: underline;              /* ✅ souligné */
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;

  text-align: center;
  border-radius: 30px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  box-sizing: border-box;
  transform-origin: center;
}

/* couleurs */
.menu-list .bouton1{ background: #ff4d4d; }
.menu-list .bouton2{ background: #ffcc00; }
.menu-list .bouton3{ background: #6a0dad; color: #fff; }

/* rotation alternée */
.menu-list li:nth-child(odd)  a.element{ transform: rotate(-5deg); }
.menu-list li:nth-child(even) a.element{ transform: rotate( 5deg); }

/* hover */
.menu-list a.element:hover{
  background: #f4f4f4;
  color: #000 !important;
  transform: scale(1.06) rotate(0deg);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

/* =========================
   DESKTOP / LARGE (>= 900px)
   ✅ 2 boutons en haut + 3e centré dessous
========================= */
@media (min-width: 900px){
  .menu-list{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 18px;
  }

  /* 2 premiers = 2 colonnes */
  .menu-list li{
    width: auto;
    flex: 0 0 calc(50% - 18px);
    justify-content: center;
  }

  .menu-list a.element{
    width: 100%;
    max-width: 420px;
  }

  /* ✅ 3e bouton = ligne entière, centré */
  .menu-list li:nth-child(3){
    flex: 0 0 100%;
    justify-content: center;
  }
  .menu-list li:nth-child(3) a.element{
    width: min(420px, 50%);
  }
}

/* =========================
   TABLET / SMALL (< 900px)
   ✅ boutons plus fins
========================= */
@media (max-width: 899px){
  .menu-panel{ width: min(480px, 92vw); }

  .menu-list a.element{
    width: min(250px, 74vw);   /* ✅ réduit */
    padding: 13px 16px;
  }

   .menu-list a.element{
    font-size: 1.02em;
   }
}

/* =========================
   SMALL (<= 500px)
========================= */
@media (max-width: 500px){
  .menu-panel{ padding: 16px 16px 20px; }

  .menu-list a.element{
    width: min(220px, 72vw);   /* ✅ encore moins large */
    padding: 12px 14px;
    border-radius: 24px;
  }

  .menu-list a.element{
    font-size: 1em;
  }

  .menu-list li:nth-child(odd)  a.element{ transform: rotate(-4deg); }
  .menu-list li:nth-child(even) a.element{ transform: rotate( 4deg); }
}

/* =========================
   ULTRA SMALL (<= 350px)
   ✅ éviter tout dépassement avec l'oblique
========================= */
@media (max-width: 350px){
  .menu-panel{ padding: 14px 14px 18px; }

  .menu-list li{
    padding: 0 16px;           /* zone tampon pour la rotation */
    box-sizing: border-box;
  }

  .menu-list a.element{
    width: 100%;
    max-width: 100%;
    padding: 11px 12px;
    border-radius: 22px;
  }

  .menu-list a.element{
    font-size: 0.95em;
  }

  .menu-list li:nth-child(odd)  a.element{ transform: rotate(-3deg); }
  .menu-list li:nth-child(even) a.element{ transform: rotate( 3deg); }

  .menu-list a.element{
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
  }
}


h1 {
  text-align: center;
  color: white;
  font-size: 3em;
  letter-spacing: 1px;
  z-index: 1;
  margin-top: 70px;
  margin-bottom: 50px;
}


/* =========================
   SECTION / PANNEAU
========================= */

.styled-section{
  padding: 10px 20px;
}

.gallery-container{
  max-width: 1250px;
  margin: 0 auto;
  padding: 50px 40px;
  background:
    linear-gradient(145deg, #f3e9f1, #ececec); /* panneau clair */
  border-radius: 28px;
  box-shadow:
    inset 0 0 0 6px rgba(255,255,255,0.6),
    0 30px 60px rgba(0,0,0,0.18);
}

/* =========================
   GRILLE
========================= */

.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 50px; /* + d’espace */
  justify-items: center;
}

/* =========================
   PHOTO
========================= */

.photo{
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 260px;
  transform: rotate(-2.5deg);
}

/* alternance méli-mélo */
.photo:nth-child(even){
  transform: rotate(2.5deg);
}
.photo:nth-child(3n){
  transform: rotate(-1.2deg);
}
.photo:nth-child(5n){
  transform: rotate(1.5deg);
}

.photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  border-radius: 6px;

  /* ✅ ligne noire fine */
  border: 1.5px solid #000;

  box-shadow:
    0 18px 35px rgba(0,0,0,0.35);
}



/* =========================
   PUNAISE
========================= */

.photo::before{
  content:"";
  position:absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%,
  #ffd6d6 0%,
  #ff5a5a 35%,
  #e60000 65%,
  #a80000 100%
);

  box-shadow:
    0 4px 8px rgba(0,0,0,0.45),
    inset 0 2px 3px rgba(255,255,255,0.8);
  z-index: 3;
}

/* pointe */
.photo::after{
  content:"";
  position:absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 14px;
  background: #9b9b9b;
  box-shadow: 0 2px 4px rgba(0,0,0,0.35);
  z-index: 2;
}

/* =========================
   MICRO DÉTAIL : OMBRE AU MUR
========================= */

.photo{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

/* ================
   LIGHTBOX FULLSCREEN
================ */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99999;
}

.lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img{
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;      /* ✅ ne coupe jamais */
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

/* Croix */
.lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 30px;
  line-height: 44px;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}

.lightbox-close:hover{
  transform: scale(1.05);
  background: rgba(255,255,255,0.22);
}

/* petit plus UX */
.photo img{ cursor: zoom-in; }


/* =========================
   RESPONSIVE (refait)
   Objectif : 3 colonnes > 2 colonnes > 1 colonne
   + espaces réduits en mobile (titre/galerie/bouton)
========================= */

/* <= 1000px : 2 colonnes */
@media (max-width: 1000px){

  /* espace titre -> galerie réduit */
  h1{
    margin-top: 35px;     /* au lieu de 50 */
    margin-bottom: 30px;  /* ajoute un vrai contrôle */
    font-size: 2.2em;
  }

  .styled-section{
    padding: 10px 16px;   /* moins de vide global */
  }

  .gallery-container{
    padding: 34px 22px;   /* panneau plus compact */
  }

  .gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* ✅ 2 par ligne */
    gap: 42px 26px;       /* espace réduit */
  }

  .photo{
    max-width: 240px;
  }

  /* espace galerie -> bouton réduit */
  .section-cta{
    margin: 14px 0 34px;
  }
}


/* <= 520px : 1 colonne */
@media (max-width: 520px){

  h1{
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1.7em;
  }

  .styled-section{
    padding: 10px 14px;
  }

  .gallery-container{
    padding: 26px 16px;
  }

  .gallery{
    grid-template-columns: 1fr;  /* ✅ 1 seule colonne */
    gap: 34px;                  /* moins d’espace vertical */
  }

  .photo{
    max-width: 240px;           /* garde une taille sympa */
    width: 100%;
  }

  .section-cta{
    margin: 12px 0 28px;
  }
}

@media (max-width: 350px){

  h1{
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 1.3em;
  }
}

/* =======================
   SECTION CTA
======================= */
.section-cta{
  text-align:center;
  margin: 16px 0 48px;
  padding: 0 12px;
}

/* =======================
   BOUTON CTA COMPACT
======================= */
.section-cta .btn-cta{
  --violet-dark:#3d014d;
  --violet:#6f00a8;

  font-family:"Baloo 2", system-ui, sans-serif;
  font-weight:700;
  text-decoration:none;

  /* TAILLE RÉDUITE */
  font-size: 18px;
  letter-spacing:.3px;

  padding: 10px 18px;
  min-height:40px;
  min-width:unset;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  color:#fff;
  border-radius:999px;
  border:2px solid #ffffff;

  background:
    linear-gradient(135deg, var(--violet-dark), var(--violet));

  box-shadow:
    0 6px 14px rgba(0,0,0,.25);

  transition:
    transform .12s ease,
    box-shadow .12s ease,
    filter .12s ease;
}

/* Emoji punaise */
.section-cta .btn-cta .pin{
  font-size:1em;
  transform:rotate(-10deg);
}

/* Hover */
.section-cta .btn-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(0,0,0,.3);
  filter:saturate(1.05);
}

/* Active */
.section-cta .btn-cta:active{
  transform:translateY(0);
  box-shadow:0 5px 10px rgba(0,0,0,.25);
}

/* =======================
   RESPONSIVE (encore + petit)
======================= */
@media (max-width:700px){
  .section-cta{
    margin: 14px 0 40px;
  }
  .section-cta .btn-cta{
    font-size:16px;
    padding: 8px 14px;
    min-height:36px;
  }
}

@media (max-width:420px){
  .section-cta .btn-cta{
    font-size:15px;
    padding: 7px 12px;
    min-height:34px;
  }
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
}

.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.8;
  animation: float 20s infinite;
}

@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: 10;
}

/* 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);
  }
}

/* Assurez-vous que le body et html occupent toute la hauteur de la fenêtre */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto; /* Permet de défiler la page */
}

/* Conteneur pour les bulles, ne bloque plus le défilement */
.bubble-container {
  position: absolute; /* Permet aux bulles de se déplacer autour de la page */
  top: 0;
  left: 0;
  width: 100%;
  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;
}

/* 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);
  }
}
.footer {
  background-color: #9400d9;
  color: white;
  padding: 5px 10px;
  font-size: 15px; /* Taille de texte augmentée */
  line-height: 1.8; /* Espace entre les lignes */

}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left, 
.footer-center, 
.footer-right {
  flex: 1;
  min-width: 170px;
  margin: 10px;
  line-height: 1.8; /* Espace entre les lignes */
}

.logo1 {
  max-width: 300px;
  margin-bottom: 0px;
  justify-content: center;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 0px;
  justify-content: center;
}

.social-icons .icon {
  font-size: 20px; /* Taille des icônes légèrement augmentée */
  color: white;
  text-decoration: none;
}

.social-icons .icon:hover {
  color: #ddd; /* Couleur plus claire au survol */
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 15px; /* Taille de titre augmentée */
  text-transform: uppercase;
  opacity: 0.6; /* Moins opaque */
  text-align: center;
}

.footer-center .product-links {
  display: flex;
  flex-direction: column;
  gap: 5px; /* Espacement entre les éléments de la liste augmenté */
  list-style: none; /* Suppression des puces */
  padding: 0; /* Supprime le padding par défaut */
  margin: 0; /* Supprime les marges */
  text-align: center;
}

.footer-center .product-links a {
  color: white; /* Texte des liens en blanc */
  text-decoration: none;
}


.footer-center .product-links a:hover {
  text-decoration: underline;
}

.footer p {
  margin: 5px 0; /* Espacement légèrement augmenté */
  font-size: 15px; /* Taille du texte augmentée */
  line-height: 1.8; /* Espace entre les lignes */
  gap:5px;
  text-align: center;
}

.footer a{
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 480px){
  .social-icons .icon{
    font-size: 0.7em;
  }
  .logo1{
    margin-left:10px;
    width:12em;
  }
}

/* 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; }


.scroll-indicator {
  position: fixed;
  bottom: 20px;  
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  animation: bounce 1s infinite;
  z-index: -1;
}

@keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
  100% {
    transform: translateX(-50%) translateY(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);
  }
}