.elementor-2449 .elementor-element.elementor-element-fcc0c5b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-f0dd054 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-2449 .elementor-element.elementor-element-3a829f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-475c0bb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-e3d0bb4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-b485a45{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-5b4865b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-18967c9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2449 .elementor-element.elementor-element-fe0981a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2449 .elementor-element.elementor-element-bc70d48{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-f0dd054 *//* ════════════════════════════════════════════
   HERO — PAGE D'ACCUEIL
   Shortcode : [hero_aucoeurdeau]
   Widget Elementor : Section Hero (homepage)
════════════════════════════════════════════ */

/* ── Structure principale du hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Barre quick access (collée sous le hero) ── */
.quick-bar {
  width: 100%;
  position: relative;
  left: 0;
  margin-left: 0;
  margin-top: -2px;
}

/* ── Image de fond du hero ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── Overlay dégradé marine sur l'image ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0,45,65,0.82) 0%,
    rgba(0,45,65,0.65) 45%,
    rgba(0,45,65,0.10) 75%,
    transparent 100%
  );
}

/* ── Badge ouvert/fermé en haut à droite ── */
.hero-status {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,20,30,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 16px;
}

/* ── Point animé du statut ouvert (vert) ── */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 3px rgba(46,204,113,0.25);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,204,113,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0.08); }
}

/* ── Texte du badge statut ── */
.status-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.status-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.status-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
}

/* ── Variante fermé : point rouge ── */
.hero-status.is-closed .status-dot {
  background: #E74C3C;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.25);
}
.hero-status.is-closed .status-label {
  color: #FF6B6B;
}

/* ── Contenu principal (eyebrow, titre, intro, boutons) ── */
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px 50px 48px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ── Eyebrow avec ligne cyan ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #00AECC;
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00AECC;
  background: rgba(0,174,204,0.12);
  border: 1px solid rgba(0,174,204,0.3);
  padding: 6px 14px;
  border-radius: 3px;
}

/* ── Titre principal du hero ── */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7.5vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-title .line-white { color: #ffffff; display: block; }
.hero-title .line-cyan  { color: #00AECC; display: block; }

/* ── Texte d'introduction sous le titre ── */
.hero-lead {
  font-family: 'Open Sans', sans-serif;
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

/* ── Boutons CTA (Réserver + secondaire) ── */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-coral,
.btn-coral:hover,
.btn-coral:visited,
.btn-coral:focus {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 15px 30px !important;
  background: #F2611A !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 0px !important;
  border: 2px solid #F2611A !important;
  letter-spacing: .3px !important;
  line-height: 1 !important;
}

.btn-coral:hover {
  background: #d4510f !important;
  border-color: #d4510f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(242,97,26,0.4) !important;
}

/* ── Vague décorative en bas du hero ── */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
  margin-bottom: -2px;
}
.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Fixe le overflow horizontal global ── */
body {
  overflow-x: hidden;
}

/* ── Permet au header Elementor d'être positionné correctement ── */
.elementor-location-header {
  position: relative !important;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content { padding: 0 24px 50px 24px; }
  .hero-status  { top: 16px; right: 16px; }
}
@media (max-width: 560px) {
  .hero-content { padding: 80px 24px 50px 24px; }
  .hero-title   { font-size: 48px; }
  .hero-ctas    { flex-direction: column; align-items: flex-start; }
  .hero-eyebrow { margin-bottom: 16px; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-f3d6728 *//* ════════════════════════════════════════════
   QUICKBAR — PAGE D'ACCUEIL
   Shortcode : [quickbar_aucoeurdeau]
   Page      : Accueil (ID 5)
   Emplacement : Section collée sous le hero (margin-top: -2px)
   Rôle      : Barre 4 accès rapides Horaires / Tarifs / Plannings / Réserver
   Note      : width:100vw + left:50% + margin-left:-50vw permettent à la barre
               de sortir du conteneur Elementor et d'occuper toute la largeur
════════════════════════════════════════════ */

/* ── Conteneur principal pleine largeur ── */
.quick-bar {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-top: -2px;
  background: #003D52;
  display: flex;
  align-items: stretch;
  justify-content: center; /* Centre les items */
}

/* ── Chaque item de la barre — même largeur fixe ── */
.quick-item {
  flex: 0 0 400px; /* Largeur fixe identique pour les 4 */
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none !important;
  color: #ffffff !important;
  transition: background .2s;
}

.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(0,174,204,0.12); }

/* ── Icône ronde de chaque item ── */
.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0,174,204,0.15);
  border: 1px solid rgba(0,174,204,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-icon svg {
  width: 20px;
  height: 20px;
}

/* ── Label principal de chaque item ── */
.quick-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff !important;
  display: block;
}

/* ── Sous-titre de chaque item ── */
.quick-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.45) !important;
  display: block;
  margin-top: 2px;
}

/* ── 4ème item "Réserver" — même largeur que les autres ── */
.quick-item.quick-cta {
  background: #F2611A;
  flex: 0 0 400px; /* Même largeur fixe */
}

.quick-item.quick-cta:hover { background: #d4510f; }

.quick-item.quick-cta .quick-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

.quick-item.quick-cta .quick-sub {
  color: rgba(255,255,255,0.7) !important;
}

/* ── Flèche animée sur l'item Réserver ── */
.quick-arrow {
  margin-left: auto;
  font-size: 18px;
  color: #ffffff;
  opacity: .7;
  transition: transform .2s, opacity .2s;
}

.quick-item.quick-cta:hover .quick-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ── Vague du hero collée sans espace ── */
.hero-wave {
  margin-bottom: -2px;
}

/* ════════════════════════════════════════════
   RESPONSIVE QUICKBAR
════════════════════════════════════════════ */

/* Tablette : 2 colonnes */
@media (max-width: 900px) {
  .quick-bar { flex-wrap: wrap; }
  .quick-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .quick-item.quick-cta { flex: 1 1 100%; } /* Réserver prend toute la largeur */
}

/* Mobile : 1 colonne */
@media (max-width: 560px) {
  .quick-item { flex: 1 1 100%; }
  .quick-item.quick-cta { flex: 0 0 100%; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-640dfbf *//* ════════════════════════════════════════════
   ACTUALITÉ À LA UNE
   Shortcode : [actu_une]
   Position  : homepage après quickbar
════════════════════════════════════════════ */

.actu-une-wrap {
  background: white;
  border-top: 3px solid #F2611A;
  border-bottom: 1px solid #D4E4EB;
  position: relative;
}

.actu-une-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.actu-une-photo {
  width: 200px;
  height: 120px;
  flex-shrink: 0;
}

.actu-une-photo-default {
  background: linear-gradient(135deg, #003D52, #00AECC);
  display: flex;
  align-items: center;
  justify-content: center;
}

.actu-une-body { flex: 1; }

.actu-une-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.actu-une-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F2611A;
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
}

.actu-une-badge::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: pulse-actu 1.5s infinite;
}

@keyframes pulse-actu {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.actu-une-date {
  font-size: 10px;
  color: #4A6070;
  font-weight: 600;
  letter-spacing: .5px;
  font-family: 'Montserrat', sans-serif;
}

.actu-une-titre {
  font-size: 18px;
  font-weight: 900;
  color: #003D52;
  text-transform: uppercase;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.actu-une-texte {
  font-size: 13.5px;
  color: #4A6070;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 14px;
}

.actu-une-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.actu-une-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: #F2611A;
  color: white !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif!important;
  transition: background .2s;
}

.actu-une-btn-primary:hover { background: #D4510F; }
.actu-une-btn-primary svg { stroke: white; fill: none; }

.actu-une-btn-secondary {
  font-size: 12px;
  font-weight: 700;
  color: #4A6070 !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif!important;
  transition: color .2s;
}

.actu-une-btn-secondary:hover { color: #003D52 !important; }

/* ════════════════════════════════════════════
   RESPONSIVE MOBILE
════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Actu à la une */
  .actu-une-inner {
    flex-direction: column;
    padding: 0 0 16px !important;
    gap: 0;
  }

  .actu-une-photo {
    width: 100%;
    height: 160px;
  }

  .actu-une-body {
    padding: 14px 16px 0;
  }

  .actu-une-titre { font-size: 15px; }
  .actu-une-texte { font-size: 12.5px; }

  .actu-une-btn-primary {
    font-size: 11px;
    padding: 9px 16px;
  }

  .actu-une-close {
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,.4);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
  }

  .actu-une-close svg { stroke: white; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-3bb433c *//* ════════════════════════════════════════════
   SECTION ACTIVITÉS — PAGE D'ACCUEIL
   Shortcode : [activites_aucoeurdeau]
   Page      : Accueil (ID 5)
   Emplacement : Section "Une activité pour chacun"
   Champs ACF (page ID 5) :
     - activites_eyebrow, activites_titre_principal
     - activites_titre_leger, activites_intro
     - activites_lien_tout
   Données dynamiques : CPT Activité (profils, photo, catégorie)
════════════════════════════════════════════ */

/* ── Espacement de la section ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .section-activites {
  padding: 88px 0;
  background: white;
}

/* ── Conteneur centré aligné sur la navbar ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── En-tête avec titre et intro ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .activites-entete {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

/* ── Eyebrow avec ligne cyan (ex. "Nos Activités") ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .label-section {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #00AECC;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .label-section::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #00AECC;
}

/* ── Titre principal de la section (ex. "Une activité") ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .titre-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: #003D52;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

/* ── Partie légère du titre en cyan (ex. "pour chacun") ──
   Même couleur que .line-cyan dans le hero (#00AECC)      */
.elementor-2449 .elementor-element.elementor-element-3bb433c .titre-section .leger {
  font-weight: 600;
  color: #00AECC;
  opacity: .7;
}

/* ── Texte d'introduction sous le titre ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .sous-titre-section {
  font-size: 16px;
  color: #4A6070;
  max-width: 540px;
  line-height: 1.6;
  margin-top: 14px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/* ── Filtres par profil (Adultes, Enfants, etc.) ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .filtres-profils {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .filtre-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #D4E4EB;
  background: white;
  color: #4A6070;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .filtre-btn:hover {
  border-color: #00AECC;
  color: #003D52;
}

/* ── Filtre actif sélectionné ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .filtre-btn.actif {
  border-color: #003D52;
  background: #003D52;
  color: white;
}

/* ── Grille des cards activités (4 colonnes desktop) ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .grille-activites {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Card activité ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .card-activite {
  background: white;
  border: 1px solid #D4E4EB;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .card-activite:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,62,82,.12);
}

/* ── Photo de l'activité (champ ACF : activite_photo_hero) ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-photo {
  height: 190px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* ── Overlay dégradé sur la photo ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,61,82,.6) 0%, transparent 50%);
}

/* ── Badge catégorie en haut à gauche de la photo ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-famille-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #003D52;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* ── Picto flottant en bas à droite de la photo ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-picto-flottant {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-picto-flottant svg {
  width: 18px !important;
  height: 18px !important;
}

/* ── Corps de la card (nom + tags profils) ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-corps {
  padding: 16px 18px 20px;
}

/* ── Nom de l'activité ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-nom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #003D52;
  text-transform: uppercase;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}

/* ── Tags profils sous le nom ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .act-tag {
  font-size: 10px;
  padding: 3px 8px;
  background: #E8F6FA;
  color: #003D52;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ── Tag adultes/seniors/scolaires — fond cyan clair ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-tag.t-eau {
  background: rgba(0,174,204,.1);
  color: #006D8A;
}

/* ── Tag bébés/enceintes — fond corail clair ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .act-tag.t-corail {
  background: rgba(242,97,26,.1);
  color: #F2611A;
}

/* ── Bouton "Toutes les activités" centré en bas ── */
.elementor-2449 .elementor-element.elementor-element-3bb433c .activites-plus {
  text-align: center;
  margin-top: 44px;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .btn-contour-marine {
  border: 2px solid #003D52;
  color: #003D52 !important;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
}

.elementor-2449 .elementor-element.elementor-element-3bb433c .btn-contour-marine:hover {
  background: #003D52;
  color: white !important;
}

/* ════════════════════════════════════════════
   RESPONSIVE SECTION ACTIVITÉS
════════════════════════════════════════════ */

/* Tablette : 3 colonnes */
@media (max-width: 1024px) {
  .elementor-2449 .elementor-element.elementor-element-3bb433c .grille-activites { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile paysage : 2 colonnes */
@media (max-width: 768px) {
  .elementor-2449 .elementor-element.elementor-element-3bb433c .grille-activites { grid-template-columns: repeat(2, 1fr); }
  .elementor-2449 .elementor-element.elementor-element-3bb433c .container { padding: 0 24px; }
  .elementor-2449 .elementor-element.elementor-element-3bb433c .titre-section { font-size: 32px; }
}

/* Mobile portrait : 1 colonne */
@media (max-width: 480px) {
  .elementor-2449 .elementor-element.elementor-element-3bb433c .grille-activites { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-e9f08fb *//* ════════════════════════════════════════════
   SECTION STATS — PAGE D'ACCUEIL
   Shortcode : [stats_aucoeurdeau]
   Page      : Accueil (ID 5)
   Emplacement Elementor : Section chiffres clés
   Rôle      : Bande marine avec 3 chiffres clés animés
   Note      : L'animation ondulation sur ::before crée un effet
               de vagues SVG en mouvement en arrière-plan
════════════════════════════════════════════ */

/* ── Fond marine avec overflow masqué pour l'animation ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .section-stats {
  background: #003D52;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

/* ── Pattern de vagues SVG en arrière-plan ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .section-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30'%3E%3Cpath d='M0 15 Q15 0 30 15 Q45 30 60 15 Q75 0 90 15 Q105 30 120 15' fill='none' stroke='rgba(0,174,204,0.07)' stroke-width='2'/%3E%3C/svg%3E") repeat;
}

/* ── Animation de défilement horizontal des vagues ── */
@keyframes ondulation {
  from { background-position: 0 0; }
  to   { background-position: 120px 0; }
}

.elementor-2449 .elementor-element.elementor-element-e9f08fb .section-stats::before {
  animation: ondulation 6s linear infinite;
}

/* ── Conteneur centré au-dessus de l'animation (z-index: 1) ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* ── Grille 3 colonnes égales ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .stats-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ── Chaque stat séparée par un trait blanc semi-transparent ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-item {
  text-align: center;
  padding: 36px 48px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-item:last-child {
  border-right: none;
}

/* ── Icône SVG décorative au-dessus du chiffre ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-picto {
  margin-bottom: 16px;
}

.elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-picto svg {
  width: 32px;
  height: 32px;
}

/* ── Chiffre principal — très grand, cyan, condensé ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-chiffre {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 84px;
  color: #00AECC;
  line-height: 1;
  letter-spacing: -4px;
}

/* ── Label descriptif sous le chiffre ── */
.elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
}

/* ════════════════════════════════════════════
   RESPONSIVE STATS
════════════════════════════════════════════ */

/* Mobile : 1 colonne, séparateur horizontal ── */
@media (max-width: 768px) {
  .elementor-2449 .elementor-element.elementor-element-e9f08fb .stats-grille { grid-template-columns: 1fr; }
  .elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-item:last-child { border-bottom: none; }
  .elementor-2449 .elementor-element.elementor-element-e9f08fb .stat-chiffre { font-size: 60px; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-685fccd *//* ════════════════════════════════════════════
   SECTION INFOS PRATIQUES — PAGE D'ACCUEIL
   Shortcode : [infos_aucoeurdeau]
   Page      : Accueil (ID 5)
   Emplacement Elementor : Section "Préparez votre venue"
   Rôle      : 2 cartes côte à côte — Horaires (marine) et Tarifs (corail)
   Données   : CPT Horaire (horaire_actif=1) + CPT Tarif (tarif_homepage=1)
════════════════════════════════════════════ */

/* ── Fond sable clair de la section ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .section-infos {
  padding: 88px 0;
  background: #F5F9FB;
}

/* ── Conteneur centré aligné sur la navbar ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Bloc eyebrow + titre au-dessus des cartes ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .section-intro {
  margin-bottom: 44px;
}

/* ── Eyebrow avec ligne cyan (commun à plusieurs sections) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .label-section {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #00AECC;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.elementor-2449 .elementor-element.elementor-element-685fccd .label-section::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #00AECC;
}

/* ── Titre de section (ex. "Préparez votre venue") ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .titre-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: #003D52;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

/* ── Partie légère cyan du titre — corrigée pour correspondre
   au même cyan #00AECC que .line-cyan dans le hero ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .titre-section .leger {
  font-weight: 600;
  color: #00AECC;
  opacity: .7;
}

/* ── Grille 2 colonnes égales pour les cartes ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .infos-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ── Carte générique — bordure top cyan ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-info {
  background: white;
  border: 1px solid #D4E4EB;
  border-top: 4px solid #00AECC;
  padding: 36px;
}

/* ── Variante carte Tarifs — bordure top corail ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-info-corail {
  border-top-color: #F2611A;
}

/* ── En-tête de chaque carte (icône + titre) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-info-entete {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

/* ── Icône carrée fond marine (carte Horaires) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-icone {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: #003D52;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Icône carrée fond corail (carte Tarifs) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-icone-corail {
  background: #F2611A;
}

/* ── Titre de la carte (ex. "Horaires d'ouverture") ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-titre {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #003D52;
  text-transform: uppercase;
  letter-spacing: -.3px;
}

/* ── Titre corail pour la carte Tarifs ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-titre-corail {
  color: #F2611A;
}

/* ── Label de période horaire (ex. "Période scolaire") ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .horaire-periode-label {
  font-size: 11px;
  color: #00AECC;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

/* ── Tableau des horaires jour par jour ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tableau-horaires {
  width: 100%;
  border-collapse: collapse;
}

.elementor-2449 .elementor-element.elementor-element-685fccd .tableau-horaires tr { border: none; }

.elementor-2449 .elementor-element.elementor-element-685fccd .tableau-horaires td {
  border: none;
  padding: 10px 0;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

/* ── Colonne jour (gras marine) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tableau-horaires td:first-child {
  font-weight: 700;
  color: #003D52;
  width: 38%;
  font-family: 'Montserrat', sans-serif;
  padding-left: 12px;
}

/* ── Colonne horaire (gris) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tableau-horaires td:last-child {
  color: #4A6070;
}

.elementor-2449 .elementor-element.elementor-element-685fccd .tableau-horaires tr { background: white; }

/* ── Sous-titre agglo carte tarifs ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tarifs-sous-titre {
  font-size: 11px;
  color: #00AECC;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

/* ── Ligne tarif (label + prix) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .ligne-tarif {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #E8EDF0;
}

/* ── Label descriptif du tarif ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tarif-label {
  font-size: 14px;
  color: #1A2B35;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}

/* ── Prix en corail gras ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tarif-prix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #F2611A;
}

/* ── Note tarifaire en italique (ex. mention hors agglo) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .tarif-note {
  font-size: 11px;
  color: #4A6070;
  margin-top: 12px;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
}

/* ── Boutons en bas de chaque carte ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .carte-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.elementor-2449 .elementor-element.elementor-element-685fccd .btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
}

/* ── Bouton plein marine (carte Tarifs) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .btn-sm-plein {
  background: #003D52;
  color: white !important;
}

.elementor-2449 .elementor-element.elementor-element-685fccd .btn-sm-plein:hover { background: #00536E; }

/* ── Bouton contour marine (cartes Horaires + Tarifs) ── */
.elementor-2449 .elementor-element.elementor-element-685fccd .btn-sm-contour {
  border: 2px solid #003D52;
  color: #003D52 !important;
  background: transparent;
}

.elementor-2449 .elementor-element.elementor-element-685fccd .btn-sm-contour:hover {
  background: #003D52;
  color: white !important;
}

/* ════════════════════════════════════════════
   RESPONSIVE INFOS PRATIQUES
════════════════════════════════════════════ */

/* Mobile : cartes empilées ── */
@media (max-width: 768px) {
    .elementor-2449 .elementor-element.elementor-element-685fccd .infos-grille { grid-template-columns: 1fr; }
  .elementor-2449 .elementor-element.elementor-element-685fccd .container { padding: 0 24px; }
  .elementor-2449 .elementor-element.elementor-element-685fccd .titre-section { font-size: 32px; }

  /* ── Correction ligne tarif mobile ── */
  .elementor-2449 .elementor-element.elementor-element-685fccd .ligne-tarif {
    align-items: flex-start;
    gap: 8px;
  }

  .elementor-2449 .elementor-element.elementor-element-685fccd .tarif-label {
    font-size: 13px;
    flex: 1;
    line-height: 1.4;
  }

  .elementor-2449 .elementor-element.elementor-element-685fccd .tarif-prix {
    font-size: 15px;
    flex-shrink: 0;
    white-space: nowrap;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-127acac */.elementor-2449 .elementor-element.elementor-element-127acac .section-resa {
  background: white;
  padding: 88px 0;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-visuel {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-photo {
  position: absolute;
  inset: 0;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-photo-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #006D8A, #00AECC);
  display: flex;
  align-items: center;
  justify-content: center;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-badge-photo {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  background: #003D52;
  color: white;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.elementor-2449 .elementor-element.elementor-element-127acac .label-section {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #00AECC;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.elementor-2449 .elementor-element.elementor-element-127acac .label-section::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #00AECC;
}

.elementor-2449 .elementor-element.elementor-element-127acac .titre-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: #003D52;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.elementor-2449 .elementor-element.elementor-element-127acac .titre-section .leger {
  font-weight: 600;
  color: #00AECC;
  opacity: .6;
}

.elementor-2449 .elementor-element.elementor-element-127acac .sous-titre-section {
  font-size: 16px;
  color: #00AECC;
  line-height: 1.6;
  margin-bottom: 28px;
  font-family: 'Open Sans', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4A6070;
  font-family: 'Open Sans', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-point-check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #E8F6FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.elementor-2449 .elementor-element.elementor-element-127acac .btn-resa-smart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: #F2611A;
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
}

.elementor-2449 .elementor-element.elementor-element-127acac .btn-resa-smart:hover {
  background: #D4510F;
  transform: translateY(-2px);
}

.elementor-2449 .elementor-element.elementor-element-127acac .resa-info {
  font-size: 11px;
  color: #4A6070;
  margin-top: 12px;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
  .elementor-2449 .elementor-element.elementor-element-127acac .resa-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }
  .elementor-2449 .elementor-element.elementor-element-127acac .resa-visuel { height: 280px; }
  .elementor-2449 .elementor-element.elementor-element-127acac .titre-section { font-size: 32px; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-38c7cc7 */.elementor-2449 .elementor-element.elementor-element-38c7cc7 .section-actus {
  background: #F5F9FB;
  padding: 88px 0;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actus-entete {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .label-section {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #00AECC;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .label-section::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #00AECC;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .titre-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: #003D52;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .titre-section .leger {
  font-weight: 600;
  color: #00AECC;
  opacity: .6;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .btn-contour-marine {
  border: 2px solid #003D52;
  color: #003D52 !important;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
  white-space: nowrap;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .btn-contour-marine:hover {
  background: #003D52;
  color: white !important;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actus-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .card-actu {
  background: white;
  overflow: hidden;
  border: 1px solid #D4E4EB;
  text-decoration: none !important;
  display: block;
  color: inherit !important;
  transition: transform .25s, box-shadow .25s;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .card-actu:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,62,82,.1);
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-image {
  height: 210px;
  position: relative;
  overflow: hidden;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-categorie {
  position: absolute;
  top: 0;
  left: 0;
  background: #F2611A;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-corps {
  padding: 22px 24px;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-date {
  font-size: 11px;
  color: #00AECC;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-titre {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #003D52;
  text-transform: uppercase;
  letter-spacing: -.3px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-extrait {
  font-size: 13px;
  color: #4A6070;
  line-height: 1.55;
  font-family: 'Open Sans', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-38c7cc7 .actu-lire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #F2611A;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 900px) {
  .elementor-2449 .elementor-element.elementor-element-38c7cc7 .actus-grille { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .elementor-2449 .elementor-element.elementor-element-38c7cc7 .actus-grille { grid-template-columns: 1fr; }
  .elementor-2449 .elementor-element.elementor-element-38c7cc7 .container { padding: 0 24px; }
  .elementor-2449 .elementor-element.elementor-element-38c7cc7 .titre-section { font-size: 32px; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-f73b9d5 */.elementor-2449 .elementor-element.elementor-element-f73b9d5 .section-piscine {
  background: #003D52;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-deco-1 {
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(0,174,204,.06);
  pointer-events: none;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-deco-2 {
  position: absolute;
  right: 300px;
  top: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 40px solid rgba(0,174,204,.04);
  pointer-events: none;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-watermark {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 160px;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -5px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .label-section {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #00AECC;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .label-section::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #00AECC;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .titre-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: #00AECC;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .sous-titre-section {
  font-size: 16px;
  color: #00AECC;
  line-height: 1.6;
  margin-bottom: 28px;
  font-family: 'Open Sans', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-atouts {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-atout {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .atout-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,174,204,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .btn-contour-blanc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,.5);
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .2s;
  margin-top: 8px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .btn-contour-blanc:hover {
  border-color: white;
  background: rgba(255,255,255,.1);
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-photo {
  position: relative;
  height: 460px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-photo-img {
  position: absolute;
  inset: 0;
  border-radius: 4px;
}

.elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-annee {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 120px;
  color: rgba(255,255,255,.06);
  line-height: 1;
  letter-spacing: -5px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }
  .elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-photo { height: 300px; }
  .elementor-2449 .elementor-element.elementor-element-f73b9d5 .titre-section { font-size: 32px; }
  .elementor-2449 .elementor-element.elementor-element-f73b9d5 .piscine-watermark { font-size: 80px; }
}/* End custom CSS */