body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfbf7;
    color: #2e2e2e;
  }
  
  .navbar {
    background-color: #8ca977;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: white;
     display: flex;
  }
  .logo a {
    color: #111 !important;
    text-decoration: none !important;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
  } 
  .logo-footer.stylized-logo {
    width: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    
  }
  
  .logo-footer.stylized-logo:hover {
    transform: scale(1.05) rotate(-1deg);
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .mentions {
    padding: 4rem 1.5rem;
  }
  
  .mentions-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  .mentions-container h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #5b3c2c;
  }
  
  .mentions-container h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    color: #8ca977;
  }
  
  .mentions-container p {
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  
  .footer-hille {
    text-align: center;
    background-color: #8ca977;
    color: white;
    padding: 1rem;
    margin-top: 3rem;
  }
  .modal-mentions {
    display: none !important; /* Forcer le masquage initial */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    padding-top: 60px;
  }
  