h1{
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    font-weight: 500;
  }
  .titreAccueil{
    color: #f7f4ef;
    text-align: center;
  }
  h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    font-weight: 500;
  }
  .h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
  }
  h3{
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
  }
  h4{
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
  }
  
  .layout-navbar-large {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 82px;
    padding: 0 15px;
  }
  
  .logoNav {
    height: 45px;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  
  .hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #f7f4ef;
    border-radius: 2px;
  }
  
  /* Menu mobile */
  .layout-navbar-center {
    display: none;
    flex-direction: column;
    background-color: #886F68;
    width: 100%;
    position: absolute;
    top: 82px;
    left: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
  }
  
  .layout-navbar-center.active {
    display: flex;
    max-height: 500px; /* suffisamment grand pour afficher tous les liens */
    opacity: 1;
  }
  
  .displayFlexJustifyContentStart {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .displayFlexJustifyContentStart li a {
    text-decoration: none;
    color: #f7f4ef;
    font-size: 18px;
    padding: 10px 20px;
    display: block;
    transition: background 0.3s;
  }
  
  .displayFlexJustifyContentStart li a:hover {
    background-color: #D96C4A;
  }
  
  .displayFlexJustifyContentStart li.active a {
    background-color: #D96C4A;
    color: #D8E4FD;
  }
  /* Dernier li navbar */
  .cta-menu a {
    background: none;
    padding: 10px 20px;
    border: none;
    font-weight: normal;
    color: #f7f4ef;
  }
  
  /* Utilitaires */
  .margin-twenty {
    margin-left: 25%;
  }

/* LOISIRS */
.wrapperCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobileSpace{
    padding: 2vh;
}
/* EXPERIENCE */
.timeline{
    width:100%;
    padding-bottom:0;
  }
  .timeline:before{
    left:20px;
    height:100%;
  }
  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even)
  {
    visibility: visible;
    width:100%;
    text-align:left;
    padding-left:50px;
    padding-bottom:50px;
  }
  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before
  {
    top:-18px;
    left:16px;
  }
  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time{
    top:-30px;
    left:50px;
    right:inherit;
  }
  .content {
    width: 60vw;
  }

  /* FOOTER */
.footerCenter {
    text-align: center;
}
.footerBas {
    display: flex;
    flex-direction: column;
}
.footerHaut {
    padding: 2vh;
}

/* Page projets */
/* MJA */
.gridWhenTxtFirst {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.gridTitleWhenTxtFirst { grid-area: 1 / 1 / 2 / 2; }
.gridTxtWhenTxtFirst { grid-area: 3 / 1 / 4 / 2; }
.gridImgWhenTxtFirst { grid-area: 2 / 1 / 3 / 2; }

.gridWhenPicFirst {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.gridTitleWhenPicFirst { grid-area: 1 / 1 / 2 / 2; }
.gridTxtWhenPicFirst { grid-area: 3 / 1 / 4 / 2; }
.gridImgWhenPicFirst { grid-area: 2 / 1 / 3 / 2; }