.elementor-1336 .elementor-element.elementor-element-412dd34{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1336 .elementor-element.elementor-element-aee2cca{--display:flex;}.elementor-1336 .elementor-element.elementor-element-a62517f{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1336 .elementor-element.elementor-element-5aba4f4{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1336 .elementor-element.elementor-element-eb87630{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-bd885e0 *//* HEADER PALACE DORÉ */
.header-premium {
  width: 100%;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(200, 182, 138, 0.45);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06), 0 4px 18px rgba(200,182,138,0.20);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 58px;
  opacity: 0.95;
}

/* MENU CENTRÉ */
.header-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 34px;
}

.header-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #1F1F1F;
  text-decoration: none;
  letter-spacing: 0.25px;
  padding-bottom: 2px;
  position: relative;
  transition: 0.25s ease;
}

.header-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #C8B68A;
  transition: width 0.25s ease;
}

.header-menu a:hover {
  color: #C8B68A;
}

.header-menu a:hover::after {
  width: 100%;
}

/* ACTIONS */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

/* APPELER */
.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(200,182,138,0.45);
  color: #1F1F1F;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
  
}

.btn-call:hover {
  color: #C8B68A !important;
  transform: translateY(-2px);
  transition: 0.3s ease;
}

.icon-phone::before {
  content: "📞";
  font-size: 14px;
}

/* RÉSERVER */
.btn-reserver {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid rgba(200,182,138,0.45);
  color: #1F1F1F;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200,182,138,0.25);
  transition: 0.25s ease;
}

.btn-reserver:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,182,138,0.25);
}

/* CANARD — Stroke → Fill progressif */
.icon-duck-gold {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #C8B68A;
  transition: background-color 0.4s ease, mask 0.4s ease;
  mask: url('data:image/svg+xml;utf8,<svg ... ></svg>') no-repeat center;
  mask-size: contain;
}

.btn-reserver:hover .icon-duck-gold {
  background-color: #C8B68A;
  mask: url('data:image/svg+xml;utf8,<svg ... ></svg>') no-repeat center;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: #C8B68A;
  border-radius: 2px;
  transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: #FFFFFF;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  z-index: 9999;

  transform: translateX(100%);
  transition: transform 0.35s ease;
}

/* ouverture */
.mobile-menu.active {
  transform: translateX(0);
}

/* liens */
.mobile-menu a {
  color: #1F1F1F;
  text-decoration: none;
  position: relative;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #C8B68A;
  transition: width 0.3s ease;
}

.mobile-menu a:hover {
  color: #C8B68A;
}

.mobile-menu a:hover::after {
  width: 100%;
}

/* croix */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1F1F1F;
}

/* Responsive */
@media (max-width: 900px) {
  .header-menu,
  .header-actions {
    display: none;
  }

  .burger {
    display: flex;
  }
}


/* ============================
   CANARD — Remplissage doré progressif (VERSION FINALE)
   ============================ */

.btn-reserver .duck-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;

  /* Fallback : image visible même si mask non supporté */
  background-image: url('https://les3canards.fr/wp-content/uploads/2026/05/icone-3-canards.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  /* Mask pour l’effet doré */
  mask-image: url('https://les3canards.fr/wp-content/uploads/2026/05/icone-3-canards.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;

  /* Couleur initiale : noir */
  background-color: #000;

  /* Animation d’apparition */
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(.17,.67,.3,1.3),
    background-position 2s ease-in-out,
    background-color 2s ease-in-out;
}

/* Apparition progressive */
.btn-reserver .duck-icon.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover : remplissage doré lent et visible */
.btn-reserver:hover .duck-icon {
  background: linear-gradient(90deg, #000 0%, #C8B68A 100%);
  background-size: 200% 100%;
  background-position: right center;
}

/* Animation du logo à l'arrivée — version XL (1.30) */
.header-logo img {
  animation: logoPulseXL 1.5s ease-out forwards;
  transform-origin: center;
}

@keyframes logoPulseXL {
  0% {
    transform: scale(0.70);
    opacity: 0;
  }
  45% {
    transform: scale(1.30); /* GROS zoom premium */
    opacity: 1;
  }
  75% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
/* cacher menu mobile par défaut sur PC */
.mobile-menu {
  display: none;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: flex;
  }
}

.btn-reserver:hover {
  color: #C8B68A !important;
  letter-spacing: 0.2px;
  transition: 0.3s ease;
}


/* CANARD (global) */
.duck-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("https://lightcoral-snake-651869.hostingersite.com/wp-content/uploads/2026/04/icone-3-canards.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  flex: 0 0 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: 0.3s ease;
}

/* version mobile menu */
.mobile-menu .duck-icon {
  width: 18px; /* plus petit pour mobile */
  height: 18px;
}

/* bouton alignement */
.btn-reserver,
.mobile-menu .btn-reserver {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid rgba(200,182,138,0.45);
  color: #1F1F1F;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200,182,138,0.25);
  transition: 0.25s ease;
}

/* Ajout d'un effet de hover sur le bouton */
.btn-reserver:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,182,138,0.25);
  color: #C8B68A; /* changement de couleur au hover */
}

/* Effet canard au hover */
.btn-reserver:hover .duck-icon {
  transform: rotate(-5deg) scale(1.1); /* rotation et agrandissement du canard */
}

/* Apparition progressive du canard dans le bouton */
.btn-reserver .duck-icon.visible {
  opacity: 1;
  transform: translateY(0);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-95c44b1 */.legal-page {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fbf8f2 0%, #ffffff 100%);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(200, 182, 138, 0.18);
}

.legal-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px);
  color: #47387B;
  margin: 0 0 28px;
}

.legal-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #47387B;
  margin: 28px 0 12px;
}

.legal-container p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 12px;
}

.legal-container a {
  color: #47387B;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 600px) {
  .legal-page {
    padding: 50px 16px;
  }

  .legal-container {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .legal-container h2 {
    font-size: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f615888 */.nous-trouver {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
  padding: 55px 0 50px;
  font-family: "Georgia", serif;
  color: #21443d;
  overflow-x: hidden;
}

.nous-trouver .container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.nous-trouver h2 {
  font-size: 54px;
  font-weight: 400;
  color: #47387B;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  width: 72px;
  height: 2px;
  background: #d8a15a;
  margin: 18px auto 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-item {
  text-align: center;
  padding: 0 8px;
}

.icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  color: #d7a15d;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.contact-item h3 {
  font-size: 20px;
  font-weight: 400;
  color: #21443d;
  margin: 0 0 12px;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.55;
  color: #4b5b5a;
  margin: 0;
}

.contact-item strong {
  font-weight: 700;
}

.icon-float {
  animation: floatY 3.4s ease-in-out infinite;
  transform-origin: center;
}

.contact-item:nth-child(2) .icon-float { animation-delay: 0.15s; }
.contact-item:nth-child(3) .icon-float { animation-delay: 0.3s; }
.contact-item:nth-child(4) .icon-float { animation-delay: 0.45s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .nous-trouver h2 {
    font-size: 44px;
  }
}

@media (max-width: 650px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nous-trouver h2 {
    font-size: 34px;
  }

  .title-line {
    margin-bottom: 34px;
  }

  .contact-item p {
    font-size: 15px;
  }

  .contact-item h3 {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eb87630 *//* ============================
   FOOTER SIGNATURE ULTRA COMPACT
   ============================ */

.footer-premium {
  background: #FAF9F6;
  padding: 35px 0 28px; /* Hauteur très réduite */
  text-align: center;
  position: relative;
}

/* Ligne dorée signature — mini */
.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px; /* très fin */
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #C8B68A, transparent);
  opacity: 0.8;
}

/* Conteneur compact */
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px; /* ultra compact */
}

/* LOGO TRANSPARENT — version lisible */
.footer-logo img {
  width: 120px; /* plus petit */
  height: auto;
  object-fit: contain;

  /* Transparent mais lisible */
  filter: brightness(0) invert(1) opacity(0.9) drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  transition: 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) opacity(1);
  transform: translateY(-2px);
}

/* LIENS — compacts */
.footer-links {
  display: flex;
  gap: 22px; /* réduit */
}

.footer-links a {
  color: #47387B;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.25px;
  transition: 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

/* Soulignement doré fin */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #C8B68A;
  transition: width 0.3s ease, left 0.3s ease;
}

.footer-links a:hover {
  color: #C8B68A;
}

.footer-links a:hover::after {
  width: 100%;
  left: 0;
}

/* LEGAL — mini */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-legal p,
.footer-legal a {
  color: #7A7A7A;
  font-size: 12px; /* mini */
  margin: 0;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-legal a:hover {
  color: #C8B68A;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
}

.footer-logo {
  display: block !important;
  height: auto !important;
  overflow: visible !important;
}

.footer-logo img {
  display: block !important;
  width: 120px !important;
  height: auto !important;
  opacity: 1 !important;
  filter: none !important;
}/* End custom CSS */