    body {
      background-color: #fff; /* Jaune clair */
      margin: 0;
      padding: 0;
    }

    /*Début Navbar sticky (collante au scroll) */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #FFC50A; /* même fond que le body */
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    .nav-link {
      color: white;
    }

    .active {
      color : white !important;
      border-bottom: 4px solid white;
    }
    #apropos {
  scroll-margin-top: 55px; /* Ajuste selon la hauteur de ta navbar fixe */
}
/*Fin navbar*/
/*Début header*/
.image-container {
  height: 800px; /* ajuste à ta convenance */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
}
.ColRight {
  background-color: #0d47a1;
}
.blockquoteSectionImgAcceuil {
  margin-top: 5%;
  color: white;
  text-shadow: -2px -2px 8px rgba(128, 128, 128, 1);
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
  font-style: italic;

  animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.TitreblockquoteSectionImgAcceuil {
  font-size: 1.2rem;
}

.QuoteDivTitreImg {
  border-top: 5px solid rgb(255, 197, 10);
}

/*Fin header*/
/*Début contenu main*/
.row-skew-wrapper {
  background-color: #f7f7f7;
}

.full-height-row {
  min-height: 100%;
  height: 100%;
}

.skew-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* s’adapte à la colonne */
  height: 100%;
  background-color: #FFC50A;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
}

.inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.TitrePresentation {
  color: #0d47a1;
  font-size: 2rem;
  font-weight: bold;
}

.ParagraphPresentation {
  font-size: 24px;
}
/* Sur mobile : retirer la forme */
@media (max-width: 768px) {
  .skew-bg {
    clip-path: none;
  }
}
/*Fin contenu main*/
/*Début contenu card*/
  .clickable-card {
    cursor: pointer;
    transition: box-shadow 0.2s ease;
  }

  .clickable-card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

  .colTextVertical {
  background-color: #0d47a1;
  }
.vertical-title {

  writing-mode: vertical-rl; /* vertical Right to Left */
  text-orientation: upright; /* chaque lettre reste droite */
  font-size: 1.5rem;
}

.badge {
  background-color: #FFC50A;
}
    /*Fin contenu card*/
/*Début catégories grid*/
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background: #f7f7f7;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: center;
}

.item-color-y {  box-shadow: -20px 20px 0 rgba(255, 204, 0, 1);}
.item-color-v {  box-shadow: -20px 20px 0 #4CAF50;}
.item-color-b {  box-shadow: -20px 20px 0 #2196F3;}
.item-color-r {  box-shadow: -20px 20px 0 #E91E63;}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(85, 83, 74, 0.3);
}

.category-item h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-item p {
  font-size: 0.9rem;
  color: #666;
}
/*Fin catégories grid*/
/*Début contenu footer*/
   .SectionFooter{
    background: #FFC50A;
   }
   .FooterCopy {
      background: #f5bd0c;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 2;
   }
    /*Fin contenu footer*/