html {
  scroll-behavior: smooth;
}

body {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  padding-top: 100px;
  background-color: #f6aac03d;
  background-color: #fff6f8;
  margin: 0;
}

/*@font-face {
  font-family: 'Kalufira';*/
/* On met le WOFF2 en premier car c'est le plus léger, puis le WOFF */
/*src: url('polices/kalufira/Kalufira.woff2') format('woff2'),
       url('polices/kalufira/Kalufira.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}*/








/* --- BARRE DE NAV --- */
header {
  position: fixed;
  /*pour que la barre reste fixe en haut*/
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 15px 0;
}

.logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  display: flex;
  align-items: center;
  background-color: rgb(255, 244, 244);
  border: 1px solid #541507;
  border-radius: 50px;
  padding: 8px 30px;
  gap: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.152);
}

.menu ul li a {
  font-family: "Archivo", sans-serif;
  text-decoration: none;
  color: #541507;
}


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

.menu li {
  display: inline-block;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.menu a:hover {
  color: #e6007e;
}

.menu a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  color: #e6007e;
  /* optionnel */
}





/**** BANNIERE ****/
.banniere {
  margin-top: 0;
  padding-top: 200px;
  padding-bottom: 200px;
  /* background-color: pink; */
  text-align: center;
  font-size: 6rem;
}




/* --- TEXTES ---*/
/*** --- LES TEXTES PAS EN PX!!!!!!!! --- ***/
h1 {
  /*font-family: 'Kalufira', sans-serif;*/
  font-weight: 900;
  font-size: 2.7rem;
  margin-bottom: 40px;
  color: #541507;
}


.anime-text .letter {
  display: inline-block;
  line-height: 1em;
  text-shadow: #ff7ea2 1px 0 10px;
  /*font-family: 'Kalufira', sans-serif;*/

}

.sous-titre {
  position: relative;
  z-index: 2;
  /* Pour rester au-dessus du cercle rose */
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-size: 1.7rem;
  color: #541507;
  margin-top: -150px;
  /* Pour compenser le padding de la bannière et le rapprocher */
  text-transform: none;
  text-shadow: #ff7ea2 1px 0 10px;

}

h2 {
  margin: 0 0 45px 0;
  font-weight: 800;
  color: #541507;
}

h3 {
  color: #541507;
}

p {
  color: #541507;
}

a {
  color: #541507;
}

.contacts h2 {
  margin: 0 0 15px 0;
  font-size: 2rem;
}

.reco h2 {
  /* font-size: 1.1rem; */
  /*plus petit*/
  margin-bottom: 4px;
}

.projet h2 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}


.textehaut {
  margin: 40px 0 40px 0;
}

.reco h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.reco p {
  margin-top: 5px;
}

.apropos a {
  text-decoration: none;
  font-weight: 600;
}

.presentation .texte {
  max-width: 600px;
}

.presentation p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.logo-item span {
  position: absolute;
  bottom: -45px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #541507;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.logo-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.projet p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}



/* --- texte reco avec effet 3D --- */
.textReco {
  color: #541507;
  /*background-color: rgb(255, 255, 255);*/
  border: 1px solid rgb(14, 0, 0);
  border-radius: 60px;
  padding: 40px 30px;
  box-shadow: 10px 10px 0px #541507;
  width: 300px;
  height: 120px;
  line-height: 1.5;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.textReco:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 0px #541507;
}

.contacts img {
  width: 300px;
  height: auto;
  transform: rotate(-2deg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-item a {
  /*text-decoration: none;*/
  color: #541507;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #e6007e;
}

.mentions {
  text-decoration: none;
  color: #541507;
  border-bottom: 1px solid;
  transition: color 0.3s ease;
}

.mentions:hover {
  color: #e6007e;
}

#footer {
  padding: 60px 40px;
}

#footer .contacts {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.description {
  display: block;
  justify-content: space-between;
}

.descriptionprojets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1200px;
  /*margin: 45px auto;
  margin-bottom: 50px;
  margin: 0 20px 50px 20px;*/
}

.introprojets {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1200px;
  /*margin: 0 auto;*/
}


.tetedescription {
  text-align: center;
}


footer a {
  margin: 0 10px 0 10px;
}






/* --- SECTIONS --- */

#footer.section {
  background-color: #f6aac03d;

}

#accueil.section {
  margin-bottom: 120px;
}

#apropos.section,
#mesprojets.section,
#recommandations.section {
  margin-top: 3em;
  margin-bottom: 3em;
  padding-top: 0.5em;
  padding-bottom: 3em;
  background-color: #fff6f8;
}

.presentation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.photoMoi {
  width: 540px;
  max-width: 100%;
  height: auto;
  transform: rotate(-2deg);
  /*border: 2px solid #541507;
  border-radius: 15px;
  box-shadow: 10px 10px 0px #541507;*/
  /* ombre noire (que j'ai changé en marron */
}

.boutonTelecharger,
.boutonLinkedin {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #541507;
  border-radius: 10px;
  text-decoration: none;
  background-color: #541507;
  color: rgb(255, 244, 244);
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 40px 0 0;
}

.boutonTelecharger:hover,
.boutonLinkedin:hover {
  background-color: rgb(255, 244, 244);
  color: #541507;
  border-color: #541507;
}

/*.boutonLinkedin {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #541507;
  border-radius: 10px;
  text-decoration: none;
  background-color: rgb(255, 244, 244);
  color: #541507;
  font-weight: 600;
  transition: all 0.3s ease;
}

.boutonLinkedin:hover {
  background-color: #541507;
  color: rgb(255, 244, 244);
  border-color: #541507;
}*/

#logiciels {
  text-align: center;
  margin: 100px auto;
  max-width: 1200px;
}

#mesprojets {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* grid des projets */
.liste-projets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
  justify-items: center;
}


.projet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.projet .carte {
  /*background-color: rgb(255, 244, 244);*/
  width: 588px;
  height: 330.75px;
  border: 1px solid rgb(14, 0, 0);
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carte img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projet .carte:hover {
  transform: translateY(-5px);
  box-shadow: none;
}


#recommandations {
  text-align: center;
  margin: 100px;
  padding: 0 20px;
}

#recommandations .reco-parties {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 90px;
}

.reco {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px;
}

.lienfigma:hover {
  transition: color 0.3s ease;
  color: #e6007e;
}


/*.textebas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.textebas p {
  width: 230px;
  height: 66px;
  margin: 25px;
}

.textebas a {
  transition: color 0.3s ease;
  color: #FDB4BC;
}

.textebas a:hover {
  color: #ffffff;
}*/

/*.voirleprojet {
  font-weight: 700;
  margin-top: 10px;
  border-radius: 20px;
  width: 180px;
  height: 50px;
  color: #FDB4BC;
  background-color: #541507;
  font-size: 1.1rem;
  padding-left: 21px;
  padding-right: 21px;
  box-shadow: 0px 5px 5px rgba(66, 66, 66, 0.516);

}
.voirleprojet:hover {
  font-weight: 700;
  box-shadow: 0px 5px 5px rgba(66, 66, 66, 0.882);
  transition: color 0.3s ease;
}*/






/*** POPUP ***/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup {
  background: rgb(255, 244, 244);
  padding: 30px;
  /*max-width: 1000px;*/
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.popup p {
  font-size: 1.1rem;
}

.popup h2 {
  margin-top: 10px;
}

.popup-close {
  position: fixed;
  top: 50px;
  right: 80px;
  background: transparent;
  border: none;
  font-weight: 900;
  font-size: 40px;
  /*font-family: Kalufira;*/
  cursor: pointer;
  color: #541507;
}

.popup-close:hover {
  color: #af2d10;
  transition: color 0.3s ease;
}

/*.popup a:hover {
  color: #541507
}*/

.popup::-webkit-scrollbar {
  width: 13px;
}

.popup::-webkit-scrollbar-track {
  background: #FBD6E1;
  border-radius: 10px;
}

.popup::-webkit-scrollbar-thumb {
  background: #541507;
  border-radius: 10px;

}

.popup::-webkit-scrollbar-thumb:hover {
  background: #af2d10;
  transition: color 0.3s ease;
}


.popup-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  width: 1300px;
  gap: 20px;
}

.popup-navigation button {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #541507;
  background-color: rgb(255, 244, 244);
  color: #541507;
  width: 170px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.popup-navigation button:hover:not(:disabled) {
  background-color: #541507;
  color: white;
}

.popup-navigation button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}









/* --- ZONE INFOS PROJET + CARTES + PICTOS --- */

.zone-infos-projet {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* cartes alignées en haut */
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}


/* carte rose texte */
.carte-info {
  background-color: #ffe8f35b;
  border-radius: 40px;
  padding: 15px 25px;
  min-width: 230px;
  max-width: 300px;
  text-align: center;
  border: solid #541507 1px;
  box-shadow: 0 5px 5px rgba(72, 0, 29, 0.136);
}

/* conteneur bouton "Voir le projet" */
.carte-bouton {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* titre à l'intérieur des cartes */
.titre-carte {
  font-weight: 700;
  margin: 0 0 8px 0;
}

/* paragraphes des cartes */
.carte-info p {
  margin: 0;
  font-size: 1.1rem;
}

/* bouton "Voir le projet" */
.btn-projet {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background-color: #ffb8bf;
  color: #541507;
  font-weight: 700;
  border: solid #541507 1px;
  box-shadow: 0 5px 5px rgba(72, 0, 29, 0.362);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-projet:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
}

/*.pictos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 500px;
  margin-top: 40px;
}

.pictos img {
  width: 38px;
  height: auto;
}*/






/* logos et images */

.logo-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.logo-item img {
  width: 80px;
  transition: transform 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.1);
}


.logo-grand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-grand img {
  width: 230px;
  height: auto;
  border-radius: 50%;
}

.logoscrea,
.logosdev {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* pour s’adapter aux petits écrans */
  gap: 40px;
  margin-bottom: 70px;
}

.logoscrea img,
.logosdev img {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* zoom FLUIDE pendant le hover */
}

/* zoom pendant le hover */
.logoscrea img:hover,
.logosdev img:hover {
  transform: scale(1.1);
  /* border-radius: 10px; */
}


.tetedescription img {
  width: 700px;
  border-radius: 15px;
  /*border: 2px solid #541507;*/
  box-shadow: 10px 10px 0px #541507;
}

.descriptionprojets img {
  width: 419px;
  height: 313px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 10px 10px 0px #541507;
}

.galerie {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.galerie img {
  width: 370px;
  height: 270px;
  border-radius: 15px;
  box-shadow: 10px 10px 0px #541507;
  object-fit: cover;
  /*object-fit: contain;*/
}

footer img {
  width: 300px;
}





/* --- VIDEO AVEC BOUTON PLAY / PAUSE --- */
.video-wrapper {
  position: relative;
  width: 419px;
}

.video-wrapper video {
  width: 419px;
  border-radius: 15px;
  box-shadow: 10px 10px 0px #541507;
  /* supprime pointer-events: none; */
}

.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #FBD6E1;
  /* rose */
  color: #541507;
  /* marron */
  font-size: 32px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper:hover .video-btn {
  opacity: 1;
}

.video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* L'icône par défaut (quand la vidéo tourne -> on veut montrer le bouton Pause) */
.video-btn::after {
  content: "II";
  /* Un simple "II" ou le symbole ⏸ */
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: -2px;
}

/* L'icône quand la vidéo est en pause (on veut montrer le bouton Play) */
.video-btn.paused::after {
  content: "▶";
  margin-left: 5px;
  /* Petit décalage pour centrer visuellement le triangle */
  letter-spacing: normal;
}






.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 2100;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #541507;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* --- TRANSFORMATION EN CROIX --- */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}





/* --- FILTRES PROJETS --- */
.filtres-projets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #541507;
}

.filtre-btn {
  background: none;
  border: none;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #541507;
  cursor: pointer;
  padding: 5px 2px;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.2s, text-decoration 0.2s;
  text-decoration: none;
}

.filtre-btn:hover {
  opacity: 1;
}

.filtre-btn.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.projet {
  transition: opacity 0.3s, transform 0.3s;
}

.projet.cache {
  display: none;
}






/* ============================================
   IMAGES DANS LES POPUPS
   ============================================ */

/* Style de base pour toutes les images popup */
.imgpopup {
  width: 514.5px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Images format mobile */
/* Images format mobile */
.imgpopup--mobile {
  height: auto;
  width: 540px;
}

/* Images format desktop */
.imgpopup--desktop {
  width: 682px;
}

/* Images/placeholders vidéo */
.imgpopup--video {
  width: 711px;
}

/* Vidéo ticketjaune (projet 3) */
.video-wrapper--large {
  width: 711px;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 20px auto;
}

.video-wrapper--large video {
  width: 711px;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
}





/* Grille 2 colonnes pour les images popup */
.grille-imgpopup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px auto;
  max-width: 1100px;
}

.grille-imgpopup .imgpopup {
  width: 100%;
  margin: 0;
}












/* --- responsive --- */
/* --- RESPONSIVE : TABLETTES (jusqu'à 1024px) --- */
@media (max-width: 1024px) {

  .body {
    max-width: 1024px;
    font-family: 'Archivo', sans-serif;
  }

  .presentation {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .liste-projets {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colonnes sur tablette */
    gap: 40px;
  }

  .descriptionprojets {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .descriptionprojets img {
    width: 80%;
  }
}


/* --- RESPONSIVE : MOBILES (jusqu'à 768px) --- */
/*/////////////////////////////////////////////*/
@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  /* Navigation simplifiée pour mobile */
  .menu {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 25px;
  }

  .menu ul {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu a {
    font-size: 0.85rem;
  }

  /* Sections */
  .banniere {
    font-size: 3.3rem;
    /* Réduction pour éviter que le mot dépasse */
    padding: 120px 10px;
  }

  h1 {
    font-size: 1.8rem;
    padding: 0 5px;
  }

  .photoMoi {
    width: 80%;
    max-width: 280px;
    transform: none;
    /* On enlève la rotation sur mobile pour gagner de la place */
  }

  .presentation p {
    padding: 0 10px
  }

  /* Logiciels */
  .logoscrea,
  .logosdev {
    gap: 20px;
  }

  .logoscrea img,
  .logosdev img {
    width: 45px;
  }

  /* Projets */
  .liste-projets {
    grid-template-columns: 1fr;
    /* 1 seule colonne sur mobile */
    gap: 60px;
  }

  .projet .carte,
  .carte img {
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  /* Popup et Contenu Projets */
  .popup {
    width: 92%;
    padding: 15px;
    max-height: 90vh;
  }

  .popup-close {
    top: 15px;
    right: 15px;
    font-size: 28px;
    position: absolute;
  }

  .tetedescription img {
    width: 100%;
    box-shadow: 5px 5px 0px #541507;
  }

  .introprojets,
  .descriptionprojets {
    flex-direction: column;
    padding: 30px 15px;
    gap: 25px;
    text-align: center;
  }

  .zone-infos-projet {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .carte-info {
    max-width: 100%;
    width: 90%;
  }

  .galerie {
    flex-direction: column;
    gap: 20px;
  }

  .galerie img {
    width: 100%;
    height: auto;
  }

  .video-wrapper,
  .video-wrapper video {
    width: 100% !important;
    height: auto;
  }

  /* Recommandations */
  #recommandations {
    margin: 40px 15px;
  }

  .reco {
    width: 100%;
  }

  .textReco {
    width: 100%;
    height: auto;
    padding: 25px 15px;
    box-shadow: 7px 7px 0px #541507;
  }

  /* Footer */
  #footer .contacts {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  #footer img {
    width: 200px;
  }

  .contact-item {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* Boutons de navigation popup */
  .popup-navigation {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .popup-navigation button {
    width: 48%;
    font-size: 0.8rem;
    padding: 10px 5px;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .menu {
    border: none;
    background: transparent;
    box-shadow: none;
    width: 100%;
    justify-content: flex-start;
  }

  .menu ul {
    position: fixed;
    top: 0;
    right: -100%;
    /* Totalement caché à droite au départ */
    width: 250px;
    /* Largeur du tiroir */
    height: 100vh;
    background-color: rgb(255, 244, 244);
    border-left: 2px solid #541507;
    flex-direction: column;
    justify-content: center;
    /* Centre les liens verticalement */
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    /* Animation fluide */
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }

  /* État ouvert du menu */
  .menu ul.active {
    right: 0;
    /* Glisse vers l'intérieur de l'écran */
  }

  .menu ul li a {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }



}