/* ======= STYLES GLOBAUX ======= */
body {
  margin: 0; /* Supprime les marges par défaut du navigateur */
  font-family: 'Poppins', sans-serif; /* Définit la police principale */
}

/* ======= NAVBAR ======= */
.navbar {
  background-color: #f2055c; /* Couleur principale de la navbar */
  padding: 0.6rem 0; /* Réduction de la hauteur globale du menu */
  transition: all 0.3s ease; /* Animation douce pour les effets de survol */
}

/* Logo */
.logo {
  height: 45px; /* Taille du logo */
  width: auto; /* Conserve les proportions */
}

/* Liens du menu */
.nav-link {
  color: white; /* Couleur du texte */
  font-size: 1rem; /* Taille du texte ajustée */
  text-transform: capitalize; /* Met seulement la première lettre en majuscule */
  margin-right: 20px; /* Espacement entre les liens */
  transition: color 0.3s ease; /* Transition douce sur la couleur */
   position: relative; 
}

/* Lien actif du menu (quand on est sur une section) */
.nav-link.active {
  color: black !important; /* Le texte devient noir */
   /* Nécessaire pour placer le trait en bas */
}

/* Trait souligné sous le lien actif */
.nav-link.active::after {
  content: ""; /* Crée un élément vide (le trait) */
  position: absolute; /* Positionne le trait sous le texte */
  left: 0; /* Aligne le trait à gauche */
  bottom: -5px; /* Légèrement en dessous du texte */
  width: 100%; /* Le trait fait toute la largeur du texte */
  height: 4px; /* Épaisseur du trait */
  background-color: rgb(0, 0, 0); /* Couleur du trait */
  border-radius: 4px; /* Arrondi léger du trait */
}

/*  AJOUT ESSENTIEL : Correction des conflits de positionnement Bootstrap sur le LI  */
.navbar-nav .nav-item {
    position: relative;
}


/* Effet au survol */
.nav-link:hover {
  color: #000000; /* Couleur plus claire au survol */
}

/* Bouton "Télécharger CV" */
.btn-cv {
  background-color: #73022C; /* Couleur principale du bouton */
  color: white; /* Texte blanc */
  padding: 8px 20px; /* Taille du bouton */
  border-radius: 30px; /* Bouton arrondi */
  font-weight: 500; /* Met un peu en gras */
  transition: all 0.3s ease; /* Transition douce sur le hover */
}

/* Effet hover bouton */
.btn-cv:hover {
  background-color: white; /* Devient blanc au survol */
  color: #73022C; /* Texte devient couleur principale */
  border: 2px solid #73022C; /* Bordure visible au survol */
}

/* Réduction de taille sur mobile */
@media (max-width: 992px) {
  .navbar {
    padding: 0.4rem 0; /* Réduit encore plus la hauteur */
  }
}
/* fin du navbar et de la description */


/* début de la section accueil*/













/* ===================== SECTION N°1 ACCUEIL ===================== */
.hero {
  background-image: url("Angeliquemanga.webp"); /* Image de bannière */
  background-size: cover; /* Remplir toute la section */
  background-position: center; /* Centrer l'image */
  height: 100vh; /* Prend toute la hauteur de l'écran */
  position: relative;
}

/* Zone de texte */
.text-section {
  margin-top: 100px; /* Descend légèrement le texte */
}

/* Titre principal */
.hero h1 {
  font-family: "Gotham", sans-serif; /* Police Gotham */
  font-size: 3rem; /* Taille du titre */
  font-weight: 700; /* Gras */
}

/* Sous-titre */
.hero h3 {
  font-family: "Gotham", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

/* Bouton Explorez plus */
.btn-explore {
  background-color: #f2055c; /* Rose */
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Effet survol du bouton Explorez plus */
.btn-explore:hover {
  background-color: #000; /* Noir */
  color: #fff;
}

/* Bouton Contactez-moi */
.btn-contact {
  background-color: white;
  color: black;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Effet survol du bouton Contactez-moi */
.btn-contact:hover {
  background-color: #f2055c;
  color: white;
}



/* Responsivité mobile */
/* Responsivité mobile */
@media (max-width: 768px) {
    
    /* 1. CORRECTION BANIÈRE : Image unique, ancrée à droite et mieux cadrée */
    .hero {
        text-align: center; 
        
        /* Conserve l'image de fond */
        background-image: url("Angeliquemanga.webp"); 
        
        /* Force le positionnement de l'image à droite pour que votre photo soit visible */
        background-position: right center !important; 
        
        /* 🎯 CORRECTION DE LA DUPLICATION : Une seule instance de l'image */
        background-repeat: no-repeat !important; 
        
        /* 🎯 NOUVEL AJUSTEMENT TAILLE : Ajuste la taille pour mieux cadrer sans duplication */
        /* Essaye de couvrir au mieux la zone en se basant sur la hauteur, sans couper la personne */
        background-size: auto 100% !important; /* L'image prend 100% de la hauteur du conteneur, et la largeur s'adapte */
        /* Ou, si la personne est encore coupée, essaye ceci : */
        /* background-size: contain !important; /* L'image est entièrement visible, mais peut laisser des bords */
        /* Ou, pour un bon compromis, avec un zoom léger : */
        /* background-size: 120% auto !important; /* Zoom léger, ancré à droite */

        /* Réduit la hauteur de la section pour ne pas prendre tout l'écran */
        height: 70vh; 
        padding-top: 50px;
    }
    
    /* Rendre le texte lisible sur l'image */
    .hero h2, .hero h1, .hero h3 {
         color: white; /* Assurez-vous que le texte soit blanc pour le contraste */
         text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Ombre plus prononcée pour la lisibilité */
    }

    .text-section {
        margin-top: 30px; 
    }
    
    /* AJUSTEMENT TEXTES : Réduction de la taille des titres */
    
    /* Je suis Angelique Manga */
    .hero h2 {
        font-size: 1.4rem !important; /* Légèrement plus petit */
    }
    
    /* Social Media Manager */
    .hero h1 {
        font-size: 2rem !important; /* Encore un peu réduit */
        line-height: 1.2;
    }
    
    /* Créativité - Stratégie - Résultats */
    .hero h3 {
        font-size: 0.9rem !important; /* Légèrement plus petit */
        margin-top: 10px !important;
    }

    /* 2. CORRECTION BOUTONS : Largeur égale et Alignement */
    
    /* Cible le conteneur des boutons (div avec la classe mt-4) */
    .text-section .mt-4 {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 10px; /* Moins d'espace pour plus de compacité */
        margin-top: 20px !important;
    }
    
    .btn-explore, .btn-contact {
        /* 🎯 NOUVEL AJUSTEMENT LARGEUR : Encore plus compact */
        width: 70%; /* Moins large pour s'adapter aux textes réduits */
        max-width: 220px; /* Taille maximale harmonieuse */
        
        /* 🎯 AJUSTEMENT HAUTEUR : Réduction du padding pour une taille plus compacte */
        padding: 7px 18px; /* Un peu moins de padding */
        
        /* Réduit la taille de la police des boutons si nécessaire */
        font-size: 0.95rem; /* Légèrement plus petit pour tenir dans le bouton */

        margin: 0 !important; 
        text-align: center; 
    }
    
    /* Annuler la marge de l'explorez-plus qui est définie pour le desktop */
    .btn-explore.me-3 {
        margin-right: 0 !important;
    }
}














/* fin de cette section*/




 /* là c'est le debut de cette section apropos*/


/* Texte d’introduction */
#valeurs .intro-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000; /* ✅ Texte en noir */
  font-family: 'Gotham',; /* ✅ Police Gotham */
}

 /* Couleur de fond des cartes et ombre légère */
#valeurs .card {
  background-color: #73022C;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto;    /* centrer la carte */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  padding-top: 50px; /* espace pour le cercle */
}

#valeurs .card:hover {
  transform: translateY(-5px);
}

/* Cercle avec icône */
.icon-circle {
  position: absolute;
  top: -25px; /* fait dépasser le cercle */
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff; /* couleur du cercle */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* légère ombre */
}

.icon-circle i {
  font-size: 1.5rem;
  color: #73022C; /* couleur de l'icône */
}

/* Liste sans puces */
#valeurs ul li {
  margin-bottom: 5px;
}




/* Section Parcours */
#parcours {
  background-color: #fff;
  color: #000;
  font-family: 'Gotham', ;
}

/* Carte d'image + texte */
.image-card {
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.image-card:hover {
  transform: translateY(-5px);
}

/* Conteneur d'images en boucle */
.image-slider {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.image-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slideShow 9s infinite;
}

/* Animation automatique des images */
.image-slider img:nth-child(1) {
  animation-delay: 0s;
}
.image-slider img:nth-child(2) {
  animation-delay: 3s;
}
.image-slider img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes slideShow {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* Texte sous les images */
.card-text {
  padding: 15px;
}

.card-text h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.card-text p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}








.projets-section {
  text-align: center;
  font-family: "Gotham", ;
  margin: 60px auto;
  max-width: 1000px;
}

.description {
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.5;
}

.projets-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.projet-card {
 background: #f7f7f7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.projet-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projet-card:hover .projet-image img {
  transform: scale(1.05);
}

.projet-card h3 {
  margin: 15px 0 10px;
  font-weight: bold;
  text-transform: lowercase;
}

.projet-card p {
  padding: 0 15px 20px;
  color: #000000;
  font-size: 0.95em;
}

.btn-projet {
  background-color: #73022C;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Gotham", ;
  transition: 0.3s;
  margin-bottom: 20px;
}

.btn-projet:hover {
  background-color: black;
  color: white;
}

/* Popup styles */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}


.popup.show {
  display: flex;
}


.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.popup-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.popup-images img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.popup-links a {
  display: inline-block;
  margin: 10px;
  color: #73022C;
  text-decoration: none;
  font-weight: bold;
}

.popup-single-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}









.skills {
  background: #f7f7f7;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.skills-intro {
  max-width: 800px;
  margin: 0 auto 50px;
}

.skills-intro h2 {
  font-size: 2.5rem;
  color: #73022C;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeDown 1s ease-out;
}

.skills-intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  animation: fadeUp 1s ease-out;
}

.skills-carousel {
  position: relative;
  width: 85%;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide h3 {
  font-size: 1.8rem;
  color: #73022C;
  margin-bottom: 10px;
}

.carousel-slide p {
  color: #555;
  margin-bottom: 25px;
}

.tools {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.tools img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s;
}

.tools img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #73022caa);
}

/* Boutons de navigation */
.carousel-btn {
  background: #73022C;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 10px; /* Taille du bouton */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #000;
  color: #fff;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Animations */
@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}



















:root{
  --accent: #73022C;
  --bg: #f3ebeb; /* ou gris clair si tu veux plus doux */
  --card: rgba(255,255,255,0.95);
  --muted: #cecbcb;
}

*{box-sizing:border-box}
body{font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0;}

/* Section */
.contact-section{
  background: var(--bg);
  padding: 60px 20px;
}

.contact-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:flex-start;
  justify-content:space-between;
}

/* Left column */
.contact-left{
  flex:1;
  min-width:260px;
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-left h2{
  color: #000000;
  font-size:1.8rem;
  margin:0 0 8px 0;
  line-height:1.1;
}

.contact-left .lead{
  color: #000000;
  font-size:1.05rem;
  margin:0 0 10px 0;
}

.contact-left .small{
  font-weight:700;
  color: #000000;
  margin-top:12px;
}

/* Social buttons */
.socials{
  display:flex;
  gap:14px;
  margin-top:8px;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:32px;
  background:transparent;
  color: var(--accent);
  border:2px solid transparent;
  text-decoration:none;
  font-weight:600;
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.social-btn i{
  font-size:18px;
  width:28px;
  height:28px;
  display:inline-grid;
  place-items:center;
  background: #fff;
  border-radius:50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  color: var(--accent);
}

/* hover effets */
.social-btn:hover{
  transform: translateY(-4px);
  background: var(--accent);
  color: #fff;
}

.social-btn:hover i{
  background: #fff0;
  color:#fff;
  box-shadow: none;
}

/* Right column (form) */
.contact-right{
  width:470px;
  max-width:46%;
  min-width:320px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
  border-radius:12px;
  padding:22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position:relative;
  overflow:hidden;
}

/* Form fields */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form-row{
  display:flex;
  gap:10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ddd;
  background: #fff;
  font-size:0.95rem;
  outline:none;
  transition: box-shadow .18s ease, transform .18s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

.contact-form input:focus,
.contact-form textarea:focus{
  box-shadow: 0 6px 24px rgba(115,2,44,0.12);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.contact-form textarea{
  resize:vertical;
  min-height:140px;
  max-height:300px;
}

/* bottom row */
.form-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:6px;
}

.btn-submit{
  background: var(--accent);
  color:#fff;
  padding:10px 22px;
  border-radius:26px;
  border:none;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 8px 20px rgba(115,2,44,0.18);
  transition: transform .18s ease, background .18s;
}

.btn-submit:hover{
  background:#000;
  transform: translateY(-3px);
}

/* status message */
.form-status{
  color:var(--muted);
  font-size:0.95rem;
  padding-left:8px;
}

/* small responsive tweaks */
@media (max-width:980px){
  .contact-inner{ flex-direction:column; gap:20px; align-items:stretch;}
  .contact-right{ max-width:100%; width:100%; min-width:unset;}
  .contact-left{ text-align:center;}
  .contact-left .small{ margin-top:18px;}
  .socials{ justify-content:center;}
}

@media (max-width:520px){
  .form-row{ flex-direction:column;}
  .contact-left h2{ font-size:1.5rem;}
  .contact-left .lead{ font-size:0.98rem;}
  .btn-submit{ padding:10px 16px;}
}





















/* Footer */
.footer-section{
  background-color: #F7F7F7;
  padding: 40px 20px 20px 20px;
  font-family: "Inter", sans-serif;
  color: #222;
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

/* Footer gauche : logo */
.footer-left .footer-logo{
  width: 120px;
  height: auto;
}

/* Footer milieu : navigation */
.footer-middle ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-middle ul li a{
  text-decoration: none;
  color: #222;
  transition: color .25s;
}

.footer-middle ul li a:hover{
  color: #73022C;
}

/* Footer droite : réseaux et CV */
.footer-right{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-right p{
  margin: 0 0 6px 0;
  font-weight: 600;
}

.footer-socials a{
  font-size: 1.5rem;
  color: #222;
  margin-right: 12px;
  transition: color .25s;
}

.footer-socials a:hover{
  color: #73022C;
}

.btn-download{
  display: inline-block;
  padding: 8px 16px;
  background-color: #73022C;
  color: #fff;
  border-radius: 26px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .25s;
}

.btn-download:hover{
  background-color: #222;
}

/* Footer bottom : copyright */
.footer-bottom{
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #000000;
}

/* Responsive */
@media(max-width: 980px){
  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-right{
    align-items: center;
  }

  .footer-middle ul{
    flex-direction: row;
    gap: 15px;
  }
}



























/* ===================== BOUTON FLOTTANT WHATSAPP (FIXE) ===================== */

/* 1. Conteneur principal : Reste fixe et positionné en bas à gauche */
.whatsapp-container {
    position: fixed; /* 👈 C'EST CE QUI LE REND FIXE LORS DU SCROLL */
    bottom: 30px;
    left: 30px; /* Position à gauche, comme demandé */
    z-index: 1000; /* Assure qu'il est au-dessus de tout le contenu */
}

/* 2. L'icône WhatsApp (le cercle vert) */
.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Couleur verte WhatsApp */
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* ----------------- GESTION DE LA BULLE DE MESSAGE (POP-UP) ----------------- */

.whatsapp-popup {
    /* Positionnement de la bulle par rapport au conteneur fixe */
    position: absolute;
    right: -10px; 
    bottom: 80px; /* Au-dessus de l'icône */
    
    /* Styles de la bulle */
    background-color: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 250px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Styles pour la flèche (le petit triangle) */
    position: relative;
    
    /* 3. Cachez la bulle par défaut et préparez l'animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

/* La flèche de la bulle (positionné pour la gauche) */
.whatsapp-popup::after {
    content: '';
    position: absolute;
    right: 15px; 
    bottom: -10px; 
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white; 
}

/* 4. Affichage au Survol du Conteneur */
.whatsapp-container:hover .whatsapp-popup {
    opacity: 1; /* Rendre visible */
    visibility: visible;
    transform: translateY(0); /* Remonter à sa position normale */
}

.whatsapp-popup p {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

/* Bouton "Ouvrir le chat" */
.open-chat-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px 0;
    background-color: #f2055c; /* Un bleu vif */
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

/* Ajustement pour la position à gauche sur mobile */
@media (max-width: 500px) {
    .whatsapp-popup {
        bottom: 70px;
        /* Positionne la bulle plus à droite pour ne pas être coupée par le bord de l'écran */
        left: 60px; 
        right: auto;
    }
    /* Corrige la flèche pour qu'elle pointe l'icône sur mobile */
    .whatsapp-popup::after {
        right: auto;
        left: 15px; 
    }

}
