/*  REGLAGES GENERAUX MENTIONS LEGALES............................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  background-color: black;
}

main {
  width: 100%;
  flex: 1;
}

/* SCROLL ANCRE CATEGORIES....................................................... */

#LegalNotices,
#privacyPolicy,
#cookiesPolicy,
#termsAndConditions {
  scroll-margin-top: 250px;
}

/* FONT AWESOME...................................................................................................................... */

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

/* GOOGLE FONTS...................................................................................................................... */

@font-face {
  font-family: "Lato";
  src: url("../webfonts/lato-v25-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Passion One";
  src: url("../webfonts/passion-one-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Permanent Marker";
  src: url("../webfonts/permanent-marker-v16-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik Spray Paint";
  src: url("../webfonts/rubik-spray-paint-v1-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*  HEADER / BARRE NAVIGATION........................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.header-site {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.barre-nav {
  height: 120px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 50px;

  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid rgb(111, 93, 0);

  z-index: 9999;

  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;

  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    background-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.barre-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.barre-nav.is-scrolling-down {
  background-color: rgba(11, 11, 11, 0.65);
  backdrop-filter: blur(3px);
}

.barre-nav.is-scrolling-up {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(6px);
}

/* LOGO HEADER GAUCHE............................................................ */

.logo-header {
  background: url(../PICS/logoX.webp) no-repeat;
  background-position: center;
  background-size: 100%;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Scroll DOWN → logo discret */
.barre-nav.is-scrolling-down .logo-header {
  opacity: 0;
  transform: translateY(-5px);
}

/* Scroll UP → logo visible */
.barre-nav.is-scrolling-up .logo-header {
  opacity: 1;
  transition: 0.3s ease-in-out;
  transform: translateY(0);
}

/* LIENS HEADER CENTRE........................................................... */

.links-header {
  display: flex;
  align-items: center;
  gap: 80px;
  list-style: none;
  margin-right: 100px;
}

.links-header li {
  position: relative;
  display: flex;
  align-items: center;
}

.links-header li a {
  font-size: 25px;
  text-decoration: none;
  color: white;
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0px 0px 20px #6f5d00;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  z-index: 9999;
  text-align: center;
}

.links-header li a:hover {
  color: #ebc400;
}

/* LOGO LIENS CENTRE............................................................... */

.logo-story-1 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url(../SVG/football\ ball.svg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.logo-story-2 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  background-image: url(../SVG/team.svg);
}

.logo-story-3 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url(../SVG/shirt.svg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.logo-story-4 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url(../SVG/galleryLogo.svg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.links-header li:hover .logo-story-1 {
  opacity: 0.5;
}
.links-header li:hover .logo-story-2 {
  opacity: 0.5;
}

.links-header li:hover .logo-story-3 {
  opacity: 1;
}

.links-header li:hover .logo-story-4 {
  opacity: 0.9;
}

/* BOUTON CTA DROITE................................................................ */

.liens-nav-header {
  display: flex;
  gap: 25px;
  align-items: center;
}
.cta-header {
  background-color: transparent;
  padding: 5px;
  font-size: 18px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: "Passion One", sans-serif;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.cta-header:hover {
  color: rgb(235, 196, 0);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/*  MAIN ............................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/*  HERO SITE........................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.hero-site {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 200px 350px 20px 200px;
  position: relative;
  overflow: hidden;
}

.hero-site > * {
  position: relative;
  z-index: 1;
}

.hero-site img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  object-position: center -5%;
}

/* HERO H1......................................................................... */

.hero-h1 {
  font-size: 170px;
  font-family: "Permanent Marker", sans-serif;
  color: rgb(235, 196, 0);
  margin: 0;
  animation: fadeInOnly 2s ease-out forwards;
  animation-delay: 1s, 3s; /* X&3K apparaît après "l'équipe" (3s) */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  line-height: 0; /* Supprime l'espace vertical */
  margin: 70px 0px 70px 250px;
  position: relative;
  text-shadow: 0px 0px 15px black;
}

.hero-h1 strong {
  font-family: "Rubik Spray", sans-serif;
  font-size: 110px;
  position: absolute;
  color: rgba(0, 0, 0, 0.838);
  left: 22%;
  animation: rotateSign 0.8s ease-in-out forwards;
  animation-delay: 3s;
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  transform-origin: center;
  transform: rotate(0deg);
  text-shadow: 0px 0px 5px #ebc400;
}

.hero-h1-texte {
  font-size: 100px;
  font-family: "Permanent Marker", sans-serif;
  color: white;
  letter-spacing: 3px;
  text-shadow: 0px 0px 10px black;
  animation: stampEffect 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  line-height: 0.8;
  margin-top: -70px;
  animation-delay: 0s;
}

/* HERO INSTRUCTIONS................................................................ */

.scroll-down-instruction {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-style: italic;
  animation: clignoter 4.5s ease-in-out 2s infinite;
  opacity: 0;
  animation:
    fadeInOnly 1s ease-out 1.5s forwards,
    clignoter 3s ease-in-out 3s infinite;
  text-shadow: 0px 0px 2px white;
  position: absolute;
  bottom: 3%;
  left: 40%;
}

/* HERO RESEAUX INSTAGRAM......................................................... */

.lienReseaux-hero {
  text-decoration: none;
  color: #ebc400;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: bold;
  margin-top: 10px;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 2.5s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  background-color: rgba(0, 0, 0, 0.655);
  padding: 8px 15px;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px #ebc400;
  margin-left: 250px;
}

/*  SECTION HERO MENTIONS LEGALES............................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.hero-ml {
  padding: 150px 0px 0px 0px;
  min-height: 100vh;
  min-height: 100dvh;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../PICS/terrainNuitStats.webp);
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.603);
  background-blend-mode: darken;
}

.hero-ml h1 {
  font-size: 100px;
  font-family: "Permanent Marker", sans-serif;
  color: white;
  text-shadow:
    0px 0px 20px black,
    0px 0px 5px black;
  animation: fadeInOnly 1s ease-out forwards;
  animation-delay: 0s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
}

.hero-ml-para {
  font-family: "Lato", sans-serif;
  color: white;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.8em;
  width: 50%;
  text-align: center;
  animation: fadeInOnly 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
}

.links-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  animation: fadeInOnly 1s ease-out forwards;
  animation-delay: 1.3s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
}

.links-hero-1,
.links-hero-2,
.links-hero-3,
.links-hero-4 {
  color: white;
  list-style-type: none;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  font-family: "Passion One", sans-serif;
  padding: 10px 30px;
  border-radius: 10px;
  text-shadow: 0px 0px 2px black;
}

.links-hero-1:hover,
.links-hero-2:hover,
.links-hero-3:hover,
.links-hero-4:hover {
  color: rgb(235, 196, 0);
  transition: 0.2s all ease-in-out;
}

/* HERO INSTRUCTIONS................................................................ */

.hero-ml-instructions {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  gap: 30px;
}

.scroll-down-instruction {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  text-shadow: 0px 0px 2px black;
  animation: clignoter 4.5s ease-in-out 2s infinite;
  opacity: 0;
  animation:
    fadeInOnly 1s ease-out 1.5s forwards,
    clignoter 3s ease-in-out 3s infinite;
}

/*  SECTION BANNIERE OUR STORY (TEXTE)............................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.our-story {
  padding: 50px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid rgb(111, 93, 0);
  border-bottom: 2px solid rgb(111, 93, 0);
  background: #6f5d00;
  background: linear-gradient(
    351deg,
    rgba(32, 31, 7, 0.366) 0%,
    rgba(38, 38, 19, 0.6) 47%,
    rgba(38, 36, 12, 0.61) 74%,
    rgba(102, 99, 21, 0.327) 100%
  );
}

.our-story h2 {
  width: 100%;
  font-size: 50px;
  color: rgb(235, 196, 0);
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  text-decoration-color: #6f5d00;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.our-story h3 {
  width: 100%;
  font-size: 28px;
  color: #ebc400;
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 20px;
  border-left: 4px solid #ebc400;
}

.our-story a {
  color: rgb(0, 68, 255);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.our-story a:hover {
  color: orangered;
}

.our-story p {
  width: 100%;
  color: white;
  margin: 10px 0;
  padding: 0 20px;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  line-height: 1.8em;
  letter-spacing: 0.5px;
  text-align: justify;
}

.our-story p strong {
  color: #ebc400;
  font-weight: bold;
}

.our-story p em {
  color: #ebc400;
  font-style: italic;
}

.our-story p br {
  line-height: 2em;
}

/* CLASSE NOTE......................................................... */

.our-story .note {
  width: calc(100% - 40px);
  background-color: rgba(235, 196, 0, 0.1);
  border-left: 4px solid #ebc400;
  padding: 20px 25px;
  margin: 30px 20px;
  color: white;
  font-size: 17px;
  font-family: "Lato", sans-serif;
  font-style: italic;
  line-height: 1.8em;
  letter-spacing: 0.5px;
  text-align: justify;
  border-radius: 5px;
}

.our-story .note strong {
  color: #ebc400;
  font-style: normal;
  font-weight: bold;
}

/* LISTES................................................. */

.our-story ul {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 20px 15px 60px;
  margin: 15px 0;
  list-style: none;
}

.our-story ul li {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.7em;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 25px;
}

.our-story ul li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  color: #ebc400;
  font-size: 16px;
}

.our-story ul li strong {
  color: #ebc400;
  font-weight: bold;
}

.our-story ul li a {
  color: rgb(0, 68, 255);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.our-story ul li a:hover {
  color: orangered;
}

/* ANIMATIONS (si vous voulez les garder) */

.our-story p.visible {
  opacity: 1;
  transform: translateX(0);
}

.our-story .note.visible {
  opacity: 1;
  transform: translateX(0);
}

.our-story ul.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BOUTON RETOUR EN HAUT ................................................................. */
/* ....................................................................................... */
/* ....................................................................................... */

.back-to-top-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.back-to-top-container.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background-color: black;
  border: 2px solid #ebc400;
  border-radius: 50%;
  padding: 10px;
  color: #ebc400;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #ebc400;
  color: black;
  box-shadow: 0px 0px 15px #ebc400;
}

.back-to-top-text {
  color: #ebc400;
  font-family: "Passion One", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* FOOTER............................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.footer-site {
  width: 100%;
  background-color: rgb(11, 11, 11);
  display: flex;
  padding: 10px 50px;
  position: relative;
  border-top: 2px solid rgb(111, 93, 0);
}

/* FOOTER LEFT......................................................... */

.footer-left {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  justify-content: space-around;
  width: 20%;
}

.footer-left-title {
  display: flex;
  flex-direction: column;
}

.footer-left-title-1 {
  font-size: 50px;
  font-family: "Permanent Marker", sans-serif;
  color: rgb(235, 196, 0);
  text-shadow: 0px 0px 5px rgb(235, 196, 0);
  margin: 0;
  position: relative;
}

.footer-left-title-1 strong {
  font-family: "Rubik Spray", sans-serif;
  color: rgba(0, 0, 0, 0.838);
  -webkit-text-stroke: 0.5px #ebc400;
  font-size: 40px;
}

.footer-left-title-2 {
  font-size: 35px;
  font-family: "Passion One", sans-serif;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px rgb(235, 196, 0);
  text-shadow: 0px 0px 10px rgb(235, 196, 0);
  position: absolute;
  top: 31%;
}

/* FOOTER CENTER....................................................... */

.footer-center {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 60%;
  flex-direction: column;
}

.logo-footer {
  background: url(../PICS/logoX.webp) no-repeat;
  background-position: center;
  background-size: 100%;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  opacity: 0.3;
  position: absolute;
}

.fc-para {
  text-align: center;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  color: white;
  letter-spacing: 1.5px;
  width: 50%;
  z-index: 999;
  line-height: 1.6em;
}

.fc-para strong {
  color: rgb(235, 196, 0);
}

.fc-copyright {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 9px;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 2px;
  text-align: justify;
  position: absolute;
  bottom: 6%;
}

.fc-copyright em {
  color: rgb(235, 196, 0);
}

/* FOOTER RIGHT........................................................ */

.footer-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 20%;
}

.footer-right-title {
  font-family: "Permanent Marker", sans-serif;
  font-size: 30px;
  color: white;
  text-shadow: 0px 0px 5px rgb(235, 196, 0);
  font-style: italic;
}

.footer-right-title::first-letter {
  font-size: 40px;
  color: rgb(235, 196, 0);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0px;
}

.footer-link-list li {
  list-style-type: none;
}

.footer-link-list li a {
  color: rgb(190, 190, 190);
  font-family: "Passion One", sans-serif;
  font-size: 19px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-link-list li a:hover {
  color: rgb(235, 196, 0);
  transition: 0.1s all ease-in-out;
}

/* KEYFRAMES PAGE MENTIONS LEGALES................................................................................................... */
/* .................................................................................................................................. */
/* .................................................................................................................................. */

/* CLIGNOTER...................................................... */

@keyframes clignoter {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* FADE IN ONLY................................................... */

@keyframes fadeInOnly {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  RESPONSIVE DESIGN................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/*  RESPONSIVE DESIGN................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

@media (min-width: 481px) {
  .gallery-instructions {
    display: none;
  }

  .hamburger-btn {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
  }

  .links-header {
    flex-direction: row;
  }
}

/*  RESPONSIVE MOBILE (480 PX)....................................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

@media (max-width: 480px) {
  /* REGLAGES GLOBAUX.................................................................................................................................................. */
  /* .................................................................................................................................................................. */
  /* .................................................................................................................................................................. */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
  }

  main {
    width: 100%;
    flex: 1;
  }

  #teamSponsors,
  #ourStory,
  #teamMembers,
  #teamGallery {
    scroll-margin-top: 80px;
  }

  /* HEADER............................................................................................................................................................ */
  /* .................................................................................................................................................................. */
  /* .................................................................................................................................................................. */

  /* .............................................................BARRE NAV */

  .barre-nav {
    height: 80px;
    padding: 15px;
    justify-content: space-between;
  }

  .logo-header {
    width: 45px;
    height: 45px;
    z-index: 10001;
  }

  /* BOUTON HAMBURGER....................................................... */

  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 23px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ebc400;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  /* ANIMATION HAMBURGER → X .................................................*/

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  /* MENU MOBILE (caché par défaut).......................................... */

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 80vh;
    background-color: #0b0b0b;
    border-bottom: 2px solid #6f5d00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 10px;
    z-index: 10000;
    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  /* LIENS MENU MOBILE................................................ */

  .links-header {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-right: 0px;
  }

  .links-header li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .links-header li a {
    font-size: 22px;
    display: block;
    padding: 12px 0;
  }

  /* CACHE LES ICÔNES SUR MOBILE................................... */

  .logo-story-1,
  .logo-story-2,
  .logo-story-3,
  .logo-story-4 {
    display: none;
  }

  /* BOUTON CTA MOBILE .............................................*/

  .liens-nav-header {
    flex-direction: column;
    gap: 10px;
  }

  .cta-header {
    font-size: 14px;
    padding: 10px 20px;
    text-align: center;
  }

  /* OVERLAY (fond sombre) .........................................*/

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* SECTION HERO...................................................................................................................................................... */
  /* .................................................................................................................................................................. */
  /* .................................................................................................................................................................. */

  .hero-ml {
    padding-top: 100px;
    min-height: 100vh; /* fallback */
    min-height: 100dvh;
  }

  /* ..........................................................................HERO H1 */

  .hero-ml h1 {
    font-size: 50px;
    text-shadow: 0px 0px 5px #ebc400;
  }

  /* ........................................................................HERO PARA */

  .hero-ml-para {
    width: 90%;
    font-size: 14px;
  }

  /* .......................................................................HERO LIENS */

  .links-hero {
    gap: 10px;
    flex-direction: column;
    margin-top: 5px;
  }

  .links-hero-1,
  .links-hero-2,
  .links-hero-3,
  .links-hero-4 {
    font-size: 20px;
    text-align: center;
    padding: 5px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 2px;
  }

  /* .....................................................HERO SCROLL DOWN INSTRUCTIONS */

  .scroll-down-instruction {
    margin: 0px;
    font-size: 13px;
    left: 23%;
  }

  /* SECTION LEGAL NOTICES............................................................................................................................................. */
  /* .................................................................................................................................................................. */
  /* .................................................................................................................................................................. */

  .our-story {
    padding: 20px 10px;
  }

  .our-story h2 {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
    font-size: 35px;
  }

  .our-story a {
    font-size: 14px;
  }

  .our-story p {
    text-align: start;
    width: 100%;
    font-size: 14px;
  }

  .our-story p em {
    font-size: 14px;
  }

  .our-story .note {
    font-size: 14px;
  }

  .our-story ul li {
    font-size: 14px;
  }

  /* BOUTON RETOUR EN HAUT........................................................................................................................................... */
  /* ................................................................................................................................................................ */
  /* ................................................................................................................................................................ */

  .back-to-top-container {
    bottom: 20px;
    right: 15px;
  }

  .back-to-top {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .back-to-top-text {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* FOOTER.......................................................................................................................................................... */
  /* ................................................................................................................................................................ */
  /* ................................................................................................................................................................ */

  .footer-site {
    flex-direction: column;
    padding: 30px 20px 20px 20px;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .footer-left {
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .footer-left-title-1 {
    font-size: 50px;
    margin-top: 20px;
  }

  .footer-left-title-1 strong {
    font-size: 35px;
  }

  .footer-left-title-2 {
    font-size: 40px;
    position: absolute;
    top: 4%;
    left: 34%;
  }

  .footer-center {
    gap: 20px;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .logo-footer {
    height: 400px;
    width: 400px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
  }

  .fc-para {
    font-size: 14px;
    line-height: 1.8em;
    width: 90%;
    text-align: center;
  }

  .fc-copyright {
    font-size: 9px;
    padding: 0px 30px;
    text-align: center;
    font-style: italic;
    position: inherit;
    margin-bottom: 10px;
    line-height: 1.8em;
  }

  .footer-right {
    gap: 5px;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .footer-right-title {
    font-size: 25px;
  }

  .footer-link-list {
    gap: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-link-list li {
    padding: 10px 0px;
    width: 100%;
  }

  .footer-link-list li a {
    font-size: 17px;
    letter-spacing: 2px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
