.et_fixed_nav.et_show_nav #page-container.custom-header-la-cloche {
  padding-top: 0;
}
#la-cloche-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: #1d1d1d;
  transition: all 0.3s ease;
}

body.fixedPosition {
  overflow: hidden;
  height: 100vh;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;

  .col-1-header,
  .col-3-header {
    width: 30%;
    position: relative;
    min-height: 62px;
  }
  .col-1-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5%;
    position: relative;
    button#open-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 5px;
      font-size: 18px;
      text-transform: uppercase;
      color: white;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    .lang-selector {
      font-size: 18px;
      text-transform: uppercase;
      color: white;
      display: flex;
      gap: 5px;
      p {
        color: white;
      }
      a {
        color: white;
      }
      span.separator:last-of-type {
        display: none;
      }
    }
  }
  .col-3-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2%;
    position: relative;

    #open-reservations {
      cursor: pointer;
    }
  }

  .btn-la-cloche {
    padding: 0.3em 1em !important;
    display: flex;
    width: fit-content;
    border: 1px solid #fbfbfb;
    font-size: 18px;
    position: relative;
    color: #fbfbfb;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  a.btn-la-cloche:before {
    left: 0;
  }

  .btn-la-cloche.header:hover {
    background: #b28959;
    border: 1px solid #b28959;
  }

  .btn-la-cloche.reservation {
    border: 1px solid #b28959;
    color: #000000;
    background-color: #b28959;
    transition: all 0.3s ease;
  }

  .btn-la-cloche.reservation:hover {
    border: 1px solid #fbfbfb;
    color: #000000;
    background-color: #fbfbfb;
  }
}

#header-menu-content {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #1d1c21;
  z-index: 1000;
  transition: all 0.8s ease-in-out;
  overflow: auto;
}
#header-menu-content.closed {
  bottom: 100%;
}

.header-content-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3% 80px;
  height: 20%;
  @media screen and (max-width: 960px) {
    height: 3%;
  }

  #close-menu {
    position: absolute;
    top: 2vh;
    left: 2vw;
    cursor: pointer;
    border: none;
    background: transparent;
  }
  .logo-container-mobile {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  img {
    width: 100px;
  }
}

#header-menu-content {
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    gap: 20px;
    max-width: 90%;
    margin: auto;
  }
  .menu .header-menu {
    width: 40%;
  }
  .menu .image-menu {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 45vh;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    img.image-changing {
      transform: scale(1.05);
      opacity: 0.7;
    }
  }
  .header-menu.col-1,
  .header-menu.col-2 {
    display: flex;
    flex-direction: column;
    gap: 3vh;
    height: 100%;
    justify-content: center;
    .menu-item {
      display: flex;
    }
  }
  .header-menu.col-1 {
    align-items: flex-end;

    .menu-item {
      text-align: right;
    }
  }
  .header-menu.col-2 {
    align-items: flex-start;
    .menu-item {
      text-align: left;
    }
  }
  .menu a {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 0.9606rem + 1.1574vw, 2.8125rem);
    font-weight: 300;
    color: white;
    position: relative;
  }
  .menu li.current-menu-item a {
    color: #b28959;
  }

  li a:before {
    content: '';
    background: transparent;
    display: block;
    height: 2px;
    transition: width 0.4s ease 0s;
    width: 0;
    bottom: -15px;
    position: absolute;
  }
  .col-1 {
    a:before {
      right: 0;
    }
  }
  .col-2 {
    a:before {
      left: 0;
    }
  }
  li:hover a:before {
    width: calc(100%);
    background: #b28959;
  }
  .header-content-top {
    margin-top: 15vh;
  }
}

#header-reservation-content {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #1d1c21;
  z-index: 1000;
  transition: all 0.8s ease-in-out;
  overflow: auto;
}
#header-reservation-content.closed {
  top: 100%;
}

#header-reservation-content {
  #close-menu-reservation {
    position: absolute;
    top: 2vh;
    right: 2vw;
    cursor: pointer;
    border: none;
    background: transparent;
  }

  .reservation {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 33%;
    @media screen and (max-width: 960px) {
      width: 100%;
      align-items: center;
      text-align: center;
    }
  }

  .reservation a {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 0.9606rem + 1.1574vw, 2.8125rem);

    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
    line-height: 1em;
    padding-bottom: 20px;
    transition: all 0.3s ease;
    span {
      font-size: 0.5em;
      font-weight: 300;
    }
  }
  .reservation a:hover {
    color: #b28959;
  }

  .reservation li:first-of-type {
    margin-top: 20px;
  }
  .reservation a {
    margin-top: 20px;
  }

  .reservation li:last-of-type a:after {
    content: none;
  }

  li a:after {
    content: '';
    background: #b28959;
    display: block;
    height: 1px;
    transition: width 0.4s ease 0s;
    width: 50%;
    bottom: 2px;
    position: absolute;
  }

  .header-content-top {
    margin-top: 5vh;
  }

  .reservation-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    width: 33%;
    @media screen and (max-width: 960px) {
      align-items: center;
      text-align: center;
      width: 100%;
      margin-bottom: 50px;
    }
  }

  .reservation-big-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    @media screen and (max-width: 960px) {
      flex-direction: column;
      align-items: center;
    }
  }

  .reservation-spacer {
    width: 33%;
    @media screen and (max-width: 960px) {
      display: none;
    }
  }
}

#bons-cadeaux-content {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #1d1c21;
  z-index: 1000;
  transition: all 0.8s ease-in-out;
  overflow: auto;
}
#bons-cadeaux-content.closed {
  top: 100%;
}

#bons-cadeaux-content {
  #close-menu-bons-cadeaux {
    position: absolute;
    top: 2vh;
    right: 2vw;
    cursor: pointer;
    border: none;
    background: transparent;
  }

  .bons-cadeaux {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .bons-cadeaux a {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 0.9606rem + 1.1574vw, 2.8125rem);

    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
    line-height: 1em;
    padding-bottom: 20px;
    transition: all 0.3s ease;
    span {
      font-size: 0.5em;
      font-weight: 300;
    }
  }
  .bons-cadeaux a:hover {
    color: #b28959;
  }

  .bons-cadeaux li:first-of-type {
    margin-top: 20px;
  }
  .bons-cadeaux a {
    margin-top: 20px;
  }

  li a:after {
    content: '';
    background: #b28959;
    display: block;
    height: 1px;
    transition: width 0.4s ease 0s;
    width: 10%;
    position: absolute;
    top: -10px;
  }

  .header-content-top {
    margin-top: 5vh;
  }
}

#la-cloche-header.homepage,
#la-cloche-header.contentpage {
  background: transparent;
  .logo.absolute {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    max-width: 200px;
  }
}
#la-cloche-header.homepage.scrolled,
#la-cloche-header.contentpage.scrolled {
  background: #1d1d1d;
  .logo {
    position: relative;
  }
}

@media screen and (max-width: 960px) {
  .header-content {
    gap: 20px;

    padding: 10px 10%;
    .col-1-header,
    .col-3-header {
      width: calc(50% - 10px);
    }

    .logo-container {
      display: none;
      opacity: 0;
      visibility: hidden;
    }
  }

  #la-cloche-header.homepage,
  #la-cloche-header.contentpage {
    .logo.absolute {
      position: relative;
      top: 0;
      left: 0;
      transform: none;
      max-width: 100%;
    }
  }

  .header-content-top {
    .logo-container {
      display: none;
      opacity: 0;
      visibility: hidden;
    }
    img {
      width: 200px;
    }
    .logo-container-mobile {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
}

@media screen and (max-width: 760px) {
  .header-content {
    padding: 10px 8%;
    .col-1-header {
      flex-direction: column-reverse;
      gap: 5px;
      align-items: flex-start;
    }

    .col-3-header {
      flex-direction: column;
      flex-wrap: wrap;
      gap: 5px;
      align-items: flex-end;
    }
  }

  #header-menu-content {
    .menu .header-menu {
      width: 90%;
    }

    .menu {
      flex-direction: column;
      padding: 70px 0;
    }
    .header-menu.col-1 {
      align-items: flex-start;
      .menu-item {
        text-align: left;
      }
    }

    .menu .image-menu {
      display: none;
    }
  }
}

/*CTA*/

#cta-cloche a {
  background-image: url(/wp-content/uploads/cta-fond.svg);
  background-repeat: no-repeat;
  position: fixed;
  bottom: -20px;
  right: 0;
  padding: 50px 20px 30px 100px;
  background-size: contain;
  background-position: center right;
  z-index: 999;
  p {
    text-align: center;
    color: black;
  }

  @media screen and (max-width: 960px) {
    background-image: none;
    background-color: #b28959;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    padding: 15px 30px;
    border-radius: 5px;
    width: fit-content;
    border: 1px solid #b28959;
    transition: all 0.3s ease;

    p {
      color: white !important;
      margin: 0;
      font-size: 14px !important;
      font-weight: 600 !important;
      text-transform: uppercase;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, sans-serif !important;
      letter-spacing: 0.5px;
      line-height: 1.2;

      /* Override tous les spans à l'intérieur */
      span {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
      }

      /* Masquer les sauts de ligne */
      br {
        display: none;
      }
    }

    &:hover {
      background-color: #b28959;
      border-color: #b28959;

      p {
        color: black !important;

        span {
          color: black !important;
        }
      }
    }
  }
}
