:root {
  --main-blue: #0C3569;
  --light-blue: #87BDE1;
  --beige: #fce9ce;
  --white: #fff;
  --grey-bg: #f7fafb;
  --radius: 18px;
  --footer-bg: #0C3569;
  --transition: 0.22s cubic-bezier(.56,0,.35,1);
}
html, body {
  margin: 0; padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--grey-bg);
  color: var(--main-blue);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main-blue);
  z-index: 3000;
  padding: 0 1.3rem;
}

/* Gérer les 2 parties */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger - caché desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  color: var(--beige);
  transition: outline 0.14s;
  z-index: 3100;
}
.nav-hamburger:focus, .nav-hamburger.active {
  outline: 2px solid var(--beige);
}

.nav-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon:hover,
.nav-icon:focus {
  color: var(--light-blue);
  filter: brightness(0) saturate(100%) invert(57%) sepia(80%) saturate(575%) hue-rotate(154deg) brightness(93%) contrast(89%);
  outline: none;
  cursor: pointer;
}


.icon-svg {
  width: 32px;
  height: 32px;
  display: block;
}

.nav-btn {
  width: 125px;
  height: 40px;
  border-radius: 25%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
}

.nav-btn:hover,
.nav-btn:focus {
  color: var(--light-blue);
  filter: brightness(0) saturate(100%) invert(57%) sepia(80%) saturate(575%) hue-rotate(154deg) brightness(93%) contrast(89%);
  outline: none;
  cursor: pointer;
}


.navbar-logo {
    height: 65px;
    width: 65px;
  }


.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-icon {
  background: none;
  border: none;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;
  width: 38px;
  height: 38px;
}

.nav-icon:hover {
  background: rgba(255,255,255,0.1);
}

.icon-svg {
  width: 28px;
  height: 28px;
  display: block;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: #246694;
  color: #fce9ce;
  border-radius: 24px;
  border: none;
  text-decoration: none;
  font-family: 'Poppins',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: #0C3569;
}

.nav-btn-text {
  display: inline-block;
}


/* Desktop: cacher menu mobile */
.nav-menu {
  display: none;
}

/* Menu desktop visible */
.nav-links-desktop {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-links-desktop {
  display: flex;
  gap: 1.7rem;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.nav-links-desktop .nav-link {
  color: var(--white);
  padding: 8px 18px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.03rem;
  background: none;
  border: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.nav-links-desktop .nav-link:hover,
.nav-links-desktop .nav-link:focus {
  color: var(--light-blue);
  outline: none;
}

/* Optionnel: active link style */
.nav-links-desktop .nav-link.active {
  background-color: var(--beige);
  color: var(--main-blue);
  font-weight: 700;
}


/* Cacher menu desktop en mobile */
@media (max-width: 900px) {
  .nav-links-desktop {
    display: none;
  }
}

/* Style par défaut desktop */
.faq-container > div:first-child {
  flex: 0 1 270px;
}

/* En mobile, flex plus petit */
@media (max-width: 900px) {
  .faq-container > div:first-child {
    flex: 0 1 130px;
  }
}


@media (max-width: 900px) {
  /* Afficher hamburger, masquer actions desktop */
  .nav-hamburger {
    display: inline-flex;
  }
  .navbar-actions {
    display: none;
  }
  /* Masquer menu desktop (actions) */
  .nav-menu {
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: var(--main-blue);
    flex-direction: column;
    width: 100%;
    box-shadow: 0 4px 18px #0c356944;
    display: none;
    z-index: 1010;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-blue);
    text-align: center;
    color: var(--beige);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    background: none;
    border-radius: 0;
    transition: background .12s, color .12s;
    width: 100%;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link:hover, .nav-link:focus {
    background: var(--light-blue);
    color: var(--main-blue);
    outline: none;
  }
}
@media (min-width: 901px) {
  .nav-menu {
    display: none !important;
  }
}


/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  background: linear-gradient(0deg, rgba(7,52,107,0.44) 0%, rgba(127,199,243,0.11) 100%),
    url('https://i0.wp.com/gym-room.ch/wp-content/uploads/2025/06/IMG_1064.jpg?fit=3024%2C4032&ssl=1') center center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  padding-top: 90px;
  box-sizing: border-box;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo img {
  width: 'auto';
  height: 120px;
  border-radius: 15px;
  margin-bottom: 0.6em;
  max-width: 100%;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--beige);
  margin-bottom: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 20px rgba(7, 52, 107, 0.65);
  line-height: 1.1;
}
.hero-desc {
  font-size: 1.28rem;
  color: var(--white);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(7, 52, 107, 0.72);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  max-width: 540px;
}

/* Bouton contact */
.hero-content a.contact-btn {
  margin-top: 0.7em;
  align-self: flex-start;
  display: inline-block;
  border: 2px solid #87bde1;
  padding: 0.82em 2.4em;
  border-radius: 10px;
  background: #fff;
  color: #207095;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 2px 17px rgba(135, 189, 225, 0.24);
  transition: background 0.14s, border 0.14s;
}

.hero-content a.contact-btn:hover,
.hero-content a.contact-btn:focus {
  background: #e1f0fc;
  border-color: #3295c6;
  outline: none;
  cursor: pointer;
}


@media (max-width: 900px) {
  .hero-section {
    height: 60vh;
    padding-top: 70px;
  }
  .hero-logo img {
    width: 90px;
    height: 90px;
    margin-bottom: 0.5em;
  }
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .hero-desc {
    font-size: 1rem;
    max-width: 95%;
  }
}

#cabinet {
  background: var(--main-blue);
}

.split-section {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  align-items: center;

}

.split-img {
  flex: 0 0 33.333%;  /* 1/3 */
  max-width: 33.333%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 28px rgba(7, 52, 107, 0.35);
}

.split-content {
  flex: 1 1 66.666%; /* 2/3 */
  color: var(--beige);
}

.split-content h2 {
  color: var(--beige);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.split-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.split-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.split-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive - passage en colonne */
@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .split-img, .split-content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .split-img {
    margin-bottom: 2rem;
    height: auto;
  }
}


.approach-section {
  background: #fff;
  padding: 3.5rem 1rem;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3.2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Texte prend 2/3 */
.approach-text-card {
  flex: 2 1 0;
  min-width: 260px;
  background: #fff;
  border: 3px solid #7fc7f3;
  border-radius: 18px;
  box-shadow: 0 8px 44px #7fc7f331;
  padding: 2.8rem 2.3rem;
  display: flex;
  flex-direction: column;
  color: #164468;
}

/* Image prend 1/3 */
.approach-image-container {
  flex: 1 1 0;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 7px 28px #7fc7f329;
}

.approach-image-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Titres et textes inchangés */
.approach-text-card h2 {
  margin: 0 0 1.1em 0;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #07346b;
}

.approach-text-card p {
  font-size: 1.11rem;
  margin-bottom: 1.5em;
  text-align: justify;
}

.approach-text-card h3 {
  margin: 1.3em 0 0.6em 0;
  font-size: 1.31rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #3295c6;
}

.approach-text-card p:last-of-type {
  margin-bottom: 0.5em;
}

/* Responsive : stacking vertical en mobile */
@media (max-width: 900px) {
  .approach-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .approach-text-card,
  .approach-image-container {
    flex: none;
    max-width: 100%;
    min-width: auto;
  }
  .approach-text-card {
    padding: 2rem 1.5rem;
  }
}


/* --- EQUIPE SECTION --- */
.team-section {
  background: #f7fafc;
  padding: 4.3rem 1rem;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2.8rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* 1/3 image */
.team-photo {
  flex: 0 1 33.33%;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 7px 28px rgba(127, 189, 243, 0.18);
  border-radius: 18px;
}

/* Image */
.team-photo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* 2/3 texte */
.team-info {
  flex: 0 1 66.66%;
  min-width: 270px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  text-align: justify;
  color: #17597f;
}

.team-info > div:first-child {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.12;
  color: #07346b;
  margin-bottom: 0.35em;
}

.team-info > div:nth-child(2) {
  font-size: 1.18rem;
  font-weight: 600;
  color: #236086;
  margin-bottom: 0.8em;
}

.team-info > div:nth-child(3) {
  font-size: 1.07rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
}

/* Bouton contact */
.team-info a.contact-btn {
  margin-top: 0.7em;
  align-self: flex-start;
  display: inline-block;
  border: 2px solid #87bde1;
  padding: 0.82em 2.4em;
  border-radius: 10px;
  background: #fff;
  color: #207095;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 2px 17px rgba(135, 189, 225, 0.24);
  transition: background 0.14s, border 0.14s;
}

.team-info a.contact-btn:hover,
.team-info a.contact-btn:focus {
  background: #e1f0fc;
  border-color: #3295c6;
  outline: none;
  cursor: pointer;
}


/* Bouton contact */
.team-info a.more-btn {
  margin-top: 0.7em;
  align-self: flex-start;
  display: inline-block;
  border: 2px solid #87bde1;
  padding: 0.82em 2.4em;
  border-radius: 10px;
  background: #fff;
  color: #207095;
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 2px 17px rgba(135, 189, 225, 0.24);
  transition: background 0.14s, border 0.14s;
}

.team-info a.more-btn:hover,
.team-info a.more-btn:focus {
  background: #e1f0fc;
  border-color: #3295c6;
  outline: none;
  cursor: pointer;
}

/* Responsive: empilement vertical en mobile */
@media (max-width: 900px) {
  .team-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .team-photo,
  .team-info {
    flex: none;
    max-width: 100%;
    min-width: auto;
  }
}


/* --- TRAITEMENTS --- */
.traitements-section {
  padding: 3rem 1.5rem;
  background: var(--main-blue);
  border-radius: var(--radius);
  color: var(--beige);
  margin-bottom: 3rem;
}
.traitements-section h2 {
  color: var(--beige);
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
}

/* --- FAQ --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.faq-acc-item {
  background: #f9fcff;
  border-radius: 18px;
  border: 2.2px solid #7fc7f3;
  box-shadow: 0 3px 20px #7fc7f326;
  transition: border .16s;
  overflow: hidden;
}
.faq-acc-item.active, .faq-acc-item:focus-within {
  border-color: #0C3569;
}
.faq-acc-btn {
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.19rem;
  color: #0C3569;
  padding: 1.25em 1.6em 1.25em 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: color .16s;
}
.faq-chevron {
  transition: transform .28s cubic-bezier(.6,.1,.54,.92);
  width: 2.1em;
  height: 1.22em;
  display: inline-block;
  position: relative;
}
.faq-chevron::after {
  content: "";
  display: block;
  border: solid #7fc7f3;
  border-width: 0 0 4px 4px;
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  position: absolute;
  right: 3px;
  top: 3px;
}
.faq-acc-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-acc-content {
  font-size: 1.06rem;
  color: #21749c;
  border-top: 1px solid #e6f4fc;
  padding: 0 1.6em 1.3em 1.18em;
  display: none;
  animation: fadeFaq .35s;
}
.faq-acc-item.active .faq-acc-content {
  display: block;
}
@keyframes fadeFaq {
  from {opacity:.6;transform:translateY(-8px);}
  to {opacity:1;transform:translateY(0);}
}

/* --- FOOTER --- */
footer {
  background: var(--main-blue);
  color: var(--beige);
  padding: 2.4em 0 0 0;
  font-size: 1rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items:start;
  gap: 2.2em;
}
.footer-block {
  min-width: 170px;
  margin-bottom: 1.3em;
}
.footer-title {
  font-weight: 700;
  margin-bottom: .4em;
  font-size: 1.11em;
  letter-spacing: .07em;
}
.footer-links, .footer-contact {
  margin: 0; padding: 0; list-style: none;
  color: var(--beige);
  font-size: .97em;
}
.footer-links li, .footer-contact li {
  margin-bottom: .31em;
}
.footer-map {
  flex: 1 1 330px;
}
.footer-map iframe {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  border: none;
  box-shadow: 0 3px 22px #07346b53;
  background: #eee;
}
.footer-bottom {
  background: var(--main-blue);
  color: var(--light-blue);
  text-align: center;
  font-size: .97em;
  padding: .9em 0 .44em 0;
  letter-spacing: .05em;
  border-radius: 0 0 0 0;
  margin-top: 1em;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
  /* Adapt section with white background */
  section[style*="background:#fff"] > div {
    flex-direction: column !important;
    padding: 1rem !important;
  }
  section[style*="background:#fff"] > div > div {
    max-width: 100% !important;
    margin: 0 auto 1.8rem auto !important;
  }

  /* FAQ column stack */
  #faq > div {
    flex-direction: column;
    gap: 1.4rem;
  }
  #faq > div > div:first-child {
    margin-bottom: 1.4rem;
  }

  /* Footer stack */
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer-block {
    min-width: auto;
  }
  .footer-map {
    width: 100%;
    max-width: 100%;
  }
  .footer-map iframe {
    height: 220px;
  }
}

.traitements-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 colonnes pour aligner au max sur desktop */
  gap: 2em 1.2em;
  justify-items: center;
  align-items: start;
  margin: 0 auto;
}

.traitement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.traitement-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-bottom: 0.7em;
  background: #fce9ce;
  box-shadow: 0 2px 10px #0003;
  object-fit: contain;
}

.traitement-label {
  text-align: center;
  color: #fce9ce;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.3em;
  max-width: 145px;
  word-break: break-word;
}

/* Responsive : moins de colonnes en mobile */
@media (max-width: 1100px) {
  .traitements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 800px) {
  .traitements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3em 0.7em;
  }
  .traitement-label { font-size: 0.95rem; }
}

.sticky-actions {
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  display: flex;
  flex-direction: row;
  gap: .3rem;
  z-index: 1000;
  align-items: center;
}

.action-text-btn {
  display: flex;
  align-items: center;
  background: #246694;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(12,53,105,0.11);
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-family: 'Poppins',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s, box-shadow 0.15s;
  min-width: 0;
}

.action-btn {
  display: flex;
  align-items: center;
  background: #246694;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(12,53,105,0.11);
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-family: 'Poppins',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s, box-shadow 0.15s;
  min-width: 0;
}

.action-btn:hover {
  background: #0C3569;
  box-shadow: 0 4px 24px rgba(12,53,105,0.14);
}

.action-svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.action-text {
  margin-left: .2rem;
  display: inline-block;
}

/* Mobile version: icônes seulement */
@media (max-width: 700px) {
  .sticky-actions {
    right: 1vw;
    bottom: 1vh;
    gap: 0.7rem;
  }
  .action-btn {
    padding: 0.5rem;
    border-radius: 50px;
    font-size: 0;
    min-width: 0;
    box-shadow: 0 2px 10px rgba(12,53,105,0.12);
    background: #246694ee;
    justify-content: center;
  }
  .action-svg {
    margin-right: 0;
    width: 30px;
    height: 30px;
  }
  .action-text {
    display: none;
  }
}

.language-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.3rem;
}

.dropdown-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.12em 1.4em 0.12em 0.6em;
  transition: color 0.18s;
  outline: none;
  position: relative;
  min-width: 86px;
  text-align: left;
}

.dropdown-btn:focus,
.dropdown-btn:hover {
  color: #87BDE1;
}

/* Flèche discrète à droite */
.dropdown-arrow {
  margin-left: 0.3em;
  font-size: 0.95em;
  pointer-events: none;
}

.dropdown-list {
  position: absolute;
  top: 120%;
  right: 0;
  background: #0C3569;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(12,53,105,0.11);
  min-width: 110px;
  z-index: 1200;
  display: none;
}

.dropdown-option {
  padding: 0.5em 1em;
  color: #fce9ce;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.04rem;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

.dropdown-option:hover {
  background: #87BDE1;
  color: #000;
}
.dropdown-option.selected {
  background: #87BDE1;
  color: #000;
}

/* Cacher la bordure, effets discrets */
.dropdown-list {
  border: none;
}

/* Responsive */
@media (max-width: 700px) {
  .language-dropdown {
    margin-left: 0.5rem;
  }
  .dropdown-btn {
    font-size: 0.98rem;
    min-width: 72px;
    padding-right: 1.1em;
    padding-left: 0.4em;
  }
  .dropdown-list {
    min-width: 100px;
  }
  .dropdown-option {
    font-size: 0.98rem;
    padding: 0.45em 0.7em;
  }
}

.contact-links {
  display: flex;
  gap: 1rem; /* espace entre les liens */
  align-items: center; /* optionnel, aligne verticalement */
  flex-wrap: nowrap; /* empêche le retour à la ligne */
}

#whatsapp{
  background: #25D366;
}

#whatsapp:hover{
  background: #075E54;
}