@charset "utf-8";
/*!
Theme Name: piscine-rbx
Description: Thème de la piscine de Roubaix
Text Domain: piscine-rbx
Version: 1.0.0
Author: Blaaaz
Author URI: http://www.blaaaz.com
*/
/**
 * BREAKPOINT (for-size)
 * 
 * deprecated
 */
/**
 * FLEXBOX (flex)
 * 
 * @mixin .flex(@wrap: nowrap, @justify: flex-start, @align-items: stretch, @align-content: stretch, @direction: row)
 * @param {mixed} @wrap Taille
 * @param {mixed} @justify Règle
 * @param {mixed} @align-items Règle2
 * @param {mixed} @align-content Règle2
 * @param {mixed} @direction Règle2
 */
/**
 * FLUID TYPOGRAPHY (fluid-type)
 * Défini une typo fluide entre 2 breakpoints à partir d'une taille de font minimum et maximum.
 * 
 * @mixin .fluid-type(@min_width, @max_width, @min-font-size, @max-font-size)
 * @param {int} @min_width Taille d'écran de départ
 * @param {int} @max_width Taille d'écran d'arrivée
 * @param {int} @min-font-size Taille du texte pour la taille d'écran de départ
 * @param {int} @max-font-size Taille du texte pour la taille d'écran d'arrivée
 */
/**
 * STRETCHED LINK (stretched-link)
 * Permet de rendre tout un bloc cliquable grâce au pseudo-élément `::after` de l'élément `<a>` enfant.
 */
.stretched-link {
  position: relative;
}
.stretched-link a[href]::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
/**
 * ASPECT RATIO (fixed-ratio)
 * Permet de définir le ratio d'un conteneur et indique à ses déscendants direct de recouvrir tout le bloc.
 */
/**
 * VIEWPORT SIZE (vw-size)
 * Permet de calculer une taille en VW à partir d'une taille en PX
 */
/**
 * GRID (grid)
 */
/* resource : https://css-tricks.com/an-auto-filling-css-grid-with-max-columns/ */
/**
 * FLEXGRID (flexgrid)
 */
/**
 * ASPECT-RATIO (aspect-ratio)
 */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 2vw;
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: inherit;
}
*:focus {
  outline: none;
}
a,
abbr,
address,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
label,
legend,
li,
object,
ol,
p,
pre,
q,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0;
  margin: 0;
  padding: 0;
}
article,
aside,
figcaption,
figure,
figure img,
footer,
header,
hgroup,
main,
nav,
object,
section,
video {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  outline: 0;
}
a img {
  border: 0;
}
button,
input {
  font: inherit;
  color: inherit;
  line-height: normal;
}
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  text-align: inherit;
  overflow: visible;
  cursor: pointer;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
sub {
  font-size: 0.75em;
  vertical-align: baseline;
}
/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}
.clear:after {
  clear: both;
}
.clear {
  *zoom: 1;
}
/*-------------------------------------------*\
	BASICS
\*-------------------------------------------*/
.animate_arch {
  position: relative;
  overflow: hidden;
}
.animate_arch .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.animate_arch .image-container svg {
  position: absolute;
  width: calc(100% + 2px);
  height: auto;
  top: -100%;
  left: -1px;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.animate_arch .image-container:hover svg {
  top: 0;
}
.animate_arch.no_anim .image-container svg {
  top: 0;
}
h2,
h3,
h4 {
  margin-bottom: 1rem;
}
.title2 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9em;
  font-family: "Barlow Condensed", sans-serif;
}
/**
 * body
 *
 */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}
body {
  font-family: "Barlow", sans-serif;
  color: black;
  line-height: 1.4;
  cursor: default;
  -webkit-text-size-adjust: none;
}
body::after {
  content: 'mobile';
  display: none;
}
body .main,
body p,
body h1,
body h2,
body h3,
body .header {
  font-family: "Barlow", sans-serif;
}
/**
 * selection
 *
 */
::-moz-selection {
  color: #FFFFFF;
  background-color: #000;
}
::selection {
  color: #FFFFFF;
  background-color: #000;
}
/**
 * paragraph
 *
 */
p + p,
p + blockquote,
blockquote + p,
blockquote + blockquote {
  margin: 1.3em 0;
}
/**
 * screen-reader-text
 *
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
/*-------------------------------------------*\
	GLOBAL
\*-------------------------------------------*/
/**
 * wrap
 *
 */
.wrap,
.grid {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.inner-wrap {
  padding: 0 4vw;
}
main {
  min-height: calc(100vh - 122px);
  margin-top: 122px;
}
.header {
  width: 100%;
  color: #212121;
  position: relative;
  transition: padding 0.3s ease-in-out;
  /* Positionnement du sous-menu */
  /* Structure en colonnes */
  /* Colonnes individuelles */
  /* Cacher les titres de colonne au clic */
  /* Sous-liens */
  /* Widget d'horaires d'ouverture */
  /* Conteneur de l'icône pour positionner le point */
  /* Le point de statut (ouvert/fermé) */
  /* Conteneur pour les lignes de texte */
}
.header ul {
  padding: 0;
  margin: 0;
}
.header ul li {
  list-style-type: none;
}
.header .responsive-menu {
  position: fixed;
  top: 122px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
  transform: translateY(-20px);
  opacity: 0;
  z-index: 999;
}
.header .responsive-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  height: calc(100vh - 122px);
}
.header .responsive-menu__container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  width: 100%;
  height: 100%;
}
.header .responsive-menu__container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: 50vw;
  background-image: url('img/corner-right-draw-blue.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.header .responsive-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .responsive-menu__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header .responsive-menu__menu .ticket-menu {
  display: none;
}
.header .responsive-menu__menu .menu-item {
  font-size: 24px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.header .responsive-menu__menu .menu-item a {
  display: block;
  color: #212121;
  text-decoration: none;
}
.header .responsive-menu__menu .menu-item.faded {
  opacity: 0.4;
}
.header .responsive-menu__menu .menu-item .sub-menu {
  list-style: none;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease, margin-top 0.3s ease;
  flex-direction: column;
  position: static;
}
.header .responsive-menu__menu .menu-item .sub-menu .menu-item {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu {
  max-height: 500px;
  opacity: 1;
  gap: 1px;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu > .colonne1 {
  padding-top: 10px;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu > .colonne1 > a {
  text-transform: uppercase;
  text-decoration: underline;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu > .colonne2 {
  padding-top: 10px;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu > .colonne2 > a {
  text-transform: uppercase;
  text-decoration: underline;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu a::before {
  content: none;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu a::after {
  content: none;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu .sub-menu {
  padding-left: 0;
}
.header .responsive-menu__menu .menu-item.submenu-open > .sub-menu .sub-menu .menu-item a {
  text-decoration: none;
}
.header .responsive-menu__menu .menu-item.submenu-open > a {
  margin-bottom: 15px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.header .responsive-menu__menu .menu-item.submenu-open > a::before {
  content: url('img/arrow_black.svg');
  position: absolute;
  top: 50%;
  left: -7px;
  width: 5px;
  height: 5px;
  transform: rotate(-180deg) translateY(-50%) scale(0.6);
  transform-origin: bottom;
}
.header .responsive-menu__menu .menu-item.submenu-open > a::after {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #85D0F3;
  transition: width 0.3s ease-in-out;
}
.header .responsive-menu__secondary-links {
  padding-top: 20px;
  border-top: 1px solid #F1F1F1;
}
.header .responsive-menu__secondary-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header .responsive-menu__secondary-links ul li a {
  color: #212121;
  text-decoration: none;
  font-size: 18px;
}
.header.scrolled .header__container {
  padding-top: 15px;
  padding-bottom: 15px;
  transition: padding 0.3s ease-in-out;
}
.header.scrolled .responsive-menu.open {
  top: 103px;
  height: calc(100vh - 103px);
}
.header.scrolled .header__top {
  display: none;
}
.header.scrolled .header__content {
  gap: 15px;
}
.header.scrolled .header__logo {
  align-items: center;
}
.header.scrolled .header__logo .custom-logo-link img {
  max-height: 60px;
  transition: max-height 0.3s ease-in-out;
  aspect-ratio: 364/94;
}
.header__logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header__logo__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.header__logo__content .options-mobile {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.header__logo__content #burger {
  display: none;
}
.header__logo__content #burger::before,
.header__logo__content #burger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.header__logo__content #burger::before {
  top: -7px;
}
.header__logo__content #burger::after {
  top: 7px;
}
.header__logo__content #burger.open {
  transform: rotate(45deg);
}
.header__logo__content #burger.open::before {
  top: 0;
  transform: rotate(90deg);
}
.header__logo__content #burger.open::after {
  top: 0;
  transform: rotate(90deg);
}
.header__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding-top: 27px;
  padding-bottom: 27px;
}
.header__content {
  display: none;
  flex-direction: column;
  gap: 27px;
}
.header__top {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: center;
}
.header__top ul {
  display: flex;
  gap: 2rem;
  font-size: 16px;
}
.header__search {
  display: flex;
  width: 37px;
  height: 37px;
}
.header__search a {
  width: 100%;
}
.header__menu {
  display: flex;
  align-items: center;
}
.header .mega-menu {
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
.header .mega-menu.menu-item-has-children {
  position: relative;
}
.header .mega-menu.menu-item-has-children a {
  position: relative;
  z-index: 1;
}
.header .mega-menu:not(:first-child):hover {
  cursor: pointer;
}
.header .mega-menu:hover::after {
  width: 100%;
}
.header .ticket-menu {
  position: relative;
  color: #000;
  border-radius: 50px;
  border: 1px solid #000;
  flex-shrink: 0;
  font-weight: 600;
  padding-left: 46px;
  padding-right: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.header .ticket-menu::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 17px;
  background-image: url('img/ticket.svg');
  /* chemin vers ton SVG */
  background-size: contain;
  background-repeat: no-repeat;
}
.header .mega-menu > .sub-menu {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.header .mega-menu.links-visiter .sub-menu {
  display: flex;
  flex-direction: column;
}
.header .mega-col-title {
  font-weight: bold;
}
.header .mega-col-title > a {
  cursor: default;
  color: #212121;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.header .mega-col-title .sub-menu {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.header .mega-col-title .sub-menu > .menu-item {
  font-size: 18px;
  font-weight: 500;
  text-transform: initial;
  color: #212121;
  padding-bottom: 10px;
}
.header .mega-col-title .sub-menu > .menu-item a:hover {
  cursor: pointer;
}
.header .lang-switcher select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: '';
  outline: none;
  border: none;
  text-transform: uppercase;
  text-decoration: underline;
  padding: 5px;
}
.header .opening-hours-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow", sans-serif;
  justify-content: flex-end;
}
.header .opening-hours-widget .icon-container {
  position: relative;
  display: flex;
  /* Pour s'assurer que l'icône a une taille */
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.header .opening-hours-widget .clock-icon {
  color: #000;
}
.header .opening-hours-widget .status-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.header .opening-hours-widget .text-container {
  display: flex;
  flex-direction: row;
  line-height: 1.3;
}
.header .opening-hours-widget .line1 {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
.header .opening-hours-widget .line2 {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.header .opening-hours-widget .line2 .nbsp {
  display: inline-block;
  width: 0.5em;
  /* Largeur d'un espace insécable */
}
.footer ul {
  padding: 0;
  margin: 0;
}
.footer ul li {
  list-style-type: none;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 50px 0;
  flex-direction: column;
  gap: 36px;
}
.footer .socials {
  display: flex;
  gap: 2rem;
}
.footer__menu {
  display: flex;
  gap: 2rem;
  font-size: 22px;
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__menu a {
  text-decoration: underline;
  color: #000;
}
.footer__inner-wrap {
  padding-top: 40px;
  padding-bottom: 90px;
}
.footer__sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 36px 0;
}
.cta_border,
.s-newsletter #nl-submit {
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-color: inherit;
  border: solid 1px rgba(33, 33, 33, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}
.cta_border :root {
  --angle: 330deg;
}
@property --angle {
  syntax: "<angle>";
  initial-value: -30deg;
  inherits: false;
}
@keyframes rotate {
  to {
    --angle: 330deg;
  }
}
.cta_border:hover {
  animation: rotate 0.5s linear 1;
  background-image: linear-gradient(to right, #ffffff, #ffffff), conic-gradient(from var(--angle), #85D0F3 0deg, #85D0F3 60deg, #85D0F3 120deg, #127fb2 180deg, #127fb2 240deg, #127fb2 300deg, #85D0F3 360deg);
  border: solid 1px transparent;
}
.cta_cross span {
  padding-left: 0.7rem;
  transition: 0.3s all linear;
  font-size: 1.3rem;
  font-weight: 600;
}
.cta_cross svg {
  transition: 0.3s all linear;
}
.cta_cross:hover span {
  padding-left: 1.3rem;
}
.cta_cross:hover svg {
  transform: rotate(180deg);
}
/* Conteneur principal */
.datepicker-container {
  position: relative;
  font-family: "Barlow", sans-serif;
}
.datepicker {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 100;
  width: 320px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 15px;
  visibility: hidden;
  /* Important pour l'accessibilité */
  opacity: 0;
  transform: translateY(-15px);
  /* Légèrement au-dessus et plus petit */
  transform-origin: top center;
  /* L'animation part du haut */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
.datepicker.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s 0s;
}
/* Header: < Mois Année > */
.datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.month-year-header {
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  color: #777;
}
.datepicker-header button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #777777;
  padding: 0 10px;
}
.datepicker-header button:hover {
  color: #000;
}
/* Grille des jours et des dates */
.days,
.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.days span {
  font-size: 13px;
  color: #777;
  padding-bottom: 10px;
  text-transform: capitalize;
}
.dates .day {
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  font-size: 13px;
  transition: background-color 0.2s, color 0.2s;
}
.dates .day:not(.day-empty):hover {
  background-color: #e0efff;
}
/* Style pour les jours hors du mois courant */
.day.day-empty {
  color: #AAAAAA;
  background-color: #EEEEEE;
  cursor: default;
}
.day.day-empty:hover {
  background-color: transparent;
}
/* NOUVEAU: Style de sélection unique */
.day.selected {
  background-color: #00CCFF;
  color: #fff !important;
  font-weight: bold;
}
#breadcrumbs {
  color: inherit;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 25px 0 50px;
}
.block-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 460;
  width: 100%;
}
.block-hero::after {
  content: '';
  background-image: url('img/corner-right-draw.svg');
  z-index: 2;
  position: absolute;
  display: block;
  width: 13vw;
  height: 13vw;
  bottom: 0;
  right: -1.5vw;
  background-size: contain;
}
.block-hero img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.block-hero__categorie {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 460;
}
.block-hero__categorie .block-title {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  letter-spacing: -0.02em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
}
.block-hero__categorie .block-intro-visual {
  background-size: cover;
  aspect-ratio: 1920/460;
  width: 100%;
}
.block-hero__categorie .block-intro-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.block-hero__categorie::after {
  content: '';
  background-image: url('img/corner-right-draw.svg');
  z-index: 2;
  position: absolute;
  display: block;
  width: 13vw;
  height: 13vw;
  bottom: 0;
  right: -1.5vw;
  background-size: contain;
}
.block-hero:not(.hero-exposition) .block-title {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  letter-spacing: -0.02em;
  top: 50%;
  line-height: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
}
.hero-exposition {
  position: relative;
  overflow: initial;
  aspect-ratio: initial;
  width: 100%;
  overflow: hidden;
}
.hero-exposition .block-title {
  padding: 5rem 1rem;
}
.hero-exposition .block-title h1 {
  font-weight: 700;
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 1.1;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
/* --- Style de la Pop-in d'image --- */
/* Conteneur principal de la modale, initialement caché */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-modal.is-visible {
  visibility: visible;
  opacity: 1;
}
/* Fond noir semi-transparent */
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
/* Contenu (l'image) */
.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}
.modal-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
}
/* Bouton de fermeture (la croix) */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1001;
  /* Pour être au-dessus de l'image */
  line-height: 1;
}
.modal-close:hover {
  color: #85D0F3;
}
/* Classe utilitaire pour bloquer le scroll de la page en arrière-plan */
body.modal-open {
  overflow: hidden;
}
#hp-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
#hp-popup .popup-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
#hp-popup .popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}
.home .s-hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-block-start: 122px;
  color: #fff;
}
.home .s-hero h1.spe_h1 {
  font-family: "Barlow Semi Condensed", sans-serif;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.home .s-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -o-object-position: center top;
     object-position: center top;
}
.home .s-hero .bg_back {
  z-index: 1;
}
.home .s-hero #filter_bg {
  position: absolute;
  inset: 0;
  background-color: #212121;
  opacity: 0.5;
}
.home .s-hero .bg_front {
  z-index: 2;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 2352'%3e%3cpath d='M993.971 826C846.584 826 727.104 945.481 727.104 1092.87H727V1483.1H1260.94V1092.87H1260.84C1260.84 945.481 1141.36 826 993.971 826Z' fill='black'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 2352'%3e%3cpath d='M993.971 826C846.584 826 727.104 945.481 727.104 1092.87H727V1483.1H1260.94V1092.87H1260.84C1260.84 945.481 1141.36 826 993.971 826Z' fill='black'/%3e%3c/svg%3e");
  /* Propriétés pour que le masque s'adapte à la taille de l'élément */
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.home .s-hero img#visuel_anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -o-object-position: center top;
     object-position: center top;
}
.home .s-hero img#visuel_end {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  -o-object-position: center top;
     object-position: center top;
}
.home .s-hero .animate_arch_hero {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.home .s-hero .animate_arch_hero .bg_arch {
  fill: #212121;
  width: 105%;
  height: auto;
  position: absolute;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.home .s-hero__container {
  position: absolute;
  z-index: 4;
  padding: 2rem;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.home .s-hero__container .show {
  display: none;
}
.home .s-hero__container .cta_border {
  display: block;
  margin-block-start: 1rem;
  border: 1px #fff solid;
  transition: 0.3s;
}
.home .s-hero__container .cta_border:hover {
  background: hsla(0, 0%, 100%, 0.3);
}
.home .s-expo__container {
  position: relative;
}
.home .s-expo .expo-image {
  background-size: cover;
  background-repeat: no-repeat;
}
.home .s-expo .expo-item {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.home .s-expo .expo-item:nth-child(1) {
  background-color: #A64741;
}
.home .s-expo .expo-item:nth-child(1) .expo-image {
  border-radius: 50vw 0 0 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: auto;
  aspect-ratio: 1;
}
.home .s-expo .expo-item:nth-child(1) .expo-meta {
  text-align: center;
}
.home .s-expo .expo-item:nth-child(1) .expo-content {
  left: 0;
}
.home .s-expo .expo-item:nth-child(1) .corner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}
.home .s-expo .expo-item:nth-child(2) {
  background-color: #EEBF33;
}
.home .s-expo .expo-item:nth-child(2) .expo-image {
  border-radius: 0 397px 0 0;
  right: auto;
  left: 0;
  aspect-ratio: 1;
}
.home .s-expo .expo-item:nth-child(2) .expo-meta {
  right: 4vw;
  left: auto;
}
.home .s-expo .expo-item:nth-child(2) .expo-content {
  left: auto;
  right: 17vw;
}
.home .s-expo .expo-item:nth-child(2) .corner-img {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
}
.home .s-expo .expo-item:nth-child(3) {
  background-color: #C27650;
}
.home .s-expo .expo-item:nth-child(3) .expo-image {
  border-radius: 397px 0 0 0;
  right: 0;
  left: auto;
  height: auto;
  aspect-ratio: 1;
}
.home .s-expo .expo-item:nth-child(3) .expo-meta {
  right: auto;
  left: 4vw;
}
.home .s-expo .expo-item:nth-child(3) .expo-content {
  left: 17vw;
  right: auto;
}
.home .s-expo .expo-item:nth-child(3) .corner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}
.home .s-expo .expo-meta {
  color: #fff;
  z-index: 2;
}
.home .s-expo .expo-content {
  z-index: 2;
  color: #fff;
}
.home .s-expo .expo-content h3 {
  font-weight: 600;
  line-height: 108%;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 2rem;
}
.home .s-expo .expo-content .expo-excerpt {
  font-size: 28px;
  font-weight: 500;
  line-height: 114%;
  text-align: left;
  padding-block-end: 0.5rem;
}
.home .s-expo .expo-status {
  padding-top: 32px;
  font-weight: 700;
  line-height: 1.06;
}
.home .s-expo .expo-date {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 32px;
}
.home .s-expo .expo-date-begin {
  text-transform: uppercase;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  white-space: nowrap;
}
.home .s-expo .expo-date-begin sup {
  font-size: smaller;
  text-transform: lowercase;
}
.home .s-expo .expo-date-end {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-left: 30px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.home .s-expo .expo-date-end sup {
  font-size: smaller;
  text-transform: lowercase;
}
.home .s-expo .expo-date-end::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 2px;
  background-color: currentColor;
}
.home .s-profil {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.home .s-profil__container {
  display: flex;
  align-items: center;
}
.home .s-profil__text {
  width: 50%;
  color: #000;
  text-align: left;
  padding: 20px;
}
.home .s-profil__text h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  line-height: 86%;
  letter-spacing: -0.02em;
}
.home .s-profil__text p {
  font-weight: 600;
}
.home .s-profil__content {
  width: 50%;
  height: 244px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-radius: 165.079px 0px 0px 0px;
  background-blend-mode: multiply, normal, normal;
  background-repeat: no-repeat;
  z-index: 2;
}
.home .s-profil__content__button {
  border-radius: 27px;
  border: 1px solid #000;
  color: #000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-block-start: 0.8rem;
}
.home .s-services {
  background-color: #f1f1f1;
  padding: 100px 0 20px;
}
.home .s-services__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
}
.home .s-services__card {
  flex: 1 1 calc(33.333% - 1rem);
  padding: 1rem;
  color: #000;
}
.home .s-services__bg {
  aspect-ratio: 51/28;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.home .s-services__title {
  font-size: 22px;
  font-weight: 700;
  color: #212121;
  padding: 27px;
}
.home .s-services__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  z-index: 1;
}
.home .s-services__icon {
  z-index: 2;
  position: relative;
  transition: opacity 0.3s ease;
}
.home .s-services__icon.icon-h {
  opacity: 0;
  position: absolute;
}
.home .s-services__link:hover .icon-default {
  opacity: 0;
}
.home .s-services__link:hover .icon-h {
  opacity: 1;
}
.home .s-services__link:hover .s-services__overlay {
  opacity: 0;
}
.home .s-manufacture {
  background-color: #f1f1f1;
  padding-bottom: 100px;
}
.home .s-manufacture svg.arrow {
  stroke: #fff;
}
.home .s-manufacture__container {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  position: relative;
}
.home .s-manufacture__container a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home .s-manufacture__left {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 794/287;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.home .s-manufacture__right {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 794/287;
}
.home .s-manufacture__content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-inline-end: 2rem;
}
.home .s-manufacture__content svg.arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}
.home .s-manufacture__content h3 {
  font-weight: 600;
  margin-top: 16px;
}
.home .s-manufacture__content p {
  font-weight: 600;
}
.home footer {
  background-color: #f1f1f1;
}
.s-hero__bg[style] {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.s-agenda {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.s-agenda h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #000;
  text-align: center;
  padding-bottom: 30px;
}
.s-agenda .agenda-cards .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  height: auto;
}
.s-agenda .agenda-card {
  overflow: hidden;
  position: relative;
}
.s-agenda .agenda-card:hover .animate_arch .image-container svg {
  top: 0;
}
.s-agenda .agenda-image-wrapper {
  position: relative;
  aspect-ratio: 407/551;
  overflow: hidden;
  /*&:hover {
            .image-masquee {
                opacity: 1;
            }
            .image-base {
                opacity: 0;
            }
            .event-type {
                transform: translateY(100%);
            }
        }*/
}
.s-agenda .agenda-image-wrapper .animate_arch {
  height: 100%;
}
.s-agenda .agenda-image-wrapper .animate_arch svg {
  fill: #fff;
}
.s-agenda .agenda-image-wrapper .image-base,
.s-agenda .agenda-image-wrapper .image-masquee {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 407/551;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease-in-out;
}
.s-agenda .agenda-image-wrapper .image-masquee {
  -webkit-mask-image: url('img/mask_arch.png');
  mask-image: url('img/mask_arch.png');
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0;
}
.s-agenda .agenda-image-wrapper .event-type {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  background: white;
  padding-right: 5px;
  transition: transform 0.4s ease-in-out;
}
.s-agenda .event-date {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.s-agenda .event-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 120px;
  margin-bottom: 5px;
  overflow: hidden;
  color: #000;
  transition: all 0.3s ease-in-out;
}
.s-agenda .event-title:hover {
  color: #85D0F3;
}
.s-agenda .agenda-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.s-agenda .agenda-cta img {
  transition: all 0.3s ease-in-out;
}
.s-agenda .agenda-cta a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 35px;
  font-size: 18px;
  font-family: "Barlow", sans-serif;
  color: #000;
  font-weight: 600;
  text-align: center;
  border-radius: 23px;
  border: 1px solid rgba(33, 33, 33, 0.2);
}
.s-agenda .agenda-info:hover .event-title {
  color: #85D0F3;
}
.s-agenda .agenda-info:hover img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(9%) saturate(2201%) hue-rotate(172deg) brightness(106%) contrast(91%);
}
.s-collection {
  display: flex;
  padding: 140px 20px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  align-self: stretch;
  border-radius: 200px 200px 0px 0px;
  background: #000;
  overflow: hidden;
}
.s-collection h2 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
}
.s-collection .collection-container {
  width: 100%;
}
.s-collection .collection-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4vw;
  width: 100%;
  padding: 0 20px 40px;
}
.s-collection .collection-tabs .tab-link {
  padding: 5px 0;
  border: none;
  background-color: transparent;
  color: #808080;
  font-size: 22px;
  letter-spacing: -0.04em;
  font-weight: normal;
  transition: color 0.3s;
  position: relative;
}
.s-collection .collection-tabs .tab-link::after {
  content: '';
  position: absolute;
  bottom: 50%;
  left: -10px;
  transform: translateY(50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.s-collection .collection-tabs .tab-link:hover {
  color: #fff;
}
.s-collection .collection-tabs .tab-link.active {
  background-color: transparent;
  color: #fff;
  font-weight: bold;
}
.s-collection .collection-tabs .tab-link.active::after {
  opacity: 1;
}
.s-collection .artworks-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.s-collection .artworks-grid .artwork-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s-collection .artworks-grid .artwork-column .artwork-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}
.s-collection .artworks-grid .artwork-column .artwork-item img {
  max-height: calc(100vh - (122px + 100px));
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.s-collection .artworks-grid .artwork-column .artwork-item .artwork-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: "Barlow", sans-serif;
  background: #5A5A5A;
  background-blend-mode: multiply;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}
.s-collection .artworks-grid .artwork-column .artwork-item:hover img {
  transform: scale(1.05);
}
.s-collection .artworks-grid .artwork-column .artwork-item:hover .artwork-caption {
  transform: translateY(0);
}
.s-collection .artworks-grid .artwork-column-1,
.s-collection .artworks-grid .artwork-column-5 {
  margin-top: 100px;
}
.s-collection .artworks-grid .artwork-column-2,
.s-collection .artworks-grid .artwork-column-4 {
  margin-top: 20px;
}
.s-newsletter {
  background-color: #F1F1F1;
}
.s-newsletter__inner {
  display: flex;
  gap: 4vw;
  flex-direction: column;
}
.s-newsletter__inner > * {
  flex: 1;
}
.s-newsletter__title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #000;
}
.s-newsletter__description {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
.s-newsletter #nl-submit {
  min-width: 196px;
  height: 46px;
  text-align: center;
}
.s-newsletter #sib_signup_form_1 .sib-email-area {
  display: flex;
  white-space: nowrap;
  gap: 10px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}
.s-newsletter #sib_signup_form_1 input[type=email] {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
  margin-bottom: 0;
}
.s-newsletter #sib_signup_form_1 .sib_signup_box_inside_1 > p:last-child {
  margin-top: 20px;
}
.infos_pratiques {
  background-color: #F1F1F1;
}
.page_infos_pratiques {
  padding-block: 3rem;
  /* Container principal */
}
.page_infos_pratiques .acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}
.page_infos_pratiques .section_infos {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page_infos_pratiques .section_infos .wrapper_accordion {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
}
.page_infos_pratiques .section_infos .animate_arch {
  width: 100%;
  max-width: 400px;
}
.page_infos_pratiques .section_infos .animate_arch .image-container {
  aspect-ratio: 240 / 350;
}
.page_infos_pratiques .section_infos .animate_arch .image-container svg {
  fill: #F1F1F1;
}
.page_infos_pratiques .informations-repeater {
  /* Header cliquable */
  /* Icône d'expansion */
  /* Contenu de l'accordion */
  /* Animation d'ouverture */
}
.page_infos_pratiques .informations-repeater.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page_infos_pratiques .informations-repeater .accordion-item {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page_infos_pratiques .informations-repeater .accordion-item.active .accordion-header .accordion-chevron {
  transform: rotate(180deg);
}
.page_infos_pratiques .informations-repeater .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page_infos_pratiques .informations-repeater .accordion-header:focus {
  outline: 2px solid #007cba;
  outline-offset: -2px;
}
.page_infos_pratiques .informations-repeater .accordion-header .accordion-title {
  margin: 0;
  text-transform: uppercase;
  flex-grow: 1;
  font-size: 1.1rem;
  font-weight: 600;
}
.page_infos_pratiques .informations-repeater .accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.page_infos_pratiques .informations-repeater .accordion-icon .accordion-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: currentColor;
}
.page_infos_pratiques .informations-repeater .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body {
  padding: 1rem 2rem;
  border-top: 1px solid #e0e0e0;
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details {
  margin: 0;
  /* Styles pour le contenu WYSIWYG */
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details p:last-child {
  margin-bottom: 0;
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details ul,
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details ol {
  margin: 1rem 0;
  padding-left: 1rem;
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details ul li,
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details ol li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}
.page_infos_pratiques .informations-repeater .accordion-content .accordion-body .details img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}
.page_infos_pratiques .informations-repeater .accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}
.page_infos_pratiques .informations-repeater .accordion-chevron {
  transition: transform 0.3s ease-in-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page_infos_pratiques .informations-repeater .accordion-content.active .accordion-body {
  animation: slideDown 0.3s ease-out;
}
.page_infos_pratiques .informations-group-icon {
  margin-top: 1rem;
}
.page_infos_pratiques .informations-group-icon .accordion-item {
  display: flex;
}
.page_infos_pratiques .informations-group-icon .accordion-content {
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
}
.page_infos_pratiques .informations-group-icon .icon-wrapper {
  min-width: 60px;
  padding-right: 1rem;
}
.page_infos_pratiques .informations-group-icon .icon-wrapper img {
  width: 100%;
}
.page_infos_pratiques .informations-group-icon .information-item {
  padding: 1rem 2rem;
}
.faq {
  background-color: #F1F1F1;
}
.page_faq {
  padding-block: 3rem;
}
.page_faq .section_infos {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.page_faq .section_infos .acf_paragraph {
  width: 100%;
}
.page_faq .section_infos .wrapper_accordion {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}
.page_faq .section_infos .wrapper_accordion .accordion-item {
  background-color: #fff;
}
.page_faq .section_infos .wrapper_accordion .informations-group-icon {
  padding-top: 1rem;
  position: relative;
}
.page_faq .section_infos .wrapper_accordion .informations-group-icon .icon-wrapper {
  position: absolute;
  left: -10px;
  top: 1rem;
  transform: translateX(-100%);
  width: 70px;
}
.page_faq .section_infos .wrapper_accordion .informations-group-icon .icon-wrapper img {
  width: 100%;
}
.page_faq .section_infos .wrapper_accordion .informations-group-icon .accordion-title {
  font-weight: 700;
}
.page_faq .section_infos .wrapper_accordion .informations-group-icon .accordion-header,
.page_faq .section_infos .wrapper_accordion .informations-group-icon .accordion-content {
  padding: 1rem;
}
.page_faq .informations-repeater.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page_faq .informations-repeater .information-item {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page_faq .informations-repeater .information-item.active .accordion-header .accordion-chevron {
  transform: rotate(180deg);
}
.page_faq .informations-repeater .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page_faq .informations-repeater .accordion-header:focus {
  /* outline: 2px solid #007cba;
        outline-offset: -2px;*/
}
.page_faq .informations-repeater .accordion-header .accordion-title {
  margin: 0;
  flex-grow: 1;
  padding: 0.5rem 1rem;
}
.page_faq .informations-repeater .accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.page_faq .informations-repeater .accordion-icon .accordion-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: currentColor;
}
.page_faq .informations-repeater .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page_faq .informations-repeater .accordion-content .accordion-body {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page_faq .informations-repeater .accordion-content .accordion-body .details {
  margin: 0;
}
.page_faq .informations-repeater .accordion-content .accordion-body .details p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.page_faq .informations-repeater .accordion-content .accordion-body .details p:last-child {
  margin-bottom: 0;
}
.page_faq .informations-repeater .accordion-content .accordion-body .details ul,
.page_faq .informations-repeater .accordion-content .accordion-body .details ol {
  margin: 1rem 0;
  padding-left: 1rem;
}
.page_faq .informations-repeater .accordion-content .accordion-body .details ul li,
.page_faq .informations-repeater .accordion-content .accordion-body .details ol li {
  list-style-type: disc;
}
.page_faq .informations-repeater .accordion-content .accordion-body .details img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page_faq .informations-repeater .accordion-content.active .accordion-body {
  animation: slideDown 0.3s ease-out;
}
.page-template-template-agenda {
  /* CTA avec animation */
  /* Le conteneur principal des résultats */
  /* Un bloc contenant 3 événements */
  /* La colonne qui contient 2 cartes de style A */
  /* La colonne qui contient 1 carte de style B */
  /* Les cartes de style F (pleine largeur) */
  /* Le HTML ne les met pas dans un .event-block, donc elles prendront la largeur par défaut */
  /* Ajoutez ici vos styles spécifiques pour les cartes A, B et F */
}
.page-template-template-agenda main {
  background-color: #F1F1F1;
}
.page-template-template-agenda footer {
  background-color: #F1F1F1;
}
.page-template-template-agenda .agenda-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.page-template-template-agenda .agenda-filters .filter-datepicker {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
}
.page-template-template-agenda .agenda-filters .filter-datepicker-inner {
  position: relative;
}
.page-template-template-agenda .filter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* --- Dropdown Personnalisé (pour mobile) --- */
}
.page-template-template-agenda .filter-categories .custom-select-wrapper {
  position: relative;
  width: 92vw;
  display: block;
  --select-border-color: #ccc;
  --select-background-color: #fff;
  --select-text-color: #000;
  --select-arrow-color: #555;
  --option-hover-bg: #f0f0f0;
}
.page-template-template-agenda .filter-categories .custom-select-wrapper .custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: var(--select-background-color);
  cursor: pointer;
  font-size: 21px;
  color: var(--select-text-color);
  transition: border-color 0.2s;
  font-weight: 600;
}
.page-template-template-agenda .filter-categories .custom-select-arrow {
  transition: transform 0.3s ease;
  stroke: var(--select-arrow-color);
}
.page-template-template-agenda .filter-categories .is-open .custom-select-arrow {
  transform: rotate(180deg);
}
.page-template-template-agenda .filter-categories .custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 101;
  /* Doit être au-dessus du datepicker si besoin */
  background-color: var(--select-background-color);
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  /* Gère l'animation d'apparition */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
}
.page-template-template-agenda .filter-categories .is-open .custom-select-options {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.page-template-template-agenda .filter-categories .custom-select-option {
  display: block;
  width: 100%;
  padding: 12px 15px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 21px;
  font-weight: 600;
  margin-right: 0;
}
.page-template-template-agenda .filter-categories .custom-select-option:hover {
  background-color: var(--option-hover-bg);
}
.page-template-template-agenda .filter-categories .custom-select-option.selected {
  font-weight: 700;
  background-color: #85D0F3;
}
.page-template-template-agenda .filter-categories button {
  font-weight: 600;
  background: none;
  padding: 8px 16px;
  margin-right: 10px;
  cursor: pointer;
  color: #000;
  letter-spacing: -0.04em;
}
.page-template-template-agenda .filter-categories button.active,
.page-template-template-agenda .filter-categories button:hover {
  border-bottom: 3px solid #85D0F3;
}
.page-template-template-agenda .event-info {
  display: flex;
  flex-direction: column;
  padding: 40px;
  justify-content: center;
  gap: 30px;
  flex: 1 0 0;
  align-self: stretch;
}
.page-template-template-agenda .event-info .event-hot-topic {
  font-weight: 600;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-align: right;
}
.page-template-template-agenda .event-info-headings {
  width: 100%;
}
.page-template-template-agenda .event-info-headings .event-category {
  display: flex;
  width: 100%;
  gap: 7px;
}
.page-template-template-agenda .event-info-headings .event-category__txt {
  display: flex;
  background-color: #000;
  padding: 2px 8px;
  color: #fff;
  font-size: 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.page-template-template-agenda .event-info-headings .event-category__line {
  border-bottom: 1px solid #000;
  width: 100%;
}
.page-template-template-agenda .event-info-headings .event-dates {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 400;
  line-height: 110%;
  font-family: "Barlow Condensed", sans-serif;
}
.page-template-template-agenda .event-info-headings .event-title {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.page-template-template-agenda .event-info .event-excerpt p {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 4.2em;
}
.page-template-template-agenda .agenda-container #breadcrumbs {
  padding: 25px 4vw 50px;
}
.page-template-template-agenda .event-card {
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.page-template-template-agenda .event-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}
.page-template-template-agenda .event-card .arch-shape {
  min-width: 45%;
}
.page-template-template-agenda .event-card .animate_arch .image-container {
  aspect-ratio: 477 / 592;
}
.page-template-template-agenda .cta-discover {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.page-template-template-agenda .cta-discover-svg {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1;
}
.page-template-template-agenda .cta-discover-svg::before {
  content: url("img/plus_black.svg");
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  transition: transform 0.3s ease-in-out;
}
.page-template-template-agenda .cta-discover-svg:hover::before {
  transform: rotate(90deg);
  transform-origin: center;
}
.page-template-template-agenda .ajax-results-container {
  margin-top: 60px;
  margin-bottom: 60px;
}
.page-template-template-agenda .ajax-results-container .event-block:nth-child(even) {
  direction: rtl;
}
.page-template-template-agenda .ajax-results-container .event-block:nth-child(even) * {
  direction: ltr;
}
.page-template-template-agenda #ajax-results-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  /* Espace vertical entre les blocs de 3 et/ou les cartes F */
}
.page-template-template-agenda .event-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Deux colonnes égales */
  gap: 30px;
  /* Espace entre les colonnes */
}
.page-template-template-agenda .block-col-a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  /* Espace entre les deux cartes A */
}
.page-template-template-agenda .block-col-b .event-card {
  height: 100%;
  /* La carte B prend toute la hauteur de la colonne */
}
.page-template-template-agenda .card-style-f {
  width: 100%;
}
.page-template-template-agenda .event-card.card-style-a {
  /* Style pour les cartes A */
  background-color: #fff;
}
.page-template-template-agenda .event-card.card-style-a .event-info {
  padding: 30px;
}
.page-template-template-agenda .event-card.card-style-a .event-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.page-template-template-agenda .event-card.card-style-a .event-image-wrapper {
  width: 39%;
}
.page-template-template-agenda .event-card.card-style-a .event-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-template-template-agenda .event-card.card-style-b {
  /* Style pour la carte B (plus grande) */
  background-color: #fff;
}
.page-template-template-agenda .event-card.card-style-b .event-card-inner {
  flex-direction: column;
}
.page-template-template-agenda .event-card.card-style-b .event-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  max-height: 390px;
}
.page-template-template-agenda .event-card.card-style-b .event-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
  aspect-ratio: 1.5;
}
.page-template-template-agenda .event-card.card-style-f {
  /* Style pour les cartes F (pleine largeur) */
  background-color: #fff;
}
.page-template-template-agenda .event-card.card-style-f .event-image-wrapper {
  width: 45%;
}
.page-template-template-agenda .event-card.card-style-f .event-image-wrapper img {
  display: block;
}
.load-more-container {
  display: flex;
  justify-content: center;
}
.load-more-container #load-more-btn {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  rotate: 90deg;
}
.page_contact .gform_wrapper {
  padding-block-start: 1rem !important;
}
.page_contact .gform_footer {
  display: flex;
  justify-content: center;
}
.page_contact .gform_button,
.page_contact .button {
  border-radius: 50px !important;
  color: #000 !important;
  border: rgba(33, 33, 33, 0.2) 1px solid !important;
  font-size: 16px !important;
  padding-inline: 2.5rem !important;
  font-weight: 600 !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  background-color: inherit !important;
}
.page_contact .gform_button :root,
.page_contact .button :root {
  --angle: 330deg;
}
@property --angle {
  syntax: "<angle>";
  initial-value: -30deg;
  inherits: false;
}
@keyframes rotate {
  to {
    --angle: 330deg;
  }
}
.page_contact .gform_button:hover,
.page_contact .button:hover {
  animation: rotate 0.5s linear 1 !important;
  background-image: linear-gradient(to right, #ffffff, #ffffff), conic-gradient(from var(--angle), #85D0F3 0deg, #85D0F3 60deg, #85D0F3 120deg, #127fb2 180deg, #127fb2 240deg, #127fb2 300deg, #85D0F3 360deg) !important;
  border: solid 1px transparent !important;
}
.page_contact .gfield_label {
  font-size: 16px !important;
}
.page_contact .gform_confirmation_message {
  font-weight: 700;
  text-align: center;
  margin-block: 2rem;
}
.visite {
  background-color: #F1F1F1;
}
.page_visite .wrapper_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page_visite .wrapper_cards .card {
  padding: 1rem;
  min-width: 300px;
  width: 33.33%;
  max-width: 395px;
  display: flex;
  flex-direction: column;
}
.page_visite .wrapper_cards .card:hover .animate_arch .image-container svg {
  top: 0;
}
.page_visite .wrapper_cards .card .animate_arch .image-container {
  aspect-ratio: 1;
}
.page_visite .wrapper_cards .card .animate_arch .image-container svg {
  fill: #85D0F3;
}
.page_visite .wrapper_cards .card .infos {
  flex: 1;
  background-color: #85D0F3;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.page_visite .wrapper_cards .card .infos .wrapper_link_unik {
  padding-block-end: 1rem;
}
.page_visite .wrapper_cards .card .infos .title {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 43px;
  font-weight: 700;
  line-height: 0.9em;
  padding-block-end: 1rem;
}
.page_visite .wrapper_cards .card .infos ul {
  padding: 0 0 0 2rem;
}
.page_visite .wrapper_cards .card .infos ul li {
  list-style-type: none;
}
.page_visite .wrapper_cards .card .infos li a {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  margin-block-end: 0.5rem;
  display: block;
}
.page_visite .wrapper_cards .card .infos li a::before {
  content: '';
  background-image: url('img/arrow_black.svg');
  position: absolute;
  transform: translate(-50%, -50%);
  left: -1.75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s ease;
}
.page_visite .wrapper_cards .card .infos li a:hover::before {
  left: -1.25rem;
}
.cross_content_gut {
  background-color: #F1F1F1;
  padding-block-end: 3.5rem;
}
.cross_content_gut .description {
  font-weight: 700;
}
.cross_content_gut .evenements-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem;
  padding-block: 2rem;
}
.cross_content_gut .evenements-list .evenement-item {
  background-color: #fff;
  padding: 1rem;
  min-width: 300px;
  width: 30%;
  max-width: 395px;
  display: flex;
  flex-direction: column;
}
.cross_content_gut .evenements-list .evenement-item .evenement-content {
  flex: 1;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cross_content_gut .evenements-list .evenement-item .event-type {
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9em;
  font-family: "Barlow Condensed", sans-serif;
  border-bottom: 1px #000 solid;
}
.cross_content_gut .evenements-list .evenement-item .event-type span {
  color: #fff;
  background-color: #000;
  padding: 0.2rem 0.3rem;
  display: inline-block;
}
.cross_content_gut .evenements-list .evenement-item .date {
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
}
.cross_content_gut .evenements-list .evenement-item .title2 {
  line-height: 0.9em;
  padding: 0.5rem 0;
  color: #000;
}
.cross_content_gut .evenements-list .evenement-item .excerpt {
  padding-block: 1rem;
}
.wrapper_gut {
  padding-block: 3.5rem;
}
.wrapper_gut a {
  color: #85D0F3;
  text-decoration: underline;
}
.bg_blue {
  background-color: #85D0F3;
}
.page_recherche {
  padding-block: 3rem;
}
.page_recherche .custom-search-container {
  margin-block-end: 3rem;
}
.recherche #live-search-results {
  padding-block: 5rem;
}
.recherche .resultat-recherche {
  display: flex;
  margin-block: 1rem;
  flex-direction: column;
  justify-content: center;
  background: #85D0F3;
}
.recherche .resultat-recherche .animate_arch {
  width: 100%;
}
.recherche .resultat-recherche .animate_arch .image-container {
  aspect-ratio: 240 / 350;
}
.recherche .resultat-recherche .animate_arch .image-container svg {
  fill: #85D0F3;
}
.recherche .resultat-recherche .resultat-contenu {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.recherche .resultat-recherche .resultat-contenu .event-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.recherche .resultat-recherche .resultat-contenu h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 43px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9em;
  margin-bottom: 1rem;
  color: #000;
}
.recherche .resultat-recherche:hover .animate_arch .image-container svg {
  top: 0;
}
.recherche .resultat-recherche:hover .cta_cross span {
  padding-left: 1.3rem;
}
.recherche .resultat-recherche:hover .cta_cross svg {
  transform: rotate(180deg);
}
/* * STYLE POUR LA BARRE DE RECHERCHE PERSONNALISÉE
 */
.custom-search-container label {
  flex-grow: 1;
  max-width: 180px;
}
.custom-search-container form.search-form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0;
  padding: 5px 10px;
  border: 1px solid #ddd;
}
.custom-search-container input.search-field {
  border: none;
  background: transparent;
  outline: none;
  flex-grow: 1;
  padding: 10px 0;
}
.custom-search-container input.search-field::-moz-placeholder {
  color: #888;
  opacity: 1;
}
.custom-search-container input.search-field::placeholder {
  color: #888;
  opacity: 1;
}
.custom-search-container input.search-submit {
  border: none;
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.custom-search-container input.search-submit:hover {
  transform: translateX(3px);
}
.single-musee_event .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-musee_event .content-image {
  width: 100%;
}
.single-musee_event .content-image .animate_arch {
  width: 100%;
  max-width: 400px;
}
.single-musee_event .content-image .animate_arch .image-container {
  aspect-ratio: 240 / 350;
}
.single-musee_event .content-image .animate_arch .image-container svg {
  fill: #fff;
}
.single-musee_event .content-text {
  width: 100%;
  padding: 0 4vw;
}
.single-musee_event .content-text__title {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.single-musee_event .content-text__dates {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  padding-top: 12px;
}
.single-musee_event .content-text__description {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-musee_event .content-text__conditions {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 12px;
}
.single-exposition .content-wrapper {
  display: flex;
  flex-direction: column;
}
.single-exposition .content-image {
  width: 300px;
}
.single-exposition .content-image .animate_arch {
  width: 100%;
  max-width: 400px;
}
.single-exposition .content-image .animate_arch .image-container {
  aspect-ratio: 240 / 350;
}
.single-exposition .content-image .animate_arch .image-container svg {
  fill: #fff;
}
.single-exposition .content-text {
  width: 100%;
  padding: 0 4vw;
}
.single-exposition .content-text__title {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.single-exposition .content-text__dates {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  padding-top: 12px;
}
.single-exposition .content-text__description {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-exposition .content-text__conditions {
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 12px;
}
.page-template-template-exposition .expositions-container #breadcrumbs {
  padding: 25px 4vw 50px;
}
.page-template-template-exposition .expositions-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.page-template-template-exposition .filter-timing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* --- Dropdown Personnalisé (pour mobile) --- */
}
.page-template-template-exposition .filter-timing .custom-select-wrapper {
  position: relative;
  width: 92vw;
  display: block;
  --select-border-color: #ccc;
  --select-background-color: #fff;
  --select-text-color: #000;
  --select-arrow-color: #555;
  --option-hover-bg: #f0f0f0;
}
.page-template-template-exposition .filter-timing .custom-select-wrapper .custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: var(--select-background-color);
  cursor: pointer;
  font-size: 21px;
  color: var(--select-text-color);
  transition: border-color 0.2s;
  font-weight: 600;
}
.page-template-template-exposition .filter-timing .custom-select-arrow {
  transition: transform 0.3s ease;
  stroke: var(--select-arrow-color);
}
.page-template-template-exposition .filter-timing .is-open .custom-select-arrow {
  transform: rotate(180deg);
}
.page-template-template-exposition .filter-timing .custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 101;
  /* Doit être au-dessus du datepicker si besoin */
  background-color: var(--select-background-color);
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  /* Gère l'animation d'apparition */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
}
.page-template-template-exposition .filter-timing .is-open .custom-select-options {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.page-template-template-exposition .filter-timing .custom-select-option {
  display: block;
  width: 100%;
  padding: 12px 15px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 21px;
  font-weight: 600;
  margin-right: 0;
}
.page-template-template-exposition .filter-timing .custom-select-option:hover {
  background-color: var(--option-hover-bg);
}
.page-template-template-exposition .filter-timing .custom-select-option.selected {
  font-weight: 700;
  background-color: #85D0F3;
}
.page-template-template-exposition .filter-timing button {
  font-weight: 600;
  background: none;
  padding: 8px 16px;
  margin-right: 10px;
  cursor: pointer;
  color: #000;
  letter-spacing: -0.04em;
}
.page-template-template-exposition .filter-timing button.active,
.page-template-template-exposition .filter-timing button:hover {
  border-bottom: 3px solid #85D0F3;
}
.page-template-template-exposition .events-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.page-template-template-exposition .exhibition-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.page-template-template-exposition .exhibition-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}
.page-template-template-exposition .exhibition-card .arch-shape {
  min-width: 22%;
}
.page-template-template-exposition .exhibition-card .animate_arch .image-container {
  aspect-ratio: 258 / 350;
  max-height: unset;
}
.page-template-template-exposition .exhibition-card .event-info {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  padding-right: 40px;
  justify-content: center;
  gap: 30px;
  flex: 1 0 0;
  align-self: stretch;
}
.page-template-template-exposition .exhibition-card .event-info-headings {
  width: 100%;
}
.page-template-template-exposition .exhibition-card .event-info-headings .event-dates {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 400;
  line-height: 110%;
  font-family: "Barlow Condensed", sans-serif;
}
.page-template-template-exposition .exhibition-card .event-info-headings .event-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
.page-template-template-exposition .exhibition-card .event-info .event-excerpt p {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 4.2em;
}
.page-template-template-exposition .cta-discover {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.page-template-template-exposition .cta-discover-svg {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1;
}
.page-template-template-exposition .cta-discover-svg::before {
  content: url("img/plus_black.svg");
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  transition: transform 0.3s ease-in-out;
}
.page-template-template-exposition .cta-discover-svg:hover::before {
  transform: rotate(90deg);
  transform-origin: center;
}
.page-template-template-exposition .cta-discover-svg.white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(231deg) brightness(106%) contrast(101%);
}
.page_hisory {
  /* --- Mise en page générale --- */
  /* --- Frise à gauche (Desktop) --- */
  /* --- La Courbe (SVG) --- */
  /* --- Contenu à droite --- */
  /* Date importante avec fond bleu */
  /* Alternance des images */
  /* --- Mobile --- */
}
.page_hisory .legend-history {
  padding-block-start: 2rem;
  display: flex;
  justify-content: center;
}
.page_hisory .legend-history .item {
  display: flex;
  align-items: center;
  padding: 1rem;
}
.page_hisory .legend-history .item img {
  max-width: 60px;
}
.page_hisory .legend-history .item p {
  padding-inline-start: 1rem;
}
.page_hisory .histoire-container {
  display: flex;
  gap: 3rem;
  /* Espace entre la frise et le contenu */
}
.page_hisory .frise-chronologique {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  padding-left: 30px;
}
.page_hisory .frise-chronologique nav {
  max-width: 241px;
}
.page_hisory .frise-chronologique ul {
  list-style: none;
  margin: 0;
  position: relative;
  /* Contexte de positionnement pour la ligne verticale */
  /* On démarre la liste APRES la courbe */
  padding-top: 22px;
  padding-left: 20px;
  /* Espace pour les points et la ligne */
}
.page_hisory .frise-chronologique ul::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #85D0F3;
  /* On s'assure que la ligne commence au bon endroit verticalement */
  transform: translateY(-5px);
  /* Petit ajustement pour une connexion parfaite avec la courbe */
}
.page_hisory .frise-chronologique li {
  position: relative;
  /* Contexte de positionnement pour les points */
  padding-bottom: 20px;
  /* Espace entre les dates */
}
.page_hisory .frise-chronologique li::before {
  content: '';
  position: absolute;
  top: 2.25em;
  /* Centre verticalement par rapport à la hauteur du texte */
  left: -20px;
  /* Aligné sur la ligne verticale (qui est à la gauche de l'ul) */
  /* Dimensions du point */
  width: 28px;
  height: 28px;
  /* Style du point */
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #85D0F3;
  /* Bordure blanche pour le contraste */
  /* Centrage parfait du cercle sur la ligne verticale */
  transform: translate(-50%, -50%);
}
.page_hisory .frise-courbe {
  width: 241px;
  height: 160px;
}
.page_hisory .frise-courbe svg {
  width: 100%;
  height: 100%;
}
.page_hisory .frise-chronologique a {
  display: block;
  padding: 0.5rem;
}
.page_hisory .frise-chronologique a:hover {
  color: #85D0F3;
}
.page_hisory .histoire-content {
  flex-grow: 1;
  /* Le contenu prend le reste de la place */
}
.page_hisory .histoire-text {
  margin-bottom: 50px;
}
.page_hisory .evenement-historique {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}
.page_hisory .evenement-historique.date-importante {
  background-color: #85D0F3;
}
.page_hisory .evenement-year {
  font-size: 2.5em;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.page_hisory .evenement-titre {
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s;
}
.page_hisory .evenement-details {
  flex: 1;
  padding: 20px;
}
.page_hisory .evenement-details .evenement-header {
  display: flex;
  font-weight: bold;
  line-height: 1;
  align-items: flex-end;
  gap: 7px;
  align-self: stretch;
  margin-bottom: 12px;
}
.page_hisory .evenement-details .evenement-header .evenement-separator {
  display: flex;
  padding-bottom: 6px;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}
.page_hisory .evenement-details .evenement-header .evenement-separator span {
  width: 100%;
  height: 2px;
  background-color: black;
}
.page_hisory .evenement-visuel {
  max-width: 240px;
  margin: 0;
}
.page_hisory .evenement-visuel img {
  aspect-ratio: 24/30;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_hisory .evenement-historique.image-a-gauche {
  flex-direction: row-reverse;
}
.page_hisory .evenement-historique.image-a-gauche .evenement-visuel {
  border-radius: 0 40px 0 0;
  overflow: hidden;
}
.page_hisory .evenement-historique.image-a-droite {
  flex-direction: row;
}
.page_hisory .evenement-historique.image-a-droite .evenement-visuel {
  border-radius: 0 0 0 40px;
  overflow: hidden;
}
/* --- Style pour la page Nos Incontournables --- */
.incontournables-intro {
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  line-height: 1.6;
}
.incontournables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 colonnes sur desktop */
  gap: 20px;
  /* Espace entre les images */
  padding: 20px 0;
}
.artwork-item-incontournable img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3 / 4;
  /* Donne un ratio vertical aux images */
}
.artwork-item-incontournable a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.artwork-item-incontournable .artwork-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  font-size: 0.9em;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.artwork-item-incontournable a:hover .artwork-caption,
.artwork-item-incontournable a:focus .artwork-caption {
  transform: translateY(0);
}
/* --- Responsive --- */
/* Pour les tablettes */
/* Pour les mobiles */
/* Style par défaut (thème clair) */
.site-main {
  background-color: #fff;
  color: #000;
  /* Couleur du texte par défaut */
  transition: background-color 0.3s ease, color 0.3s ease;
}
.site-main .entry-title,
.site-main .incontournables-intro {
  color: #000;
  /* Texte noir pour le titre et l'intro */
}
/* Styles pour le thème sombre, activés par la classe .dark-theme */
.site-main.dark-theme {
  background-color: #000;
  color: #fff;
  /* Couleur du texte par défaut en thème sombre */
  padding-bottom: 122px;
}
.site-main.dark-theme .entry-title,
.site-main.dark-theme .incontournables-intro {
  color: #fff;
  /* Texte blanc pour le titre et l'intro */
}
/* HERE PUT HELPERS CSS */
@media screen and (min-width: 320px) and (max-width: 1920px) {
  .fs-120,
  .block-hero__categorie .block-title,
  .block-hero:not(.hero-exposition) .block-title,
  .s-agenda h2,
  .s-collection h2,
  .s-newsletter__title {
    font-size: calc(64px + (120 - 64) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-88,
  .page-template-template-agenda .event-info .event-hot-topic {
    font-size: calc(60px + (88 - 60) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-82 {
    font-size: calc(58px + (82 - 58) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-82-expo,
  .hero-exposition .block-title h1,
  .home .s-expo .expo-content h3 {
    font-size: calc(30px + (72 - 30) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-60-expo,
  .home .s-expo .expo-status {
    font-size: calc(30px + (60 - 30) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-60,
  .home .s-profil__text h2,
  .page_hisory .evenement-details .evenement-header {
    font-size: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-43,
  .title2,
  .s-agenda .event-title {
    font-size: calc(28px + (43 - 28) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-37,
  .home .s-hero h1.spe_h1,
  .home .s-manufacture__content h3 {
    font-size: calc(24px + (37 - 24) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-37-expo,
  .home .s-expo .expo-date-begin,
  .home .s-expo .expo-date-end {
    font-size: calc(20px + (37 - 20) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-30,
  .s-agenda .event-date,
  .s-newsletter__description,
  .s-newsletter #sib_signup_form_1 .sib-email-area,
  .cross_content_gut .evenements-list .evenement-item .date {
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-32,
  .s-agenda .agenda-image-wrapper .event-type,
  .cross_content_gut .evenements-list .evenement-item .event-type,
  .single-musee_event .content-text__conditions {
    font-size: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-25,
  .home .s-manufacture__content p,
  .page-template-template-agenda .filter-categories button,
  .page-template-template-exposition .filter-timing button {
    font-size: calc(16px + (25 - 16) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-21,
  .header .ticket-menu,
  .page_contact .gform_confirmation_message,
  .cross_content_gut .description {
    font-size: calc(14px + (21 - 14) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-18,
  .page_visite .wrapper_cards .card .infos li a {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  }
  .fs-16,
  p,
  ul li,
  .home .s-profil__text p,
  .home .s-profil__content__button,
  .page_hisory .evenement-titre {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  }
}
@media screen and (min-width: 411px) {
  .wrap,
  .grid {
    padding: 0 30px;
  }
}
@media screen and (min-width: 414px) {
  .recherche .resultat-recherche {
    flex-direction: row;
  }
  .recherche .resultat-recherche .animate_arch {
    max-width: 260px;
  }
}
@media screen and (min-width: 768px) {
  body::after {
    content: 'tablet';
  }
  .wrap,
  .grid {
    padding: 0 4vw;
    max-width: calc(1420px + 8vw);
  }
  .wrap--sm,
  .grid--sm {
    max-width: calc(1080px + 8vw);
  }
  .wrap--lg,
  .grid--lg {
    max-width: calc(1650px + 8vw);
  }
  .header .responsive-menu {
    top: 154px;
  }
  .header .responsive-menu__menu .menu-item.submenu-open > .sub-menu > .colonne1 {
    padding-top: 0;
  }
  .header .responsive-menu__menu .menu-item.submenu-open > .sub-menu > .colonne2 {
    padding-top: 0;
  }
  .header.scrolled .responsive-menu.open {
    top: 120px;
    height: calc(100vh - 120px);
  }
  .header__logo {
    gap: 20px;
    width: 100%;
  }
  .header__search {
    width: 27px;
    height: 27px;
  }
  .header .ticket-menu {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 20px;
  }
  .header .mega-menu:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .header .mega-menu > .sub-menu {
    flex-direction: row;
    min-width: 600px;
    transform: translateX(350px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: transform 0.3s ease-in-out;
  }
  .header .last_item_menu > .sub-menu {
    min-width: 290px;
  }
  .header .opening-hours-widget {
    gap: 12px;
    align-items: flex-end;
  }
  .header .opening-hours-widget .icon-container {
    width: 40px;
    height: 40px;
  }
  .header .opening-hours-widget .status-dot {
    width: 12px;
    height: 12px;
  }
  .header .opening-hours-widget .text-container {
    flex-direction: column;
  }
  .header .opening-hours-widget .line2 .nbsp {
    display: none;
  }
  .footer__container {
    flex-direction: row;
    gap: unset;
  }
  .footer__inner-wrap {
    padding-top: 90px;
    padding-bottom: 110px;
  }
  .footer__sponsors {
    gap: 80px;
    padding: 70px 0;
  }
  .home .s-hero h1.spe_h1 {
    text-align: left;
  }
  .home .s-hero__container {
    display: initial;
    right: 20vw;
    top: 55%;
    transform: translateY(-50%);
    bottom: 0;
  }
  .home .s-hero__container .show {
    display: block;
  }
  .home .s-expo .expo-image {
    position: absolute;
    top: -77px;
    width: 65vw;
    height: calc(100% + 77px);
  }
  .home .s-expo .expo-item {
    position: sticky;
    height: calc(100vh - 122px);
    top: 122px;
    overflow: hidden;
  }
  .home .s-expo .expo-item:nth-child(1) .expo-image {
    border-radius: 397px 0 0 0;
    right: 0;
    left: auto;
    z-index: 1;
    height: calc(100% + 77px);
    width: 65vw;
    top: -77px;
    transform: none;
    aspect-ratio: unset;
  }
  .home .s-expo .expo-item:nth-child(1) .expo-meta {
    right: auto;
    left: 4vw;
    width: auto;
    text-align: left;
    transform: none;
  }
  .home .s-expo .expo-item:nth-child(1) .expo-content {
    left: 17vw;
    right: auto;
  }
  .home .s-expo .expo-item:nth-child(2) .expo-image {
    aspect-ratio: unset;
  }
  .home .s-expo .expo-item:nth-child(3) .expo-image {
    aspect-ratio: unset;
    height: calc(100% + 77px);
    width: 65vw;
  }
  .home .s-expo .expo-meta {
    position: absolute;
    top: 57px;
    color: #fff;
    z-index: 2;
  }
  .home .s-expo .expo-content {
    position: absolute;
    z-index: 2;
    color: #fff;
    width: 676px;
    top: 60%;
    transform: translateY(-50%);
  }
  .home .s-expo .expo-status {
    padding-top: 0;
  }
  .home .s-expo .expo-date {
    flex-direction: column;
    padding-top: 0;
  }
  .home .s-expo .expo-date-end {
    padding-left: 50px;
  }
  .home .s-expo .expo-date-end::before {
    width: 40px;
    height: 3px;
  }
  .home .s-manufacture__container {
    flex-direction: row;
  }
  .home .s-manufacture__left {
    width: 50%;
  }
  .home .s-manufacture__right {
    width: 50%;
  }
  .home .s-manufacture__content h3 {
    margin-top: calc((190/287) * 85px * 0.5);
  }
  .s-newsletter__inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .page_infos_pratiques .section_infos {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-template-template-agenda .event-card-inner {
    flex-direction: row;
  }
  .page-template-template-exposition .exhibition-card {
    height: 350px;
  }
  .page-template-template-exposition .exhibition-card-inner {
    flex-direction: row;
  }
  .page-template-template-exposition .exhibition-card .animate_arch .image-container {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  .page-template-template-agenda .filter-categories .custom-select-wrapper {
    display: none;
  }
  .single-musee_event .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
  .single-musee_event .content-image {
    width: 400px;
  }
  .single-musee_event .content-text {
    width: calc(100% - 400px);
    padding: 0 60px;
  }
  .single-exposition .content-wrapper {
    flex-direction: row;
  }
  .single-exposition .content-image {
    width: 400px;
  }
  .single-exposition .content-text {
    width: calc(100% - 400px);
    padding: 0 60px;
  }
  .page-template-template-exposition .filter-timing .custom-select-wrapper {
    display: none;
  }
}
@media (min-width: 992px) {
  .page_hisory .evenement-historique {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1025px) {
  body::after {
    content: 'desktop';
  }
  .header .responsive-menu {
    height: 0;
  }
  .header__logo {
    max-width: 30vw;
  }
  .header__logo__content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .header__logo__content .options-mobile {
    display: none;
  }
  .header__content {
    display: flex;
    justify-content: space-evenly;
  }
  .header__menu {
    gap: 2rem;
  }
  .header .mega-menu::after {
    content: "";
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 0;
    height: 3px;
    background-color: #85D0F3;
    transition: width 0.3s ease-in-out;
  }
  .header .mega-menu > .sub-menu {
    display: flex;
    gap: 2rem;
    padding: 60px 23px 23px 23px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  }
}
@media screen and (min-width: 1281px) {
  .header__logo {
    width: auto;
  }
  .header__menu {
    gap: 3rem;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .header__menu {
    gap: 5rem;
  }
  .header .last_item_menu > .sub-menu {
    min-width: 400px;
  }
}
@media screen and (min-width: 1920px) {
  .header .last_item_menu > .sub-menu {
    min-width: 425px;
  }
  .fs-120,
  .block-hero__categorie .block-title,
  .block-hero:not(.hero-exposition) .block-title,
  .s-agenda h2,
  .s-collection h2,
  .s-newsletter__title {
    font-size: 120px;
  }
  .fs-88,
  .page-template-template-agenda .event-info .event-hot-topic {
    font-size: 88px;
  }
  .fs-82 {
    font-size: 82px;
  }
  .fs-82-expo,
  .hero-exposition .block-title h1,
  .home .s-expo .expo-content h3 {
    font-size: 72px;
  }
  .fs-60-expo,
  .home .s-expo .expo-status {
    font-size: 60px;
  }
  .fs-60,
  .home .s-profil__text h2,
  .page_hisory .evenement-details .evenement-header {
    font-size: 60px;
  }
  .fs-43,
  .title2,
  .s-agenda .event-title {
    font-size: 43px;
  }
  .fs-37,
  .home .s-hero h1.spe_h1,
  .home .s-manufacture__content h3 {
    font-size: 37px;
  }
  .fs-37-expo,
  .home .s-expo .expo-date-begin,
  .home .s-expo .expo-date-end {
    font-size: 37px;
  }
  .fs-30,
  .s-agenda .event-date,
  .s-newsletter__description,
  .s-newsletter #sib_signup_form_1 .sib-email-area,
  .cross_content_gut .evenements-list .evenement-item .date {
    font-size: 30px;
  }
  .fs-32,
  .s-agenda .agenda-image-wrapper .event-type,
  .cross_content_gut .evenements-list .evenement-item .event-type,
  .single-musee_event .content-text__conditions {
    font-size: 32px;
  }
  .fs-25,
  .home .s-manufacture__content p,
  .page-template-template-agenda .filter-categories button,
  .page-template-template-exposition .filter-timing button {
    font-size: 25px;
  }
  .fs-21,
  .header .ticket-menu,
  .page_contact .gform_confirmation_message,
  .cross_content_gut .description {
    font-size: 21px;
  }
  .fs-18,
  .page_visite .wrapper_cards .card .infos li a {
    font-size: 18px;
  }
  .fs-16,
  p,
  ul li,
  .home .s-profil__text p,
  .home .s-profil__content__button,
  .page_hisory .evenement-titre {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo .custom-logo-link {
    width: 60%;
  }
  .header .opening-hours-widget .line1 {
    font-size: 12px;
  }
  .header .opening-hours-widget .line2 {
    font-size: 12px;
    white-space: nowrap;
  }
  .page-template-template-agenda .agenda-filters .filter-datepicker {
    display: none;
  }
  .page-template-template-agenda .event-info {
    padding: 30px 4vw;
  }
  .page-template-template-agenda .agenda-container {
    padding-inline: 0;
  }
  .page-template-template-agenda .event-card .arch-shape {
    min-width: 100%;
  }
  .page-template-template-agenda .ajax-results-container {
    padding: 0 4vw;
  }
  .page-template-template-agenda .event-block {
    grid-template-columns: 1fr;
    /* Une seule colonne sur mobile */
  }
  .page-template-template-agenda .event-card.card-style-a .event-info {
    padding: 30px 4vw;
  }
  .page-template-template-agenda .event-card.card-style-a .event-image-wrapper {
    width: 100%;
  }
  .page-template-template-agenda .event-card.card-style-a .event-image-wrapper img {
    -o-object-position: top center;
       object-position: top center;
    aspect-ratio: 1.5;
  }
  .page-template-template-agenda .event-card.card-style-b .event-image-wrapper {
    width: 100%;
    aspect-ratio: 1.5;
  }
  .page-template-template-agenda .event-card.card-style-f .event-image-wrapper {
    width: 100%;
  }
  .page-template-template-agenda .event-card.card-style-f .event-image-wrapper img {
    -o-object-position: top center;
       object-position: top center;
    aspect-ratio: 1.5;
  }
  .page-template-template-exposition .expositions-container {
    padding-inline: 0;
  }
  .page-template-template-exposition .exhibition-card .arch-shape {
    min-width: 100%;
  }
  .page-template-template-exposition .exhibition-card .event-info {
    padding: 30px 4vw;
  }
}
@media screen and (max-width: 1025px) {
  .header__logo__content #burger {
    width: 30px;
    height: 3px;
    background-color: #000;
    position: relative;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .block-hero {
    min-height: 30vh;
  }
  .block-hero img {
    min-height: 30vh;
  }
  .block-hero__categorie {
    min-height: 30vh;
    height: 100%;
    width: 100%;
  }
  .block-hero__categorie .block-intro-visual {
    aspect-ratio: unset;
    height: 100%;
  }
  .s-services__card {
    flex: 1 1 100%;
    /* une carte par ligne */
  }
  .s-collection .wrapper_grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
  }
  .s-collection .artworks-grid {
    width: 1200px;
  }
  .page-template-template-agenda {
    /* On cache les boutons originaux */
  }
  .page-template-template-agenda .filter-categories > button[data-filter] {
    display: none;
  }
  .page-template-template-exposition {
    /* On cache les boutons originaux */
  }
  .page-template-template-exposition .filter-timing > button[data-filter] {
    display: none;
  }
}
@media (max-width: 992px) {
  .page_hisory .evenement-visuel {
    max-width: 100%;
  }
  .page_hisory .frise-chronologique {
    display: none;
    /* La frise disparaît en mobile */
  }
  .page_hisory .evenement-historique,
  .page_hisory .evenement-historique.image-a-gauche,
  .page_hisory .evenement-historique.image-a-droite {
    flex-direction: column-reverse;
  }
  .incontournables-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colonnes */
  }
}
@media (max-width: 576px) {
  .incontournables-grid {
    grid-template-columns: 1fr;
    /* 1 colonne */
  }
}

/*# sourceMappingURL=style.css.map */
