﻿@import url('https://use.typekit.net/cub8qao.css');

:root {
  --color-ink: #0e548a;
  --color-brand: #eeae00;
  --color-accent: #29c483;
  --color-white: #fff;
  --container-min: 1080px;
  --container-moy: 1280px;
  --container-max: 1400px;
  --header-blue: #115f98;
  --header-yellow: #f5a400;
  --header-border: #123f73;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}


strong {
  font-weight: 700;
}

body ::-webkit-scrollbar, html ::-webkit-scrollbar {
  width: 6px;
  background-color: var(--color-ink);
}

body ::-webkit-scrollbar-thumb, html ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: var(--color-brand);
}

body ::-webkit-scrollbar-track, html ::-webkit-scrollbar-track {
  background-color: var(--color-ink);
}

body, html {
  margin: 0;
  padding: 0;
}

body {
    font-family: "clother", sans-serif;
    font-display: swap;
    color: var(--color-ink);
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
}

.container-mini {
  max-width: var(--container-min);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container-moyen {
  max-width: var(--container-moy);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.Flix {
  overflow: hidden;
}

a {
  color: color: #f5a400;
  text-decoration: none;
}

p a, li a {
    color: #f5a400;
    text-decoration: none;
}

a:hover {
  color: var(--color-brand);
  text-decoration: underline;
}

.btn {
    position: relative;
    z-index: 0;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 30px;
    border-radius: 8px;
    background: var(--header-yellow);
    color: var(--color-white);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
background: var(--header-blue);
    color: var(--color-white);
    text-decoration: none;
}

.btn img {
  width: 20px;
  height: auto;
}

.btn.transpa.border {
  background: transparent;
  color: #000;
  border: 2px solid rgb(217 217 217 / 36%);
}

.btn.transpa.border.jaune {
  background: transparent;
  color: var(--color-brand);
  border: 2px solid rgb(238 174 0 / 50%);
}

.btn.transpa.border.textblanc {
  color: var(--color-white);
}

a.btn.grand {
  font-size: 1.2em;
  font-weight: 800;
  margin-top: 5px;
}

.btn.grand img {
  width: 25px;
  height: auto;
}

.wp-txt-center, .text-center {
  text-align: center;
  line-height: 1.3em;
}

.margin20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.margin30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.margin40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.margin50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.margin60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.margin70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.margin80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.margin90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.margin100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.margintop80 {
  margin-top: 60px;
}

.padding10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.padding20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.padding30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.padding40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.padding50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.padding60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.padding70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.padding80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.padding90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.padding100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.marginmoins {
  margin-top: -60px;
}

.texteblanc, .textblanc, .text-blanc, .texte-blanc {
  color: var(--color-white);
}

.textblanc .minititre {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

p {
    line-height: 1.5em;
    margin-bottom: 7px;
    margin-top: 7px;
}


/* HEADER  */

.logo {
  position: relative;
}

.logo img {
  padding: 0;
  height: 72px;
  width: auto;
  display: block;
}

.navbar {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr) auto minmax(130px, 170px);
    grid-template-rows: 28px 56px;
    grid-template-areas:         "logo infos infos infos"        "logo nav nav cta";
    align-items: center;
    color: var(--color-ink);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    gap: 0 28px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    background: var(--color-white);
    border-radius: 0;
    min-height: var(--header-height);
    box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
    padding: 0 25px;
    min-height: 90px;
}

.site-header__logo {
  grid-area: logo;
  align-self: center;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-header__name {
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.1;
}

.site-header__infos {
  grid-area: infos;
}

.site-header__nav {
  grid-area: nav;
  justify-self: end;
}

.site-header__cta {
  grid-area: cta;
  justify-self: start;
}

.espace-menu {
    margin-left: auto;
    margin-top: 10px;
}

.MenuBox {
  display: none;
}

.flex-entete-d {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 42px;
    justify-content: center;
    margin-bottom: 0;
    border-bottom: 0;
    padding: 0 26px 0 300px;
    align-self: stretch;
    min-height: 33px;
    background: var(--header-blue);
    border-bottom-left-radius: 28px;
    color: var(--color-white);
}

.flex-entete-d-2 {
    display: flex;
    gap: 42px;
    align-items: center;
    margin-left: 0;
    padding-right: 35px;
    justify-content: flex-end;
    margin-right: -25px;
}

.flex-entete-d img {
  height: 20px;
}

.flex.entre {
  margin-top: 0;
  gap: 0;
}

.flex.entre li {
  display: flex;
  gap: 5px;
  border-right: 1px solid #c3d5e0;
}

.flex-entete-d a {
    margin: 0;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--color-white);
    font-size: 1em;
    line-height: 1;
    white-space: nowrap;
}

.flex-entete-d a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.flex-entete-d strong {
  font-weight: 500;
}

.site-header__icon {
  color: #f6ce00;
  font-size: 16px;
  line-height: 1;
}

.site-header__mobile-action {
  display: none !important;
}

li.rese.ajoutemenu {
  display: flex;
}

li.rese.ajoutemenu a {
  margin-right: 0 !important;
}

ul#menu-entete {
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(22px, 3vw, 52px);
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}

ul#menu-entete li {
  list-style: none;
  position: relative;
}

ul#menu-entete li a {
    text-decoration: none;
    margin: 0;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    color: var(--color-ink);
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

ul#menu-entete li a:hover {
  color: var(--header-blue);
  text-decoration: none;
}

ul#menu-entete .menu-item-has-children ul.sub-menu {
  position: absolute;
  display: none;
}

ul#menu-entete li.menu-item-has-children.openLi .sub-menu {
  display: block;
  min-width: 190px;
  top: 30px;
  overflow: hidden;
  width: max-content;
  padding: 10px 15px;
  border-radius: 7px;
  background-color: rgb(255 255 255 / 81%);
  backdrop-filter: blur(10px);
  box-shadow: 3px 5px 15px 2px #0c2a3c63;
}

ul#menu-entete li.menu-item-has-children.openLi .sub-menu li {
  margin: 10px 0;
}

li.menu-item-has-children:after {
  content: "\276F";
  position: absolute;
  right: -14px;
  transform: rotate(90deg);
  top: -2px;
  color: var(--header-blue);
}

#menu-entete ul.sub-menu {
  padding: 0;
  margin: 0;
}

.navbar:has(.espace-menu.open) .flex-entete-d .telephone, .navbar:has(.espace-menu.open) .flex-entete-d .boutique {
  display: none;
}

.navbar:has(.espace-menu.open) .logo img {
  filter: none;
}

.navbar.scrolled ul.sub-menu {
  background-color: rgb(255 255 255) !important;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 30px;
    border-radius: 8px;
    background: var(--header-yellow);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.site-header__cta:hover {
  background: var(--header-blue);
  color: var(--color-white);
  text-decoration: none;
}

@media screen and (max-width: 1280px) {
  .navbar {
    grid-template-columns: minmax(235px, 340px) minmax(0, 1fr) auto minmax(126px, 150px);
    gap: 0 18px;
    padding-right: 40px;
  }

  .flex-entete-d {
    padding-left: 190px;
  }

  ul#menu-entete {
    gap: clamp(16px, 2.2vw, 30px);
  }
}

@media screen and (max-width: 1024px) {
  .navbar {
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr) auto;
    grid-template-areas:
      "logo infos infos"
      "logo nav cta";
    padding-right: 24px;
  }

  .logo img {
    height: 62px;
  }

  .flex-entete-d {
    gap: 22px;
    padding-left: 110px;
  }

  ul#menu-entete li a,
  .site-header__cta {
    font-size: 13px;
  }
}



/*  HERO  */

.heroslider {
    padding-top: 0 !important;
position:relative;
}

.heroslider h1 {
    font-size: 2.3em!important;
}

.heroslider .fl-rich-text {
    font-size: 1.1em;
}

.heroslider .fl-row-content-wrap .fl-node-content {
    position: relative;
    z-index: 1;
}

.heroslider:after {
    z-index: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent linear-gradient(90deg, #0e548a 0%, #0e548a9e 0%, #0e548a8a 45%, #0e548a00 70%) 0% 0% no-repeat padding-box;
}

.heroslider > .fl-row-content-wrap {
    height: 80vh;
    margin-top: 50px;
}

.services {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

.services a {
    position: relative;
    color: inherit;
    display: block;
}

.services a:hover {
    text-decoration: none;
    color: inherit;
}

.services a:before {
    content: "";
    width: 45px;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    z-index: 1;
    top: -10px;
    background: #fde6b7 url(/wp-content/uploads/2026/05/fleche.svg);
    background-position: 16px 11px;
    background-repeat: no-repeat;
    background-size: 18px;
}


.services h3 {
    margin: 5px 0;
}

.services hr {
    border: none;
    border-top: 2px solid var(--color-brand);
    width: 115px;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-left: 0;
}

.img-relais {
    position: relative;
    top: -80px;
}


/* JOURS */

.jours {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.jours p {
    padding: 0 25px;
    line-height: 1.4em;
    margin-top: 15px;
    font-weight: 600;
}

.jours h4 {
    margin: 0;
    background: #0e548a;
    color: #fff;
    text-align: center;
    font-size: 1.1em;
    padding: 10px 0;
}


/* INFOS */

.cadreinfos {
    padding: 40px 60px !important;
    background: #fff;
    margin-top: 35px !important;
    border-radius: 15px;
}

.cadreinfos :is(h1, h2, h3, h4, h5) {
    font-size: 1.8em !important;
}

.cadrebleu {
    background: #0e548a;
    padding: 10px 45px;
    border-radius: 15px;
    margin-top: 25px;
}

.cadregris {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
}

.cadreblanc {  background: #fff;
    padding: 25px;
    border-radius: 15px;  }


.theme1 {
    list-style: none;
    padding-left: 0;
}

.theme1 li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
}

.theme1 li:before {
    content: "";
    background: url(/wp-content/uploads/2026/05/check-3.svg);
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0.15em;
}

/* TIMELINE */


.timeline-sivom {
  --timeline-blue: #0b5790;
  --timeline-orange: #f5a400;
  --timeline-line: #d9d9d9;

  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 10px 20px;
  font-family: "clother", Arial, sans-serif;
}

.timeline-sivom::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 2px;
  background: var(--timeline-line);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  max-width: 455px;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 2;
  justify-self: start;
  padding-left: 34px;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  justify-self: end;
  padding-right: 34px;
  text-align: right;
}

.timeline-content h3 {
    display: inline-block;
    margin: 0 0 12px;
    padding-bottom: 8px;
    color: var(--timeline-blue);
    border-bottom: 2px solid var(--timeline-orange);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    line-height: 1;
}

.timeline-content p {
  margin: 0;
  color: var(--timeline-blue);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}



/* FOND */

.fondbleu { background:#0e548a; }
.fondgris { background:#f5f5f5; }

/* SPEC */

.nobefore :is(h1, h2, h3, h4, h5):before { display:none; }

.minititre, .mini-titre {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--color-brand);
    padding: 5px 15px;
    font-size: 1em;
    border: 1px solid #e1e1e1;
    border-radius: 40px;
}
strong.minititre.text-blanc {
  color: var(--color-white);
  border: 1px solid var(--color-white) !important;
}

.titrebase :is(h1, h2, h3, h4, h5) {
    font-size: 2.1em;
    margin-bottom: 20px;
    margin-top: 5px;
    line-height: 1.1em;
    font-weight: 600;
    position: relative;
}

.titrebase :is(h1, h2, h3, h4, h5):before {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 2px solid #f8a700;
    margin-left: -20px;
}

.titrebase :is(h1, h2, h3, h4, h5) em {
    color: #f8a700;
    font-style: normal;
}


.titrebase hr {
  border: none;
  border-top: 2px solid var(--color-brand);
  width: 115px;
  margin-left: -45px;
  margin-bottom: 15px;
  margin-top: 0;
}

.text-center.titrebase hr {
  margin-left: auto;
}


/* FORM  */

.wpcf7-form {
    padding: 15px;
    position: relative;
    z-index: 1;
}

.flex-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  z-index: 1;
  border-radius: 20px;
  background: hsl(0deg 0% 100% / 85%);
  padding: 15px;
}

.flex-form a.btn {
  display: flex;
  justify-content: space-between;
}

.FormulaireWpFluide .wpcf7-not-valid-tip {
  font-size: 12px;
}

.flex-form ul.theme3 {
  margin-top: 15px;
}

span.wpcf7-spinner {
  position: absolute;
}

.flex-form .full {
  position: relative;
  width: 100%;
}

.flex-form .half {
  position: relative;
  width: 48.8%;
}

.flex-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 1em;
  font-weight: 500;
}

.flex-form p {
  margin: 0;
}

.flex-form select, .flex-form input:not(:is([type="button"], [type="submit"], [type="radio"], [type="checkbox"], [type="file"])) {
  height: 3rem;
}

input[type="checkbox"] {
  font-size: 20px;
  border-radius: 5px;
  min-width: 20px;
  border: 1px solid #c3c4c7;
  background: var(--color-white);
}

.flex-form :is(input, textarea, select):not(:is([type="submit"], [type="button"])) {
    color: #000;
    background: #f5f5f5;
    font-family: "clother", sans-serif;
}

.flex-form select, .flex-form textarea, .flex-form input:not(:is([type="button"], .flex-form [type="submit"], .flex-form [type="radio"], .flex-form [type="checkbox"], .flex-form[type="file"])) {
    width: 100%;
    font-size: 14px;
    line-height: 1;
    outline: none;
    font-weight: 100;
    box-sizing: border-box;
    padding: .7375rem 0;
    border-radius: 10px;
    background: #f5f5f5;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
}

.flex-form .wpcf7-acceptance span.wpcf7-list-item-label {
  font-weight: 400;
  line-height: 1.3em;
}

.full.flex {
    display: flex;
    gap: 15px;
}


.flex-form :is(input, textarea, select, option)::placeholder {
  opacity: 0.7;
  color: #0e548a;
font-weight:600;
}

.flex-form select.wpcf7-validates-as-required {
    color: #0e548a;
    opacity: 0.7;
font-weight:600;
}

.flex-form select:invalid {
  opacity: 0.7;
font-weight:600;
}


.full h3, .full h4 {
  font-size: 1.6em;
  font-style: normal;
  margin-bottom: 10px;
  margin-top: 0;
}

.full h3 strong, .full h4 strong {
  font-weight: 600;
}

.full em {
  font-style: normal;
}

.wpcf7-acceptance input {
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #00000040;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

input#acceptance, #condition2 input, input[name="acceptance-284"] {
  font-size: 20px;
  border-radius: 5px;
  min-width: 20px;
  border: 1px solid #c3c4c7;
  background: var(--color-white);
}

input#acceptance:checked[type=checkbox], #condition2 input:checked[type=checkbox], input:checked[name="acceptance-284"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23db1773' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

input#acceptance:checked, input#acceptance:focus, #condition2 input:focus, input[name="acceptance-284"]:focus {
  background-color: #f0ece2;
  border-color: var(--color-white);
  border-color: #fcfbfa;
  outline: 0;
  box-shadow: 0 0 0 .11rem #090000;
}

.wpcf7-acceptance span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance span.wpcf7-list-item-label {
  text-transform: none;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border: none;
  color: #000;
  font-size: 1em;
  padding: 5px 25px;
  position: relative;
  text-decoration: none;
  z-index: 0;
  display: inline-flex;
  gap: 10px;
  transition: cubic-bezier(0.4, 0, 1, 1) 0.2s;
  font-weight: 300;
  margin: 5px 0;
  align-items: center;
  height: 40px;
  background: var(--color-brand);
  border-radius: 10px;
}

.wpcf7-acceptance label {
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-content: center;
  line-height: 1em;
}

/* FOOÂ§TER  */

footer.footerbg {
    background: #0e548a;
    position: relative;
    padding-top: 40px;
    color: #fff;
}

footer.footerbg h4 {
    color: #f8a700;
    margin: 0;
    font-size: 1.4em;
    padding-bottom: 10px;
}

footer.footerbg p {
  position: relative;
}

.main-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "logo nav reservation";
    gap: 0 30px;
    padding: 30px 0 10px 0;
    max-width: 1280px;
    margin: auto;
}

.main-footer a {
    color: #fff;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer ul li {
  padding-bottom: 5px;
}

.footer-logo {
  grid-area: logo;
  line-height: 1.2em;
}

.footer-logo ul li img { width: 17px;
    height: auto; }

.wp-image-39 {
    border-radius: 25px;
    padding: 6px;
    width: 90%;
    height: auto;
}

.footer-logo ul {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 6px;
  margin-top: 15px;
  flex-direction: column;
}

.footer-logo ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-logo ul li a {
  color: var(--color-white);
}

.footer-nav {
  grid-area: nav;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 20px;
}

.footer-reservation {
  grid-area: reservation;
}

.footer-credits {
  grid-area: credits;
  padding-top: 35px;
}

.footer-credits ul {
  margin: 0;
}

.main-footer span strong {
  font-size: 1.2em;
}

.flexbas {
    text-align: center;
    margin-top: 41px;
}
.flexbas .container {
    border: none;
    border-top: 1px solid #22659a;
    padding-top: 15px;
}
