:root{ --topbar-offset: 96px; }

section[id], .slide[id]{
  scroll-margin-top: var(--topbar-offset);
}

@font-face {
  font-family: 'Craketest';
  src: url('fonts/craketest-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

/* ===================================
   Animation pour tous les éléments sauf les images
   =================================== */
[data-animate]:not(figure) {
  transform: translate3d(0, 3rem, 0);
  opacity: 0;
}

.animated:not(figure) {
  animation: animate 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation-delay: var(--stagger, 0ms);
}

@keyframes animate {
  to { transform: none; opacity: 1; }
}

/* ===================================
   Reveal pour les images dans figure
   =================================== */
figure[data-animate] {
  position: relative;
  overflow: hidden; /* masque le pseudo-élément */
}

figure[data-animate] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* fade-in */
}

/* Masque blanc pour le reveal */
figure[data-animate]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0);
  z-index: 2;
  pointer-events: none;
}

/* Animation du voile et de l’image */
figure[data-animate].animated::before {
  animation: reveal 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

figure[data-animate].animated img {
  animation: fadeIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

/* Keyframes */
@keyframes reveal {
  to { transform: translateX(100%); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================
   Réduction du mouvement
   =================================== */
@media (prefers-reduced-motion: reduce) {
  figure[data-animate]::before { transform: none !important; display: none !important; }
  figure[data-animate] img { opacity: 1 !important; animation: none !important; }
  [data-animate]:not(figure) { transform: none !important; opacity: 1 !important; animation: none !important; }
}







html, body { font-family: "Jost"; color: #575a75; }

body {
  overflow-x: hidden;
}

.container-menu {
  max-width: 1620px;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.slide{
  height: auto;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
}

/* ronds de navigation */
#dotsNav{
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  display:flex; flex-direction:column; gap:10px; z-index:1000;
}
#dotsNav button{
  width:10px; height:10px; border-radius:50%; border:0; padding:0; cursor:pointer;
  background: rgba(255,255,255,.45); transition: transform .15s ease, background .15s ease;
}
#dotsNav button[aria-current="true"]{ background:#fff; transform: scale(1.35); }

.slide-home {
  position:relative;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 2;
}
@supports (height: 100svh) {
  .slide-home{
    min-height: 100svh; /* évite le "saut" quand la barre d’URL change */
  }
}
.slide-home::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.25); /* voile noir */
  z-index: 2;
}
.slide-home > * {
  position: relative;
  z-index: 3;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: crossfade 12s infinite;
}

/* Chaque image avec son background et décalage */
.bg1 { background-image: url("img/bandeau-photo01.webp"); animation-delay: 0s; }
.bg2 { background-image: url("img/bandeau-photo02.webp"); animation-delay: 4s; }
.bg3 { background-image: url("img/bandeau-photo03.webp"); animation-delay: 8s; }

/* Animation fade sans voir de gris */
@keyframes crossfade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}

.logo {
    font-size:5rem;
    font-weight: 500;
}
.accroche {
      font-family: 'Craketest';
      font-size:3rem;
      letter-spacing: 0.7rem;
}

.menu-content .logo {
  margin-top: 2.8rem;
  font-size:2rem;
}
.menu-content .accroche {
  font-size:1.2rem;
  line-height: 1.1rem;
}

.form-result {
  font-size:1.4rem;
  font-weight: bold;
  color: #626351;
}

/* TOPBAR */
.topbar{
  position: fixed; inset: 0 0 auto 0;
  z-index: 9000; pointer-events:auto;
  padding: 18px 28px;
  color:#fff;
  height: 96px;
  transition: background .1s ease;
}
.topbar a {
  color: #fff;
  text-decoration:none;
  font-size:1.2rem;
}
.topbar.is-solid a {
  color: #000;
}
.topbar.is-solid img {
  filter: invert(1);
}
.topbar .topbar-actions a:nth-child(1),
.topbar .topbar-actions a:nth-child(2) {
  display: none; /* masqués par défaut */
}





.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-actions a {
  position: relative;
  display: inline-flex;
  flex-direction: column; /* texte au-dessus, icône en dessous */
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Le span = label au-dessus */
.topbar-actions a span {
  position: absolute;
  bottom: 100%;             /* au-dessus de l’icône */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  white-space: nowrap;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.topbar.is-solid a span {
  color: #000;
}

/* Au hover : fade + slide vers le haut */
.topbar-actions a:hover span,
.topbar-actions a:focus-visible span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}






.topbar.is-solid .topbar-actions a:nth-child(1),
.topbar.is-solid .topbar-actions a:nth-child(2) {
  display: inline-block; /* visibles quand .is-solid est présent */
}

.topbar .brand {
  text-align:center;
}

.topbar .brand .logo {
  margin-top: 1.5rem;
  font-size:2rem;
  font-weight: 500;
}
.topbar .brand .accroche {
    font-family: 'Craketest';
    font-size:1.2rem;
    letter-spacing: 0.5rem;
    line-height: 0rem;
}

.topbar .brand div{ opacity:0; display: none; height: 54px; transition: opacity .25s; }

.topbar.is-solid .brand div {
  display: block;
  opacity:1; 
}

/* Option: fond solide dès qu’on quitte la 1re slide */
.topbar.is-solid{
  background: #ffffff;
}
.links {
  margin-top: 7rem;
}
.links a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.links a img {
  transition: transform 0.3s ease;
}
.links a:hover img {
  transform: translateX(6px);
}

/* FLÈCHE BAS */
#arrowDown{
  position: absolute; left:50%; bottom: 30px; transform: translateX(-50%);
  width:54px; height:54px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent; color:#fff; cursor:pointer;
  display:grid; place-items:center; z-index:1100;
  outline:none;
}
#arrowDown .chevron{
  display:block;
  border-right:2px solid rgba(255,255,255,.7);
  border-bottom:2px solid rgba(255,255,255,.7);
  transform: translateY(-8px) rotate(45deg);
  transition: width .25s, height .25s;
  width:26px; height:26px;
}

#arrowDown[hidden]{ display:none; }


.burgermenu {
  position: relative;
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  outline:0;
}

/* Container central invisible */
.burgermenu span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transform: translateY(-50%);
}

/* Traits visibles */
.burgermenu span::before,
.burgermenu span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.19,1,0.22,1);
}
.burgermenu.opened:hover {
  transform: rotate(90deg);
  transition: transform 0.6s ease-in-out;
}

.topbar.is-solid .burgermenu span::before,
.topbar.is-solid .burgermenu span::after {
  background: #000;
}

.burgermenu span::before { top: -5px; }
.burgermenu span::after  { top:  5px; }

.burgermenu:hover span::before {
  transform: translateY(-2px);
}
.burgermenu:hover span::after {
  transform: translateY(2px);
}

.burgermenu.opened span::before {
  transform: translateY(5px) rotate(45deg);
}
.burgermenu.opened span::after {
  transform: translateY(-5px) rotate(-45deg);
}


/* ----- Overlay ----- */
#menuOverlay{
  position: fixed; inset:0; z-index:3000;
  display:block; opacity:0; pointer-events:none;
  transition: opacity .28s cubic-bezier(.4,0,.2,1);
}
#menuOverlay .menu-bg{
  position:absolute; inset:0;
  background: url(img/bandeau-photo01.webp);
  background-size: cover;
}
#menuOverlay::after{                        /* voile sombre + léger blur */
  content:""; position:absolute; inset:0;
  background: rgba(0,0,0,.5);
}
#menuOverlay .menu-content{
  position:relative; z-index:1; color:#fff;
  padding: clamp(28px,4vw,56px) 0;
}
#menuOverlay .menu-logo{ height:144px; }

.menu-content .row { max-width: 50rem; }

.col-img{ position:relative; }                 /* parent de référence */
.col-img .media-cover{ flex: 1;           /* prend toute la hauteur dispo */
  display: flex; }
.col-img .media-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* Liens */
.menu-primary a {
  font-weight: 500;
  line-height: 1.5rem;
  padding:.5rem 0;
}
.menu-primary a, .menu-secondary a{ 
  display:block; color:#fff; text-decoration:none;
  font-size:clamp(1.25rem, 1.2vw, 1.75rem);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-primary a:hover, .menu-secondary a:hover {
  opacity:.8;
  transform: translateX(6px);
}
.menu-secondary h3{
  font-weight:800; font-size:clamp(1.25rem,1.2vw,1.75rem); margin-bottom:.75rem;
}
.menu-secondary a{ 
  padding:.35rem 0;
  display:block;
}
.menu-secondary a:first-of-type::before{
  content:"";
  display:block;
  width:60px;
  height:1px;
  background: rgba(255,255,255,.25);
  margin-bottom:.6rem; /* espace entre le trait et le lien */
}
.menu-secondary a::after{
  content:"";
  display:block;
  width:60px;                 /* le trait de 100px */
  height:1px;
  background: rgba(255,255,255,.25);
  margin-top:.6rem;            /* espace au-dessus du trait */
}

/* option : pas de trait après le dernier lien */
.menu-secondary a:last-child::after{ content:none; }
/* Etat ouvert */
body.menu-open #menuOverlay{ opacity:1; pointer-events:auto; }

/* Cacher tout le reste de la topbar quand le menu est ouvert (sauf burger) */
body.menu-open .topbar .brand,
body.menu-open .topbar .topbar-actions, body.menu-open a.lang { opacity:0; visibility:hidden; pointer-events:none; }

a.lang {
  transition: opacity .2s ease;
}
a.lang:hover {
  opacity:.6;
}
a.lang.active {
  font-weight: bold;
}
.btn-custom {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background-color: #626351;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 2.5rem;
  border-radius: 0.25rem;
  font-weight: bold;
  border: 0;
  transition: color .3s ease;
  z-index:1;
}

.animations .btn-custom, .plat .btn-custom {
  background-color: #908c5f;
}
.next .btn-custom {
  background-color: #8f8b5e;
}

.btn-custom::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;                    /* top:0; right:0; bottom:0; left:auto */
  width: 0%;                            /* démarre à 0 */
  background: #fff;                     /* couleur de remplissage */
  z-index: -1;
  transition: width .35s ease;          /* anim largeur */
}

.btn-custom:hover,
.btn-custom:focus-visible {
  color: #626351;                       /* texte devient lisible sur fond blanc */
}

.animations .btn-custom:hover,
.animations .btn-custom:focus-visible,
.plat .btn-custom:hover,
.plat .btn-custom:focus-visible {
  color: #908c5f;                       /* texte devient lisible sur fond blanc */
}

.next .btn-custom:hover,
.next .btn-custom:focus-visible {
  color: #8f8b5e;                       /* texte devient lisible sur fond blanc */
}

.btn-custom:hover::before,
.btn-custom:focus-visible::before {
  left: 0;                              /* on s’assure que le remplissage part bien de la gauche */
  right: auto;
  width: 100%;                          /* s’étend jusqu’à 100% */
}

/* s'assurer que le texte reste au-dessus du pseudo-élément */
.btn-custom > * {
  position: relative;
  z-index: 1;
}

/* Optionnel : réduire les animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  .btn-custom, .btn-custom::before { transition: none; }
}

/* Assure la visibilité du burger au-dessus de l’overlay */
.btn-menu{ position:relative; z-index:3100; }

/* Option accessibilité focus */
#menuOverlay a:focus-visible{ outline:2px solid #fff; outline-offset:2px; }

.terroir {
  background: url(img/image-terroir01.webp);
  color: #626351 !important;
}

.engagements {
  background: url(img/image-nosengagements01.webp);
  color: #626351 !important;
}

.cave {
  background: url(img/image-lacave02.webp);
  color: #fff !important;
}
#news-detail, #news {
  background-color: #e3e3d6;
}
.news-detail {
  padding-top: 3rem !important;
  color: #626351 !important;
}
.news-detail h3 {
  font-style: normal;
  font-weight: 700;
  color: #908c5f;
  margin-bottom: 2rem;
}
.news-detail a.back {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.25rem;
}
.news-detail a.back img {
  width: 10px;
  transition: transform 0.3s ease;
}

.news-detail a.back:hover img {
  transform: translateX(-6px); /* décalage vers la gauche */
}

.contact {
  background-image: url(img/fond-contact.webp);
  background-color: #926e4a;
  color: #fff !important;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left:2rem;
  padding-right:2rem;
  font-size: 1.2rem;
}

#experience {
  background-image: url(img/fond-experience.webp);
  background-color: #8f8b5f;
  color: #fff !important;
}
#degustation {
  background-image: url(img/fond-degustation.webp);
  background-color: #e3e3d6;
  color: #000 !important;
}
#animations {
  background-image: url(img/fond-animations02.webp);
  background-color: #e3e3d6;
  color: #000 !important;
}
#ateliers {
  background-image: url(img/fond-ateliers.webp);
  background-color: #8f8b5f;
  color: #fff !important;
}
#chefs {
  background-image: url(img/fond-chefs.webp);
  background-color: #8f8b5f;
  color: #fff !important;
}

#receptifs {
  background-image: url(img/fond-receptifs.webp);
  background-color: #8f8b5f;
  color: #fff !important;
}

#domaine {
  background-image: url(img/fond-domaine.webp);
  background-color: #8f8b5f;
  color: #fff !important;
}

#plat {
  background-image: url(img/fond-plat.webp);
  background-color: #e3e3d6;
  color: #000 !important;
}

#experience, #degustation, #ateliers, #chefs, #animations, #receptifs, #plat, #domaine {
  background-size: cover;
  background-position: center center;
  min-height: 100dvh;
}

.h-100-dvh {
  min-height:100dvh;
}

.paper{
  position: relative;
  padding: 3rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.paper h2, #contact h2 {
  font-weight: bold;
  font-size: 2.7rem;
  line-height: 2.5rem;
}
.paper h2 span {
  font-weight: 100;
}
b, strong {
    font-weight: 600;
}
.paper h3 {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
.paper h4 {
  font-style: italic;
  font-size: 1.8rem;
}
.paper p, label, .paper ul li {
  font-size: 1.3rem;
}
.degustation h3, .animations h3 {
  color: #908c5f;
}


a[href^="tel:"], a[href^="mailto:"] {
  color: #fff;          /* blanc */
  text-decoration: none; /* pas de soulignement */
}

a[href^="tel:"]:hover, a[href^="mailto:"]:hover {
  color: #fff;          /* reste blanc au survol */
  text-decoration: underline; /* ou none si tu veux jamais de souligné */
}

.form-control {
    border: 0;
    padding: 1.2rem;
    border-radius: 0.5rem;
    color: #fff;
}

.coords p {
  margin:0;
}

.coords a {
  color: #fff;
}

 .leaflet-map-300{ width:100%; height:300px; border-radius:.5rem; overflow:hidden; }
  /* optionnel : un peu d'ombre à l’icône */
  .map-pin { filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }

  .leaflet-map-300 .leaflet-tile {
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
}

.list-green{
  --dot: #fff;          /* vert */
  list-style: none;
  margin:0;
  padding: 0;
}
.list-green li{
  position: relative;
  padding-left: 1.25rem;   /* espace pour la pastille */
  margin: .35rem 0;
}
.list-green li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;             /* centrage vertical approximatif */
  transform: translateY(-50%);
  width: .3em;
  height: .3em;
  border-radius: 50%;
  background: var(--dot);
}


/* conteneur */
.tabs { width:100%; }

/* scène : superposition des panneaux, overflow caché */
.tabs-stage{
  display:grid;
  overflow:hidden;
  position:relative;
}

/* panneaux */
.tabs-stage > div{
  grid-area:1/1;
  transform:translateX(100%);
  opacity:0;
  visibility: hidden;
  pointer-events:none;
  transition:transform 420ms cubic-bezier(.18,.88,.22,1), opacity 420ms;
  will-change:transform,opacity;
}

/* état actif */
.tabs-stage > div.is-active{
  transform:translateX(0);
  opacity:1;
  visibility: visible;
  pointer-events:auto;
}

/* états de sortie du panneau courant */
.tabs-stage > div.to-left  { transform:translateX(-100%); }
.tabs-stage > div.to-right { transform:translateX(100%); }

/* états d'entrée du nouveau panneau (avant activation) */
.tabs-stage > div.from-right{ transform:translateX(100%); opacity:0; }
.tabs-stage > div.from-left { transform:translateX(-100%); opacity:0; }

/* pager */
.tabs-pager{
  margin-top:1rem;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:.5rem;
  flex-wrap:wrap;
}
.tabs-pager .pager-btn{
  min-width:24px; height:34px; padding:0;
  border:0;
  background:transparent;
  color: #fff;
  line-height:32px;
  text-align:center;
  cursor:pointer;
  font-size: 1.3rem;
}
.tabs-pager .pager-btn[disabled]{ opacity:0; cursor:default; }
.tabs-pager .pager-num[aria-current="true"]{
    background: transparent;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}
.tabs-pager .pager-btn img
{
    height: 30px;
    margin-bottom: 3px;
    transition: transform 0.3s ease;
}
.tabs-pager.beige .pager-btn{
  color: #908c5f;
}
.tabs-pager.beige .pager-num[aria-current="true"]
 {
  color: #908c5f;
  border-bottom: 1px solid #908c5f;
 }

.pager-prev:hover img {
  transform: translateX(-6px);
}
.pager-next:hover img {
  transform: translateX(6px);
}
.pager-num {
  transition: opacity 0.1s ease;
}
.pager-num:hover {
  opacity:.8;
}

#news {
    padding: 80px 0;
}


/* ===== Réglage hauteur fixe desktop/tablette ===== */
:root {
  --news-carousel-h: 700px; /* ajuste ici la hauteur désirée */
}

/* --- Titre --- */
.news-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

/* --- Carte --- */
.news-card {
  display: block;
  border-radius: 0;
  height: 100%;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.news-card:hover { transform: translateY(-5px); }

.news-image {
  width: 100%;
  display: block;
  /* Réserve d’espace pour éviter le reflow avant chargement image */
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.news-content { padding-top: 1rem; }

.news-date {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #908c5f;
  margin-bottom: 15px;
  line-height: 1.4;
}
.news-card-title:after {
  display: block;
  height: 1px;
  margin-top: 0.8em;
  width: 2rem;
  background-color: #908c5f;
  content: '';
}

.news-card div.news-next {
  text-transform: uppercase;
  color: #000;
  font-size:0.8rem;
  letter-spacing: 0.25rem;
}

.news-card div.news-next span {
  color: #908c5f;
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.news-card:hover div.news-next span {
  transform: translateX(6px);
}

/* --- Carousel Desktop/Tablette --- */
#newsCarousel .carousel-inner {
  display: grid;                 /* superpose les slides */
  position: relative;
  overflow: hidden;              /* supprime toute scrollbar interne */
}

/* Chaque slide remplit la cellule grid et la hauteur fixée */
#newsCarousel .carousel-item {
  grid-area: 1 / 1;
  transition: transform .6s ease, opacity .6s ease;
  transform: translateX(0);
  opacity: 0;
  visibility: hidden;
}
#newsCarousel .carousel-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Assure la même hauteur visuelle à l’intérieur du slide */
#newsCarousel .carousel-item > .row {
  min-height: var(--news-carousel-h);
  align-items: stretch;
}

/* états de transition */
#newsCarousel .carousel-item.to-left   { transform: translateX(-100%); opacity: 0; }
#newsCarousel .carousel-item.to-right  { transform: translateX(100%);  opacity: 0; }
#newsCarousel .carousel-item.from-left { transform: translateX(-100%); opacity: 0; }
#newsCarousel .carousel-item.from-right{ transform: translateX(100%);  opacity: 0; }

/* --- Contrôles --- */
#newsCarousel .carousel-prev,
#newsCarousel .carousel-next {
  width: 30px;
  height: 30px;
  top: 160px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: transparent;
  border: 0;
}
#newsCarousel .carousel-prev { left: -100px; }
#newsCarousel .carousel-next { right: -50px; }

#newsCarousel .carousel-prev img,
#newsCarousel .carousel-next img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

#newsCarousel .carousel-next:hover img {
  transform: translateX(6px);
}
#newsCarousel .carousel-prev:hover img {
  transform: translateX(-6px);
}

#newsPager {
    display:none !important;
  }

.carousel-prev.is-hidden,
.carousel-control-prev.is-hidden,
.carousel-next.is-hidden,
.carousel-control-next.is-hidden {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 1560px) {
  #newsCarousel .carousel-prev,
  #newsCarousel .carousel-next {
    display:none;
  }
}

@media (min-width: 992px) and (max-width: 1560px) {
  #newsPager {
    display: flex !important;
  }
}

@media (max-width: 992px) {

  #newsCarousel .carousel-inner {
    display: inline-block;
  }
  #newsCarousel .carousel-item {
      display: block;
      float: none;
      grid-area: none;
      opacity: 1;
      visibility: visible;
  }

  #news .row > div:nth-child(1), #news .row > div:nth-child(3) {
    margin-top: 4rem;
  }

}





@media (max-width: 890px){
  .brand {
    display:none;
  }

  .logo {
    font-size:3rem;
  }
  .accroche {
        font-size:2rem;
  }
}

@media (max-width: 1200px){
  #dotsNav, #arrowDown{ display:none !important; }  /* cache les aides */

  /* cacher le pager */
  .tabs-pager {
    display: none !important;
  }

  /* scène = affichage normal */
  .tabs-stage {
    display: block;
    overflow: visible;
  }

  /* panneaux : s'affichent à la suite */
  .tabs-stage > div {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
    margin-bottom: 2rem; /* espace entre blocs si besoin */
  }

  #experience, #degustation, #ateliers, #chefs, #receptifs, #plat, #animations, #domaine {
    background-image: none;
  }
}

@media (min-width: 1400px){
  .paper{
    padding-left: 15rem;
    padding-right: 10rem;
  }
  .terroir, .cave, .experience, .ateliers, .degustation, .receptifs, .plat, .animations, .domaine, .news-detail {
    padding-left: 6rem;
  }
}


#cm-popin {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: none;
}

#cm-popin.is-open {
  display: block;
}

#cm-popin .cm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

#cm-popin .cm-close img {
  width: 28px;
  height: 28px;
}

#cm-popin .cm-body {
  position: absolute;
  inset: 0;
}

#cm-popin iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}