/* ============================================================
   CAPA NAVIGATION — Kerzerho
   Header sticky + Navigation modale coulissante
   Couleur primaire : #0f527d | Accent : #e1d9d0
   ============================================================ */

/* === SLIDER ANNONCE (bandeau promo en haut) === */
#slider-annonce.owl-carousel {
  background: #0a3a5a;
  height: 40px;
  z-index: 100;
  border-bottom: 1px solid rgba(163, 192, 222, 0.15);
}

#slider-annonce.owl-carousel .owl-item {
  height: 40px;
  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: 12px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: "futura-pt", sans-serif;
}

#slider-annonce.owl-carousel a:hover {
  color: white;
}

#slider-annonce.owl-carousel strong {
  font-weight: 600;
  color: white;
}


/* ===== HEADER ===== */
/* ===== HEADER PREMIUM ===== */
.header-capa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 1000;
  height: 80px;
  padding: 0 3vw 0 200px;
}

/* État fixé (slide-down après scroll) */
#header-capa.is-fixed,
.header-capa.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10, 58, 90, 0.06);
  will-change: transform, opacity;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
}

/* Phase cachée */
#header-capa.is-fixed:not(.is-visible),
.header-capa.is-fixed:not(.is-visible) {
  transform: translateY(-100%);
  opacity: 0;
}

/* Phase visible */
#header-capa.is-fixed.is-visible,
.header-capa.is-fixed.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.header-capa-spacer { width: 100%; }

@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 — épuré, fond blanc subtil avec échancrure + bordure */
.logo-capa {
  z-index: 10;
  position: relative;
  height: 100px;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

/* Bordure — forme externe débordante */
.logo-capa::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: rgba(10, 58, 90, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%);
  z-index: -1;
}

.logo-capa img {
  height: 70px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
}

/* Logo — aucun changement d'état au survol */
a.logo-capa,
a.logo-capa:hover,
a.logo-capa:focus,
a.logo-capa:active {
  background: white !important;
  opacity: 1;
  transform: none;
  filter: none;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}

/* Bouton Menu — minimaliste */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 8px 18px;
  height: auto;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
}

.menu-btn:hover {
  background: white;
  color: #0a3a5a;
  border-color: white;
}

.burger-icon { display: flex; align-items: center; }
.burger-icon svg { display: block; }
.menu-tag { margin-top: 0; }

/* En mode fixé, le bouton menu s'adapte au fond blanc */
.header-capa.is-fixed .menu-btn {
  color: #0a3a5a;
  border-color: rgba(10, 58, 90, 0.2);
}
.header-capa.is-fixed .menu-btn:hover {
  background: #0a3a5a;
  color: white;
  border-color: #0a3a5a;
}

/* Header droite */
.header-right { gap: 0.5rem; }

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 15px;
}

.icon-btn, .icon-btn:focus {
  color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
  border: none !important;
}

.icon-btn:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* En mode fixé, icônes sur fond blanc */
.header-capa.is-fixed .icon-btn,
.header-capa.is-fixed .icon-btn:focus {
  color: #0a3a5a !important;
  background: transparent !important;
}
.header-capa.is-fixed .icon-btn:hover {
  color: #0a3a5a !important;
  background: rgba(10, 58, 90, 0.06) !important;
}

.icon-btn svg { display: block; }
.icon-reserver { display: none; }

/* Séparateur vertical subtil entre les icônes */
.header-right .lang-switcher::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  margin-right: 0.5rem;
}
.header-capa.is-fixed .header-right .lang-switcher::before {
  background: rgba(10, 58, 90, 0.12);
}


/* ===== LANGUES ===== */
.lang-switcher { position: relative; display: flex; align-items: center; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: none;
  border-radius: 4px;
  min-width: 48px;
  padding: 6px 0;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(10, 58, 90, 0.12);
}

.lang-dropdown.active { display: block; }
.lang-dropdown li { margin: 0; }

.lang-dropdown .lang-link {
  display: block;
  padding: 6px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.2s;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 0.05em;
}

.lang-dropdown .lang-link:hover {
  background: rgba(10, 58, 90, 0.04);
  color: #0a3a5a;
}


/* === MODALE PLEIN ÉCRAN & 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%; }

/* Panneaux gauche/droite */
.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: 25%;
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}

.menu-col-right {
  right: 0;
  width: 72%;
  padding: 0;
  background: transparent;
  color: black;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.menu-col-left.open {
  transform: translateX(0);
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 0 100%);
}
.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; }


/* === BOUTON FERMETURE === */
.close-btn {
  display: flex;
  align-items: center;
  gap: 0.4em;
  border: none;
  background: none;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: "futura-pt", sans-serif;
  opacity: 0.7;
  transition: opacity 0.3s;
  margin-bottom: 0;
  padding: 0;
}

.close-btn:hover {
  opacity: 1;
  color: #666;
}

.back-btn {
  padding: 3.2rem 3.2rem 0 3.2rem;
}


/* === NAVIGATION GAUCHE === */
.all-links-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  align-items: flex-start;
}

.main-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0;
  border-left: 2px solid #eee;
}

.nav-item, .article-link {
  padding: 0.19em 0;
  padding-left: 20px;
  border-left: 3px solid transparent;
  margin-bottom: 0.5em;
  cursor: pointer;
  font-weight: 700;
  transition: border-left-color 0.3s, color 0.3s;
  outline: none;
  background: transparent;
  text-align: left;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
}

.nav-item:hover, .nav-item:focus,
.article-link:hover, .article-link:focus { border-left-color: #a3c0de; }

.nav-item.active { border-left-color: #a3c0de; }

.nav-item.active a {
  color: #0a3a5a;
}

.nav-item a, .article-link a {
  font-size: 2rem;
  color: black;
  transition: color 0.3s;
  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: #0a3a5a !important; }


/* === LIENS UTILES === */
.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, .util-article:visited {
  font-size: 0.85em;
  color: #888;
  text-decoration: none;
  margin-bottom: 0.2em;
  font-weight: 400;
  text-align: left;
  transition: all 250ms;
  font-family: "futura-pt", sans-serif;
  text-transform: capitalize;
}

.util-article:hover, .util-article:focus { background: transparent; color: #0a3a5a; }


/* === BLOC CONTACT BAS COLONNE GAUCHE === */
.menu-contact-bottom {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.menu-contact-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "futura-pt", sans-serif;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.menu-contact-bottom a:hover {
  color: #0a3a5a;
  background: transparent;
}

.menu-contact-bottom img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.menu-contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.menu-contact-socials img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.menu-contact-socials a:hover img {
  transform: scale(1.1);
}

.menu-contact-socials a:hover {
  background: transparent;
}

/* Zone feuille décorative entre fermer et nav */
.menu-leaf-zone {
  position: relative;
  height: 80px;
  flex-shrink: 0;
}

.menu-leaf-zone .menu-leaf-deco {
  position: absolute;
  top: -18px;
  left: 190px;
  width: 220px;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  border-radius: 0;
}

/* Agave décoratif — masquer l'image HTML, afficher via pseudo-élément sur .articles-list-blue */
.menu-agave-deco {
  display: none;
}

.articles-list-blue::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: url('/assets/agave.png') no-repeat center bottom / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}


/* === CONTENU DROIT (preview articles) === */
.articles-group { display: flex; height: 100%; width: 100%; position: relative; }

.articles-list-blue {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 0 0 0 3%;
  background: #a3c0def0;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
}

.article-bloc-blue {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
}

.article-bloc-blue .preview-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #0a3a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: #0a3a5a;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

/* Flèche → au lieu du numéro */
.article-bloc-blue .preview-number::after {
  content: '→';
  font-size: 14px;
  line-height: 1;
}

.article-bloc-blue:hover, .article-bloc-blue:focus {
  text-decoration: none;
  color: #0a3a5a;
}

.article-bloc-blue:hover .preview-number {
  background: #0a3a5a;
  color: white;
}

/* Ligne de décoration sous chaque lien article */
.article-bloc-blue {
  border-bottom: 1px solid rgba(10, 58, 90, 0.15);
}

.article-bloc-blue:last-child {
  border-bottom: none;
}

.preview-title { font-weight: 300; color: black; text-align: left; }


/* === LOGO ARTICLE À DROITE (preview image — pleine hauteur, pas de radius) === */
.article-logo-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}

.article-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  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;
  animation: menuLogoZoom 12s ease-out forwards;
}

@keyframes menuLogoZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}


/* === LIGNE BAS COLONNE DROITE === */
.nav-row-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 1.2em 1em 1.2em;
  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", sans-serif; 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 {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 7px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.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 rgba(15, 82, 125, 0.3); transform: scale(1.07); }
.nav-row-socials a:hover { background: transparent; }

.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", sans-serif;
  transition: color 0.2s;
}

.nav-row-tel:hover, .nav-row-mail:hover { color: #0f527d; background: transparent; }


/* === MODALE RÉSERVATION === */
@media (max-width: 1330px) { .search-container { display: none; } }

.icon-reserver {
  display: flex !important;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  gap: 0.5rem;
}
.tag-reserver {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  font-family: "futura-pt", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag-reserver svg { flex-shrink: 0; margin-right: 6px; }
.icon-reserver:hover {
  background: white !important;
  border-color: white !important;
}
.icon-reserver:hover .tag-reserver { color: #0a3a5a; }

/* Réserver en mode fixé */
.header-capa.is-fixed .icon-reserver {
  border-color: rgba(10, 58, 90, 0.2) !important;
}
.header-capa.is-fixed .tag-reserver { color: #0a3a5a; }
.header-capa.is-fixed .icon-reserver:hover {
  background: #0a3a5a !important;
  border-color: #0a3a5a !important;
}
.header-capa.is-fixed .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(1100px, 92vw);
  max-height: min(84vh, 820px);
  transform: translate(70%, -50%);
  background: linear-gradient(45deg, transparent 11px, #fff 11px);
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(10, 58, 90, 0.18), 0 1px 4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 36px 28px;
  transition: transform 520ms cubic-bezier(.22, .86, .24, .99), opacity 320ms ease;
  overflow: visible;
}

.search-modal[aria-hidden="false"] .search-panel { transform: translate(-50%, -50%); opacity: 1; }

.search-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 0;
  border: 1px solid #e0ddd6;
  background: transparent;
  color: #0f527d;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.search-close:hover { background: #0f527d; color: #fff; border-color: #0f527d; }

.search-title {
  margin: 0 0 20px 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #0f527d;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  font-family: "futura-pt", sans-serif;
}

.search-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #0f527d;
  margin: 10px auto 0;
}

.search-shell {
  position: relative;
  flex: 1 1 auto;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}

.daterangepicker.dropdown-menu { z-index: 100000 !important; }

/* Responsive modale recherche */
@media (max-width: 768px) {
  .search-panel {
    width: 96vw;
    padding: 24px 20px 20px;
    background: linear-gradient(45deg, transparent 8px, #fff 8px);
  }
  .search-title { font-size: 16px; margin-bottom: 14px; }
  .search-title::after { width: 32px; margin: 8px auto 0; }
}


/* === RESPONSIVE === */

/* Grand écran : +5% sur bloc blanc et bloc bleu */
@media (min-width: 1500px) {
  .menu-col-left { width: 30%; }
  .articles-list-blue { width: 35%; }
}

/* Intermédiaire : 1024px */
@media (max-width: 1024px) {
  .menu-col-left { width: 40%; }
  .menu-col-right { width: 62%; background: #a3c0de; }
  .articles-group { flex-direction: column; }
  .article-logo-container { position: relative; width: 100%; height: 50%; }
  .articles-list-blue { width: 100%; height: 50%; clip-path: none; padding: 20px 30px; order: 2; }
  .back-btn { padding: 1.5rem 1.5rem; }
}

@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;
  }
  .menu-col-left { background: #fff; z-index: 20; transform: translateX(0); }
  .menu-col-left.open { clip-path: none; }
  .menu-col-right { z-index: 30; transform: translateX(100%); background: #a3c0de; padding: 1.2rem 0; }
  .menu-col-right.open { clip-path: none; }
  .nav-row-bottom { padding-top: 1em; }

  /* Leaf réduite */
  .menu-leaf-zone { height: 40px; }
  .menu-leaf-zone .menu-leaf-deco { width: 140px; top: -5px; left: -20px; }

  /* Agave réduite */
  .menu-agave-deco { width: 250px; bottom: -20px; right: -30px; }

  /* Conserver layout colonne photo/articles du 1024px */
  .articles-group { flex-direction: column; }
  .article-logo-container { position: relative; width: 100%; height: 50%; }
  .articles-list-blue { width: 100%; height: 50%; clip-path: none; padding: 20px 30px; order: 2; }
  .article-logo-container img { border-radius: 0 !important; }
}

@media (max-width: 620px) {
  .article-logo-container { display: none; }
  .articles-group { align-items: center; justify-content: center; }
  .articles-list-blue { width: 100%; height: 100%; clip-path: none; order: 0; }

  /* Leaf masquée */
  .menu-leaf-zone { display: none; }
}

@media (max-width: 620px) {
  .header-capa {
    height: 70px;
    padding: 0 10px 0 120px;
    background: white;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .logo-capa {
    height: 70px;
    width: 120px;
    box-shadow: none;
    clip-path: none;
  }
  .logo-capa img { height: 50px; }

  .menu-btn {
    color: #0a3a5a;
    border-color: rgba(10, 58, 90, 0.15);
    padding: 6px 12px;
    font-size: 11px;
  }
  .menu-btn:hover { background: #0a3a5a; color: white; border-color: #0a3a5a; }
  .burger-icon { font-size: 1em; }

  .icon-btn, .icon-btn:focus { color: #0a3a5a !important; }
  .icon-reserver { display: none !important; }
  .menu-tag { display: none; }
  .nav-row-bottom { display: none; }
}

@media (max-width: 850px) {
  #slider-annonce .owl-slide { overflow: hidden; position: relative; }

  #slider-annonce .owl-slide .annonce-ticker {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: annonceTicker 35s linear infinite;
  }

  #slider-annonce .owl-slide .annonce-ticker p,
  #slider-annonce .owl-slide .annonce-ticker div { display: inline; margin: 0; }
}

@keyframes annonceTicker {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  #slider-annonce .owl-slide .annonce-ticker { animation: none !important; transform: none !important; }
}
