body {
    background-color: #fbefe5;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
h1 {
    color: #5c2f1d; 
}
h2 {
    color: #5c2f1d;
}
h3 {
    color: #5c2f1d;
}
h4 {
    color: #5c2f1d;
}
h5 {
    color: #5c2f1d;
}
h6 {
    color: #5c2f1d;
}
p {
    color: #5c2f1d;
}
.bar-top {
    background-color: #5c2f1d; 
}
#footer {
    background-color: #5c2f1d;
}
.zone-search {
    width: 300px;
    height: 40px;
    padding: 0 15px;
    background-color: #fff;
    border: 1px solid #5c2f1d;
    border-radius: 20px;
}
.btn-search {
    width: 100px;
    height: 40px;
    background-color: #5c2f1d;
    border: 1px solid #e8d5b0;
    border-radius: 20px;
    color: #e8d5b0;
}
/* Bouton Gmail Footer - Positionnez la forme Popup */
      .login-popup {
        position: relative;
        text-align: center;
        width: 100%;
      }
      /* Masquez la forme Popup */
      .form-popup {
        display: none;
        position: fixed;
        left: 45%;
        top: 25%;
        transform: translate(-45%, 5%);
        border: 2px solid #666;
        z-index: 9;
      }
      /* Styles pour le conteneur de la forme */
      .form-container {
        max-width: 300px;
        padding: 20px;
        background-color: #fff;
      }
      /* Largeur complète pour les champs de saisie */
      .form-container input[type="text"],
      .form-container input[type="password"] {
        width: 100%;
        padding: 10px;
        margin: 5px 0 22px 0;
        border: none;
        background: #eee;
      }
      /* Quand les entrées sont concentrées, faites quelque chose */
      .form-container input[type="text"]:focus,
      .form-container input[type="password"]:focus {
        background-color: #ddd;
        outline: none;
      }
      /* Stylez le bouton de connexion */
      .form-container .btn {
        background-color: #8ebf42;
        color: #fff;
        padding: 12px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom: 10px;
        opacity: 0.8;
      }
      /* Stylez le bouton pour annuler */
      .form-container .cancel {
        background-color: #cc0000;
      }
      /* Planez les effets pour les boutons */
      .form-container .btn:hover,
      .open-button:hover {
        opacity: 1;
      }
/* MENU */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --nav-bg: #5c2f1d;
      --accent: #e8d5b0;
      --white: #ffffff;
      --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Syne', sans-serif;
      background: #fbefe5;
      min-height: 100vh;
    }

    /* ── NAV ── */
    nav.search {
      position: relative;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--nav-bg);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--nav-bg);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-inner {
      background: #5c2f1d;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 90px;
    }

    .logo img {
      width: 60%;
      height: auto;
      margin-left: 5%;
    }

    /* ── DESKTOP MENU ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
    }

    .nav-links > li {
      position: relative;
    }

    .nav-links > li > a,
    .nav-links > li > button {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color var(--transition), background var(--transition);
    }

    .nav-links > li > a:hover,
    .nav-links > li > button:hover,
    .nav-links > li.open > button {
      color: var(--accent);
      background: rgba(255,255,255,0.04);
    }

    /* chevron icon */
    .chevron {
      width: 10px;
      height: 10px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform var(--transition);
      display: inline-block;
    }
    .nav-links > li.open .chevron {
      transform: rotate(-135deg) translateY(-2px);
    }

    /* ── DROPDOWN ── */
    .dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      background: #5c2f1d;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      min-width: 270px;
      list-style: none;
      padding: 0.5rem 0;
      overflow: hidden;

      /* hidden state */
      opacity: 0;
      transform: translateY(-10px) scaleY(0.96);
      transform-origin: top right;
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
    }

    .nav-links > li.open .dropdown {
      opacity: 1;
      transform: translateY(0) scaleY(1);
      pointer-events: all;
    }

    .dropdown li a {
      display: block;
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.65rem 1.25rem;
      transition: color var(--transition), background var(--transition), padding-left var(--transition);
    }
    .dropdown li a:hover {
      color: var(--accent);
      background: rgba(255,255,255,0.04);
      padding-left: 1.6rem;
    }

    /* staggered dropdown items */
    .dropdown li {
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 200ms ease, transform 200ms ease;
    }
    .nav-links > li.open .dropdown li { opacity: 1; transform: translateX(0); }
    .nav-links > li.open .dropdown li:nth-child(1) { transition-delay: 50ms; }
    .nav-links > li.open .dropdown li:nth-child(2) { transition-delay: 80ms; }
    .nav-links > li.open .dropdown li:nth-child(3) { transition-delay: 110ms; }
    .nav-links > li.open .dropdown li:nth-child(4) { transition-delay: 140ms; }
    .nav-links > li.open .dropdown li:nth-child(5) { transition-delay: 170ms; }
    .nav-links > li.open .dropdown li:nth-child(6) { transition-delay: 200ms; }
    .nav-links > li.open .dropdown li:nth-child(7) { transition-delay: 230ms; }

    /* ── BURGER ── */
    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      width: 40px;
      height: 40px;
    }
    .burger span {
      display: block;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition), width var(--transition);
      transform-origin: center;
    }
    .burger span:nth-child(1) { width: 24px; margin-left: auto; }
    .burger span:nth-child(2) { width: 18px; margin-left: auto; }
    .burger span:nth-child(3) { width: 24px; margin-left: auto; }

    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
    .burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

    /* ── MOBILE PANEL ── */
    .mobile-panel {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0; bottom: 0;
      background: var(--nav-bg);
      z-index: 99;
      padding: 1.5rem 2rem 2rem;
      overflow-y: auto;

      transform: translateX(100%);
      transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-panel.open {
      transform: translateX(0);
    }

    .mobile-nav { list-style: none; }

    .mobile-nav > li {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .mobile-nav > li > a,
    .mobile-nav > li > button {
      background: none;
      border: none;
      cursor: pointer;
      width: 100%;
      text-align: left;
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color var(--transition);
    }

    .mobile-nav > li > a:hover,
    .mobile-nav > li > button:hover,
    .mobile-nav > li.open > button { color: var(--accent); }

    /* mobile submenu */
    .mobile-sub {
      list-style: none;
      overflow: hidden;
      max-height: 0;
      transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-nav > li.open .mobile-sub { max-height: 600px; }

    .mobile-sub li a {
      display: block;
      color: rgba(255,255,255,0.6);
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.65rem 0 0.65rem 1rem;
      border-left: 1px solid rgba(255,255,255,0.12);
      margin-left: 0.5rem;
      transition: color var(--transition), border-color var(--transition);
    }
    .mobile-sub li a:hover { color: var(--accent); border-color: var(--accent); }

    /* stagger mobile sub items */
    .mobile-sub li {
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 200ms ease, transform 200ms ease;
    }
    .mobile-nav > li.open .mobile-sub li { opacity: 1; transform: translateX(0); }
    .mobile-nav > li.open .mobile-sub li:nth-child(1) { transition-delay: 60ms; }
    .mobile-nav > li.open .mobile-sub li:nth-child(2) { transition-delay: 90ms; }
    .mobile-nav > li.open .mobile-sub li:nth-child(3) { transition-delay: 120ms; }
    .mobile-nav > li.open .mobile-sub li:nth-child(4) { transition-delay: 150ms; }
    .mobile-nav > li.open .mobile-sub li:nth-child(5) { transition-delay: 180ms; }
    .mobile-nav > li.open .mobile-sub li:nth-child(6) { transition-delay: 210ms; }
    .mobile-nav > li.open .mobile-sub li:nth-child(7) { transition-delay: 240ms; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: flex; }
      .mobile-panel { display: block; }
    }