.elementor-16 .elementor-element.elementor-element-94bd784{--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-16 .elementor-element.elementor-element-99be0f6{--display:flex;}.elementor-16 .elementor-element.elementor-element-d91445c{--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-16 .elementor-element.elementor-element-aed4abc{--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-16 .elementor-element.elementor-element-511d9f9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-53f5450 *//* 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);
}



.mobile-menu .btn-call,
.mobile-menu .btn-reserver {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    margin-bottom: 14px;
}
.duck-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: 0.3s ease;
}

/* Effet hover premium */
.btn-reserver:hover .duck-icon-img {
    transform: rotate(-5deg) scale(1.1);
}
.btn-call .icon-phone::before {
    color: red !important;
}

@media (max-width: 768px) {
  .btn-call {
    gap: 14px !important; /* augmente l’espace entre l’icône et le texte */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aa327dc */.contact-header {
  min-height: 340px;
  background: url('https://les3canards.fr/wp-content/uploads/2026/05/restaurant-de-devant-terrasse.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.contact-header-overlay {
  background: rgba(0,0,0,0.45);
  padding: 36px 48px;
  border-radius: 16px;
  text-align: center;
  max-width: 90%;
}

.contact-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  color: #fff;
  margin: 0 0 10px;
}

.contact-header p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #f5f5f5;
  margin: 0;
}

.contact-access-refined {
  padding: 60px 20px;
  box-sizing: border-box;
}

.car-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.car-intro,
.car-info,
.car-cta {
  min-width: 0;
}

.car-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0;
}

.car-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.car-phone,
.car-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff;
  color: #47387B;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.car-phone:hover,
.car-mail:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.car-icon {
  font-size: 18px;
  line-height: 1;
}

.car-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.car-info {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.car-info h3,
.car-map-box h3,
.car-facebook-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #47387B;
  margin: 0 0 14px;
}

.car-info p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0;
  overflow-wrap: anywhere;
}

.car-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.car-hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(71,56,123,0.10);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3a3a3a;
}

.car-hours li:last-child {
  border-bottom: none;
}

.car-hours span:first-child {
  font-weight: 600;
  color: #47387B;
}

.car-map-social {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.car-map-box,
.car-facebook-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  min-width: 0;
}

.car-facebook-box p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 16px;
}

.map-responsive,
.facebook-responsive {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #f2f2f2;
}

.map-responsive {
  padding-bottom: 75%;
  height: 0;
}

.facebook-responsive {
  padding-bottom: 106%;
  height: 0;
}

.map-responsive iframe,
.facebook-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.car-cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #e2d0a2;
  color: #47387B;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.car-cta:hover {
  background: #d8c28f;
  transform: translateY(-1px);
}

.car-duck {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .car-details,
  .car-map-social {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-header {
    min-height: 260px;
  }

  .contact-header-overlay {
    padding: 26px 22px;
  }

  .contact-access-refined {
    padding: 40px 16px;
  }

  .car-lead {
    font-size: 16px;
  }

  .car-phone,
  .car-mail,
  .car-cta {
    width: 100%;
    justify-content: center;
  }

  .car-info,
  .car-map-box,
  .car-facebook-box {
    padding: 18px;
  }

  .car-hours li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .facebook-responsive {
    padding-bottom: 135%;
  }
}

.car-map-social {
  align-items: stretch;
}

.car-map-box,
.car-facebook-box {
  height: 100%;
}

.car-map-box {
  min-height: 760px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f625ae7 */.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-511d9f9 *//* ============================
   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 */