/* fiche style css */ 

@keyframes pulseLight {
  0% {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  }
}

/* animation si nécessaire

  box-shadow: 0 2px 5px rgba(67, 176, 241, 0.7);
  animation: pulseLight 2s infinite ease-in-out;

*/

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 749px) { 
  .language-selector select {
    padding: 6px 6px;
    margin-top: 10px;
    justify-content: left;
    font-size: 10px;
    border: 1px solid #2d333b;
    border-radius: 5px;
    background-color: #020509;
    color:#f4f6fc;
    cursor: pointer;
  }

  .language-selector {
    margin-right: 0px;
    display: flex;
    align-items: center;
  }

  .separator-box {
    width: 70%;
    height: 1px;
    background-color: #2d333b;
    margin: 0 16px;
  }
}

@media screen and (min-width: 749px) { 
  .language-selector select {
    padding: 6px 7px;
    margin-top: -5px;
    font-size: 10px;
    border: 1px solid #2d333b;
    border-radius: 5px;
    background-color: #020509;
    color:#f4f6fc;
    cursor: pointer;
  }

  .language-selector {
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
}  

header {
  padding: 10px 0;
  width: 100%;
  top: 0;
  background: #090909;
  border-bottom: 1px solid #2d333b;
}

body {
  font-family: Arial, sans-serif;
  background-color: #090909;
  margin: 0;
  padding: 0;
}

.Btn {
  width: 35px;
  height: 35px;
  background: #161616;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: fixed;
  cursor: pointer;
  z-index: 999;
}

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

.arrow path {
  fill: #fff;
  width: 15px;
  height: 15px;
}

/* --- MOBILE NAV MENU --- */
.nav-menu-mobile {
  position: fixed;
  top: 0;
  font-family: Figtree;
  left: 0;
  width: 85%;
  height: 92vh;
  background-color: #090909;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
  border-right: 1px solid #2d333b;
}

.nav-menu-mobile.active {
  transform: translateX(0); 
}

/* --- PC NAV MENU (hamburger-pc) --- */
.nav-menu-desktop {
  position: fixed;
  top: 0;
  font-family: Figtree;
  left: 0;
  width: 33%;
  height: 92vh;
  background-color: #090909;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
  border-right: 1px solid #2d333b;
}

.nav-menu-desktop.active {
  transform: translateX(0); 
}

.desktop-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 10px;
  padding-top: 50px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
}

.desktop-nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 3px;
  position: relative;
  transition: color 0.3s ease;
}

.desktop-nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: white;
  transition: width 0.4s ease;
}

.desktop-nav-links li a:hover {
  color: white;
}

.desktop-nav-links li a:hover::after {
  width: 100%;
}
/* --- NAV LINKS MOBILE --- */
.mobile-header {
  border-bottom: 1px solid #8b949e;
  padding-bottom: 15px; 
  margin-bottom: 20px;
}

.mobile-logo {
  width: 46px;
  height: auto;
  text-align: right;
  align-content: right;
  right: 10px;
  justify-content: right;
  justify-items: right;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 25px;
}

.mobile-nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.box {
  background-color: #111111;
  border: 1px solid #2d333b;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.box p {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.instagram-link {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  margin: 15px 10px;
  margin-bottom: 20px;
}

.box-language-pc {
  background: linear-gradient(to right, #101010, #171717);
  border: 1px solid #2d333b;
  padding: 15px;
}

.box-language-pc select {
    text-align: center;
    margin: 0 auto;
}

.box-pc {
  margin-top: -30px;
  background: linear-gradient(to right, #101010, #171717);
  border: 1px solid #2d333b;
  padding: 2px;
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.box-pc p {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* HAMBURGER MOBILE */
@media screen and (max-width: 749px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 9px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.4s ease;
    position: absolute;
    left: -10px; /* tout à gauche */
  }

  .hamburger .bar {
    width: 20px;
    height: 1px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2.6px);
  }

  .hamburger.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2.6px);
  }

  body.menu-active {
    overflow: hidden;
  }
}

/* HAMBURGER PC */
@media screen and (min-width: 749px) {
  .hamburger-pc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    margin: 0 auto !important;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.4s ease;
    position: absolute;
    left: -2rem; /* tout à gauche */
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger-pc .bar {
    width: 20px;
    height: 1px; /* un peu plus épais pour bien voir la croix */
    background-color: #fff;
    margin: 3px 0; /* espace entre les 2 barres */
    transition: 0.4s;
    transform-origin: center;
  }

  /* Animation active avec seulement 2 barres */
  .hamburger-pc.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2.6px);
  }

  .hamburger-pc.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2.6px);
  }

  body.menu-active {
    overflow: hidden;
  }
}
/* Responsive : menu desktop caché sur mobile */
@media screen and (max-width: 749px) {
  .nav-menu {
    display: none;
  }
}

/* Footer */
.separator-footer {
  width : 94%;
  height: 1px;
  background-color: #2d333b;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

footer {
  background: #090909;
  border-top:  1px solid #2d333b;
  color: #8b949e;
  text-align: center;
  padding: 25px 0;
  bottom: 10px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: -10px;
}   

.container-header {
  display: flex;
  align-items: center;
  width: 90%;
  height: 40px;
  position : relative;
  margin: 0 auto;
  justify-content: center;
  padding: 10px 0;
}

@media screen and (max-width: 749px) {
  .logo {
    height: 40px;
    margin-right: 0px;
    margin-top: 10px;
    right: 20px;
  }
}
@media screen and (min-width: 749px) {
    .logo {
      height: 42px;
      width: auto;
      margin: 0 auto;
    }
  }

.nav-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 25px;
  justify-content: left;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  color: #f4f6fc;
  font-size: 14px;
  transition: color 0.3s ease;
}

hr {
    margin-top: -8px;
}

.footer-text {
    font-size: 13px;
    font-weight: lighter;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
* {
    -webkit-tap-highlight-color: transparent;
  }

a {
    all: unset;
    cursor: pointer; /* pour garder le curseur "main" */
  }

/* Footer */
.separator-footer {
  width : 94%;
  height: 1px;
  background-color: #2d333b;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

footer {
  background: #090909;
  border-top:  1px solid #2d333b;
  color: #8b949e;
  text-align: center;
  padding: 25px 0;
  bottom: 10px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: -10px;
}   

.container-header {
  display: flex;
  align-items: center;
  width: 90%;
  height: 40px;
  position : relative;
  margin: 0 auto;
  justify-content: center;
  padding: 10px 0;
}

@media screen and (max-width: 749px) {
  .logo {
    height: 40px;
    margin-right: 0px;
    margin-top: 10px;
    right: 20px;
  }
}
@media screen and (min-width: 749px) {
    .logo {
      height: 42px;
      width: auto;
      margin: 0 auto;
    }
  }

.nav-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 25px;
  justify-content: left;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  color: #f4f6fc;
  font-size: 14px;
  transition: color 0.3s ease;
}

hr {
    margin-top: -8px;
}

.footer-text {
    font-size: 13px;
    font-weight: lighter;
}
/* --- FORMULAIRE DE CONTACT --- */

  .formulaire-de-contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 10px;
  padding-bottom: 30px;
  background-color: #060606;
  border: 1px solid #2d333b;
  border-radius: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #adacac;
  font-family: Figtree;
}

.titre-contact {
  text-align: center;
  color: #fff;
  font-size: 20px;
  justify-content: center;
  margin-bottom: 2rem;
  padding-top: 10px;
}

.formulaire-de-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.formulaire-de-contact__form label {
  font-size: 14px;
  margin-bottom: -7px;
  color: #adacac;
}

.formulaire-de-contact__form input,
.formulaire-de-contact__form textarea {
  padding: 0.8rem;
  border: 1px solid #2d333b;
  background-color: transparent;
  color: #adacac;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

.formulaire-de-contact__form input:focus,
.formulaire-de-contact__form textarea:focus {
  outline: none;
  border-color: #adacac;
  background-color: #0a0d12;
}

.formulaire-de-contact__form button {
  background-color: #fff;
  color: #090909;
  border: none;
  padding: 0.9rem;
  padding-right: 40px;
  padding-left: 40px;
  margin: 0 auto;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.formulaire-de-contact__form button:hover {
  background-color: #b99753;
}

.merci-message {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #0a0d12;
  color: #9c7d3c;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 999;
  border: 1px solid #9c7d3c;
}

.merci-message {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.merci-message.show {
  opacity: 1;
}

@media (max-width: 749px) {
    .formulaire-de-contact {
        padding : 2rem;
        width: 76%;
    }
     }


@media (min-width: 749px) {
    .formulaire-de-contact {
        padding-left: 140px;
        padding-right: 140px;
    }
     }