/* SLIDER ANNONCE */
#slider-annonce.owl-carousel {
    background: #5e5952;
    height: 45px;
    z-index: 100;
}
#slider-annonce.owl-carousel .owl-item {
    height: 45px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0 30px;
}
#slider-annonce.owl-carousel a,
#slider-annonce.owl-carousel a:active,
#slider-annonce.owl-carousel a:focus,
#slider-annonce.owl-carousel a:visited,
#slider-annonce.owl-carousel a:hover,
#slider-annonce.owl-carousel p,
#slider-annonce.owl-carousel h3,
#slider-annonce.owl-carousel span,
#slider-annonce.owl-carousel h2,
#slider-annonce.owl-carousel strong {
    font-size: 16px;
    color: white;
    margin: 5px 0 !important;
    padding: 5px 0 !important;
    background: transparent !important;
    transition: all 250ms;
    font-weight: 400;
    font-family: futura-pt;
}

/* ===== HEADER ===== */
.header-capa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: none;
  position: absolute;
  top: 45px;
  width: 100%;
  z-index: 1000;
  height: 95px;
  padding: 10px 120px 10px 200px;
}

/* État fixé (base) */
#header-capa.is-fixed,
.header-capa.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;           /* évite la transparence non voulue */
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  will-change: transform, opacity;
  /* Transition déplacée ici pour s'appliquer aussi à la sortie */
  transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
}

/* Phase cachée (avant entrée) */
#header-capa.is-fixed:not(.is-visible),
.header-capa.is-fixed:not(.is-visible) {
  transform: translateY(-100%);
  opacity: 0;
}

/* Phase visible (slide-down) */
#header-capa.is-fixed.is-visible,
.header-capa.is-fixed.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Spacer anti-saut */
.header-capa-spacer { width: 100%; }

/* Respect accessibilité */
@media (prefers-reduced-motion: reduce) {
  #header-capa.is-fixed.is-visible,
  .header-capa.is-fixed.is-visible {
    transition: none !important;
  }
}

.header-left, .header-center, .header-right {
  display: flex;
  align-items: center;
}
.header-center {
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.logo-capa{
  z-index: 10;
  background: transparent;
  box-shadow: -6px 1px 6px 5px rgba(0, 0, 0, 0.15);
  height: 115px;
  width: 145px;
  border-bottom-right-radius: 35px;
}
.logo-capa img {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  height: 115px;
  width: 145px;
  padding: 10px 10px 10px 0px;
  object-fit: contain;
  background: white;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color:#b5a99b;
  border: none;
  border-radius: 25px;
  padding: 0 10px;
  height: 38px;
  font-weight: 400;
  cursor: pointer;
  transition: border 0.5s, background 0.5s;
  text-transform:uppercase;
  border:2px solid #b5a99b;
}
.menu-btn:hover { background: #b5a99b; color:white; }
.burger-icon { font-size: 1.2em; }
.menu-tag{ margin-top: 2px; }

.header-right { gap: 0.7rem; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #b5a99b;
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration:none;
}
.icon-btn, .icon-btn:focus{
  color: #b5a99b !important;
  background: white !important;
  border: 2px solid #b5a99b !important;
}
.icon-btn:hover { background: #b5a99b !important; color: #fff !important; }

.icon-reserver{ display:none; }

/* ===== LANGUES ===== */
.lang-switcher { position: relative; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 0.5rem); left: -5px;
  background: #fff; border: 1px solid #b5a99b; border-radius: 6px;
  min-width: 40px; padding: 0.3rem 0; list-style: none; z-index: 1000;
}
.lang-dropdown.active { display: block; color:black; }
.lang-dropdown li { margin: 0; }
.lang-dropdown .lang-link {
  display: block; padding: 0.5rem 1rem; color: #b5a99b; text-decoration: none;
  font-weight: 500; transition: all 0.2s; text-transform: uppercase;
}
.lang-dropdown .lang-link:hover { background: white; color:black; }

/* === MODALE PLEIN ECRAN & PANNEAUX === */
.menu-modal {
  position: fixed; inset: 0; display: none;
  background: rgba(0,0,0,0.4); overflow: hidden; z-index: 9999;
}
.menu-modal.open { display: flex; justify-content: flex-start; }
.modal-panel { position: relative; width: 100%; height: 100%; }

/* Accordéon (desktop) */
.menu-col-left, .menu-col-right {
  position: absolute; top: 0; height: 100%; overflow: hidden;
  padding: 3.2rem; box-sizing: border-box;
  transform: translateX(-200%); transition: transform 0.5s ease-out;
}
.menu-col-left {
  left: 0; width: 35%; background: #fff; z-index: 100;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.menu-col-right {
  right: 0; width: 65%; background: #e1d9d0; color: black; z-index: 10;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.menu-col-left.open { transform: translateX(0); }
.menu-col-right.open { transform: translateX(0); }
.menu-col-right.close { transform: translateX(-200%); transition: transform 0.5s ease-out; }
.menu-col-left.close  { transform: translateX(-200%); transition: transform 0.5s ease-out; transition-delay: 0.5s; }

/* === NAVIGATION GAUCHE === */
.all-links-container{
  width:100%; height:100%; display:flex; flex-direction: column;
  justify-content:space-between; align-items:flex-start;
}
.main-nav-list { list-style: none; padding: 0; margin: 0; margin-top:80px; }
.nav-item, .article-link {
  padding: 0.19em 0; margin-bottom: 0.5em; cursor: pointer; font-weight: 700;
  transition: all 0.25s; outline: none; border: none; background: transparent;
  text-align:left; font-family: "itc-avant-garde-gothic-pro";
}
.nav-item:hover, .nav-item:focus, .nav-item.active,
.article-link:hover, .article-link:focus, .article-link.active { color: black; }
.nav-item a, .article-link a{ font-size: 2rem; color: black; transition: all 0.25s; background: transparent; text-decoration: none; }
.nav-item a:hover, .article-link a:hover, a.article-bloc-blue:hover, a.nav-row-article:hover{ background: transparent; text-decoration: none; }
.nav-item a:hover {
    color: #b4aca5 !important;
}

/* === LIENS UTILES (MENTIONS, ETC) === */
.util-links { margin-top: 2.5em; padding: 0 0.5em; display: flex; justify-content: flex-start; align-items: flex-end; }
.util-articles { display: flex; flex-wrap: wrap; gap: 0.5em 1.2em; flex-direction: column; }
.util-article {
  font-size: 1em; color: black; text-decoration: none; margin-bottom: 0.2em; font-weight: 700; text-align:left;
  transition: all 250ms; font-family: "itc-avant-garde-gothic-pro"; text-transform: capitalize;
}
.util-article:hover, .util-article:focus { background:transparent; color:black; }

/* === CONTENU DROIT (BLEU) === */
.articles-group { display: flex; height: 100%; width: 100%; }
.articles-list-blue { width: 60%; display: flex; flex-direction: column; justify-content: center; gap: 1.1em; padding: 0 0 0 40px; }
.article-bloc-blue {
  padding: 10px; cursor: pointer; transition: all 0.25s; position: relative;
  font-size: 1.4rem; color: black; text-decoration:none; font-family:"itc-avant-garde-gothic-pro";
}
.article-bloc-blue:hover, .article-bloc-blue:focus { text-deocration: 1px underline black; }
.preview-title { font-weight: 300; color: black; text-align: left; }

/* === LOGO ARTICLE À DROITE === */
.article-logo-container {
  width: 40%; height: 100%; display: flex; align-items: center; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.article-logo-container img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 24px;
  opacity: 0; transition: opacity 0.25s, transform 0.25s; transform: scale(1.04);
  position: absolute; top: 0; left: 0;
}
.article-logo-container img.visible { opacity: 1; transform: scale(1); z-index: 2; }

/* === LIGNE BAS DE LA COLONNE DROITE (infos & socials) === */
.nav-row-bottom {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 2em 1.2em 1em 1.2em; border-top: 1px solid #e1d9d0; margin-top: 1.5em;
  font-size: 1.05em; gap: 2em; background: none;
}
.nav-row-infos { display: flex; align-items: center; gap: 1.2em; }
.nav-row-article {
  display: flex; align-items: center; flex-direction: column; gap: 0.5em; margin-right: 1.2em; text-decoration: none;	
}
.nav-row-article-logo { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 8px #0002; background: #fff; }
.nav-row-article-title { font-weight: 300; color: black; font-size: 1em; font-family: "itc-avant-garde-gothic-pro"; letter-spacing: 0.03em; }

@keyframes simple-bounce {
  0%   { transform: translateY(0);        box-shadow: 0 2px 8px #0002; }
  30%  { transform: translateY(-7px);     box-shadow: 0 7px 18px #0004;}
  60%  { transform: translateY(0);        box-shadow: 0 2px 8px #0002; }
  100% { transform: translateY(0);        box-shadow: 0 2px 8px #0002; }
}
.nav-row-article:hover .nav-row-article-logo { animation: simple-bounce 0.8s cubic-bezier(.49,1.7,.47,.98) infinite; will-change: transform, box-shadow; }

.nav-row-side { display: flex; align-items: center; flex-direction: column; gap: 0.5em; }
.nav-row-socials { display: flex; justify-content: flex-end; gap: 0.7em; width: 100%; }
.nav-row-socials img, .nav-row-coords img {
  width: 30px; height: 30px; object-fit: contain; border-radius: 7px; transition: box-shadow 0.2s, transform 0.2s;
}
.nav-row-socials a:hover img { box-shadow: 0 0 8px #627a8e55; transform: scale(1.07); }
.nav-row-coords { display: flex; flex-direction: column; gap: 0.2em; font-size: 1em; text-align: right; }
.nav-row-tel, .nav-row-mail { color: #262626; text-decoration: none; font-weight: 600; font-size: 1em; font-family: "itc-avant-garde-gothic-pro"; transition: color 0.2s; }
.nav-row-tel:hover, .nav-row-mail:hover { color: #3d2f24; background:transparent; }
.nav-row-socials a:hover{ background:transparent; }

/* === FERMETURE BTN (réutilisé pour “Retour”) === */
.close-btn {
  display: flex; align-items: center; gap: 0.4em;
  border: none; background: none; color: black;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 2.5rem; cursor: pointer;
  font-family: "itc-avant-garde-gothic-pro";
}
.close-btn:hover { color: #b4aca5; }

/* Modal reserver */
@media (max-width: 1330px) { .search-container{ display:none; } }
.icon-reserver{ display:flex; width: auto; height: auto; border-radius: 15px; height: 38px; padding: 0 10px; }
.tag-reserver{ color: #b5a99b; display: flex; justify-content: space-between; align-items: center; }
.tag-reserver i{ font-size: 20px; padding-right: 5px; }
.icon-reserver:hover .tag-reserver{ color:white; }

/* ===== MODALE RECHERCHE ===== */
.search-modal { display:block; position: fixed; inset: 0; z-index: 12000; pointer-events: none; }
.search-modal[aria-hidden="true"] .search-backdrop,
.search-modal[aria-hidden="true"] .search-panel { opacity: 0; pointer-events: none; }
.search-modal[aria-hidden="false"] { pointer-events: auto; }
.search-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.38); transition: opacity 300ms ease; }
.search-panel {
  position: absolute; top: 50%; left: 50%;
  width: min(1200px, 92vw); max-height: min(84vh, 820px);
  transform: translate(70%, -50%); background: #fff; border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28), 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0; display: flex; flex-direction: column; padding: clamp(16px, 2.2vw, 28px);
  transition: transform 520ms cubic-bezier(.22,.86,.24,.99), opacity 320ms ease;
}
.search-modal[aria-hidden="false"] .search-panel { transform: translate(-50%, -50%); opacity: 1; }
.search-close {
  position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border-radius: 18px;
  border: 1px solid #e5e5e5; background: #fff; color: #333; font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease; z-index: 10;
}
.search-close:hover { background: #f5f5f5; transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,0.12); }
.search-title {
  margin: 0 0 12px 0; font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: #3d2f24; letter-spacing: .02em;
  font-family: "itc-avant-garde-gothic-pro", system-ui, sans-serif;
}
.search-shell { position: relative; flex: 1 1 auto; border-radius: 14px; padding: clamp(10px, 2vw, 18px); overflow: visible; }

.daterangepicker.dropdown-menu{
z-index: 100000 !important;
}

.thr-search-engine-multi .thr-search-engine-main.thr-search-engine-main-full > .thr-btn-search{
border: 1px solid #eee;
}

/* === RESPONSIVE === */
/* >>> MODE MOBILE : OVERLAY de la colonne droite au-dessus de la gauche */
@media (max-width: 1000px) {
  .menu-col-left, .menu-col-right {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0; left: 0;
    padding: 1.2rem 1rem;
    transition: transform 0.5s ease-out !important;
    z-index: 1; /* base */
  }
  .menu-col-left { background: #fff; z-index: 20; transform: translateX(0); }
  .menu-col-right { background: #e1d9d0; z-index: 30; transform: translateX(100%); }

  /* Masquer la bordure haute du bas de page quand overlay pour plus de propreté mobile */
  .nav-row-bottom { padding-top: 1em; }

  .header-capa { padding: 10px 20px 10px 170px; }
}

@media (max-width: 600px) {
  .article-logo-container{ display:none; }
}

@media (max-width: 600px) {
  .header-capa {
    height: 80px;
    padding: 10px 10px 10px 110px;
	background: white;
  }

  .logo-capa,
  .logo-capa img  {
    height: 80px;
    width: 100px;
  }

  .menu-tag,
  .tag-reserver i,
  .article-logo-container,
  .nav-row-bottom {
    display:none;
  }

  .articles-list-blue { width:100%; }
}
