* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300; 
  
}

  body {
 font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
  }
  
  
  .wha {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  
  
  .wha img {
    width: 60px;
    height: 50px;
  }
  
  /* Navigation */
  nav {
    background-color: white;
    color: rgb(16, 141, 72);
    display: flex;
    width: 100%;
    height: 10vh;
    justify-content: space-around;
    align-items: center;
    font-size: 1rem;
    position: fixed;
    z-index: 10;
  }
  
  
  nav .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  nav .logo {
    width: 200px;
    height: 50px;
    margin: 1rem 1rem 1rem 0.5rem;
  }
  
  nav .logo p {
    font-size: clamp(1rem, 0.8vw + 0.5rem, 2rem);
    ;
  }
  
  nav ul {
    color: black;
    width: 50%;
    margin-left: auto;
    display: flex;
    justify-content: space-around;
    align-self: center;
  }
  
  nav ul li {
    list-style: none;
  }
  
  nav ul li a {
    text-decoration: none;
    color: rgb(16, 141, 72);
    font-size: 20px;
  }
  
  nav ul li a:hover {
    /* color: var(--primary-bg-color); */
    color: rgb(16, 141, 72);}
  
  nav .hamburger {
    cursor: pointer;
    display: none;
  }
  
  nav .hamburger .line {
    background-color: rgb(16, 141, 72);
    width: 30px;
    height: 4px;
    margin: 5px;
  }
  
  nav .mode {
    background: transparent;
    border: none;
    display: block;
    margin: auto 0.5rem;
    cursor: pointer;
  }
  
  nav .mode svg {
    color: rgb(16, 141, 72);}
  
  nav ul.open {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
  
  
  
  
  /* -----------------------------
     HERO
  ------------------------------ */
  .hero {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
  }
  
  .hero img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* -----------------------------
     MAIN
  ------------------------------ */
  main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  /* Titre de l'article */
  .article-title {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  /* Contenu de l'article */
  article p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.7;
  }
  
  article h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #555;
  }
  
  article h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
  }
  
  /* -----------------------------
     MEDIA SECTION
  ------------------------------ */
  .media-section {
    margin: 3rem 0;
  }
  
  .media-section h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  /* Galerie de médias */
  .media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .media-item {
    width: 300px; /* Ajuste selon la taille désirée */
    text-align: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    padding: 1rem;
  }
  
  .media-item img,
  .media-item video {
    width: 50%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  
  .media-item figcaption {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* -----------------------------
     FOOTER
  ------------------------------ */
  footer {
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
    color: #666;
  }
  
  /* -----------------------------
     RESPONSIVE
  ------------------------------ */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    main {
      margin: 1rem auto;
    }
  
    .article-title {
      font-size: 1.5rem;
    }
  
    .media-gallery {
      gap: 1rem;
    }
  
    .media-item {
      width: 90%;
    }
  }
  
  
  
  .video-blog {
    width: 500px; /* Cadre fixe de 200px de largeur */
    margin: 2rem auto; /* Centré sur la page avec un espace vertical */
   /* Bordure discrète */
    border-radius: 4px; /* Coins arrondis */
  ; /* Légère ombre pour un effet de profondeur */
    padding: 5px; /* Espace intérieur pour éviter que la vidéo touche directement la bordure */
  }
  
  .video-blog h3 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .video-blog video {
    display: block;
    width: 100%; /* La vidéo occupe toute la largeur du cadre (200px) */
    height: auto;
    border-radius: 4px; /* Même arrondi que le conteneur pour une cohérence visuelle */
  }
  
  