
    .content {
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .content h1 {
      color: #333;
      margin-bottom: 20px;
    }

    .content p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
    }

.bottom-nav {
      position: fixed;
      bottom: auto;
      left: 50%;
      top:20px;
      transform: translateX(-50%);
      max-width: 600px;
      width: calc(100% - 40px);
      background: #F2EFE8;
      padding: 8px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      opacity: 90%;
    }

   /*MENU EN BAS*
   .bottom-nav {
  position: fixed; 
  bottom: 20px; 
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
      width: calc(100% - 40px);
      background: #F2EFE8;
      padding: 8px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border:solid 1px #0E100F
  
}*/

/* En bas pour mobile 
@media (max-width: 768px) {
  .bottom-nav {
    top: auto;
    bottom: 20px;
  }
}*/

    .logo {
  width: 110px;
  height: 60px;
  display: block;
  background-image: url(../image/logo-jeanne-barchilon-black.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

    /* Bouton hamburger - 3 lignes horizontales simples */
    .hamburger {
      width: 32px;
      height: 24px;
      position: relative;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: black;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    /* Animation hamburger en X */
    .hamburger.active span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    /* Menu overlay fullscreen noir */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 30px 120px;
      overflow-y: auto;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

    }

    .menu-overlay.active {
     opacity: 1;
    visibility: visible;
  
    }

    .menu-container {
      width: 100%;
      max-width: 600px;
      padding-top:100px;
    }

    .menu-items {
      list-style: none;
    }

    .menu-items li {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-overlay.active .menu-items li {
      opacity: 1;
      transform: translateY(0);
    }

    .menu-overlay.active .menu-items li:nth-child(1) { transition-delay: 0.1s; }
    .menu-overlay.active .menu-items li:nth-child(2) { transition-delay: 0.15s; }
    .menu-overlay.active .menu-items li:nth-child(3) { transition-delay: 0.2s; }
    .menu-overlay.active .menu-items li:nth-child(4) { transition-delay: 0.25s; }
    .menu-overlay.active .menu-items li:nth-child(5) { transition-delay: 0.3s; }
    .menu-overlay.active .menu-items li:nth-child(6) { transition-delay: 0.35s; }

    .menu-items > li > a {
      display: block;
      padding: 24px 0;
      font-size: 26px;
      font-weight: 300;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }

    .menu-items > li > a:hover {
      color: white;
      padding-left: 20px;
    }

    .menu-items > li:last-child > a {
      border-bottom: none;
    }

    /* Sous-catégories */
    .menu-items .has-submenu > a {
      position: relative;
    }

    .submenu {
      padding-left: 30px;
      margin-top: 10px;
      display: block;
    }


    .submenu li {
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.4s ease;
    }

    .menu-items .has-submenu.open .submenu li {
      opacity: 1;
      transform: translateX(0);
    }

    .menu-items .has-submenu.open .submenu li:nth-child(1) { 
      transition-delay: 0.1s; 
    }
    
    .menu-items .has-submenu.open .submenu li:nth-child(2) { 
      transition-delay: 0.2s; 
    }

    .submenu a {
      font-size: 24px;
      padding: 16px 0;
      color: white;
      font-weight: 300;
      text-transform: uppercase;
    }

    .submenu a:hover {
      color: white;
    }

    .submenu li:last-child a {
      border-bottom: none;
    }

    .arrowheader{
      width: 35px;
      padding-right: 15px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .bottom-nav {
        max-width: 360px;
      }

      .logo {
        font-size: 22px;
      }

      .menu-items > li > a {
        font-size: 20px;
        padding: 20px 0;
      }

      .submenu a {
        font-size: 18px;
        padding: 14px 0;
      }

      .menu-overlay {
        padding:0px 0px 0px;
      }
        .menu-container {

      padding-top:0px;
    }
    }

    @media (max-width: 480px) {
      .bottom-nav {
        max-width: calc(100% - 32px);
      }

      .menu-items > li > a {
        font-size: 20px;
        padding: 18px 0;
      }

      .submenu {
        padding-left: 30px;
      }

      .submenu a {
        font-size: 16px;
      }
    }