@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni&display=swap');

:root {
  --font-title: "Antonio", sans-serif;
  --font-body: "Raleway", sans-serif;
  --ion-color-primary: #f5e179;
  --ion-color-secondary: #ca9b50;
  --ion-color-tertiary: #452422;
  --ion-color-light: #f5f1bf;
  --ion-color-medium: #9C9E9F;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden !important;
  outline: 2px solid red; /* temporaire pour le debug */
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
}

h2 {
  font-size: unset;
}
p{
  font-family: var(--font-body);
}

.titreSection {
  font-size: 1.8rem;
  font-family: var(--font-title);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 3px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
  .titreSection {
    font-size: 1.4rem !important;
  }
  .hauteur-titre {
    height: 80px;
  }
}


.no-margin-bottom {
  margin-bottom: 0 !important;
}

.bold {
  font-weight: bold;
}

/* --- Effets visuels --- */

.shiny-wrapper,
.shiny-wrapper6 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.shiny-image {
  display: block;
  width: 100%;
  height: auto;
}

.shiny-wrapper::before,
.shiny-wrapper6::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
          120deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.25) 30%,
          rgba(255, 255, 255, 0.6) 50%,
          rgba(255, 255, 255, 0.25) 70%,
          rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine-smooth 3s ease-in-out infinite;
  pointer-events: none;
}

.shiny-wrapper6::before {
  animation-duration: 6s;
}

@keyframes shine-smooth {
  0% { left: -150%; }
  100% { left: 150%; }
}

.shiny-text {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #f5e179, #ca9b50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.shiny-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
          120deg,
          rgba(255, 255, 255, 0.1) 0%,
          rgba(255, 255, 255, 0.6) 50%,
          rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* --- Header Ionic inspiré --- */
.header-title .main-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.header-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 32px;
  background: linear-gradient(to bottom, var(--ion-color-secondary), var(--ion-color-primary));
  border-radius: 2px;
}

/* --- Bannière connexion, ruptures, etc. --- */
.banner-section {
  padding: 30px 20px;
  color: #000000;
  text-align: center;
}

.rupture-stock-badge {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border: 1px solid #f44336;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-top: 10px;
  display: inline-block;
}

/* --- Vagues décoratives --- */
.wave-container {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 200%;
  height: 60%;
  animation: wave-scroll 5s ease-in-out infinite;
}

.wave path {
  fill: #ca9b50;
  stroke-width: 2;
}

.wave-bottom {
  transform: rotate(180deg);
}

@keyframes wave-scroll {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-5px) translateX(-25%);
  }
}

/* --- Titre avec animation de soulignement --- */
.titreAnimationAfterUnderlineSelf {
  position: relative;
  display: inline-block;
}

.titreAnimationAfterUnderlineSelf::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  height: 3px;
  background-color: #ca9b50;
  transform: translateX(-50%);
  width: 0;
  animation: underlineSelf 10s ease-in-out infinite;
}

@keyframes underlineSelf {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}



/* Début style modal détail produit */

.modal-produit-content {
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f9f6ef);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 30px;
  border: none;
  font-family: var(--font-body, 'CooperplateGothicBoldRegular', serif);
  position: relative;
}

.modal-produit-content .modal-header {
  border-bottom: none;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-produit-content .modal-title {
  font-size: 24px;
  color: #452422;
  font-family: var(--font-title, 'Libre Bodoni', serif);
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.modal-produit-content .btn-close {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #ca9b50;
  width: 36px;
  height: 36px;
  opacity: 1;
}

.image-carousel {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.image-carousel::-webkit-scrollbar {
  display: none;
}

.image-carousel .image-slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3; /* Ratio élégant */
  scroll-snap-align: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9; /* Optionnel : fond clair chic */
}

.image-carousel .image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 rempli le slide élégamment */
  display: block;
}

.image-slide-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  background-color: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.image-slide-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.details {
  padding-top: 12px;
  text-align: center;
}

.details .produit-nom {
  font-size: 20px;
  color: #452422;
  margin-bottom: 8px;
  font-family: var(--font-title, 'Libre Bodoni', serif);
}

.details .produit-description {
  font-size: 14px;
  color: #555;
  text-align: justify;
  margin: 14px 0 20px;
  line-height: 1.6;
}

.details .btn-warning {
  background: linear-gradient(135deg, #ca9b50, #f5e179);
  border: none;
  font-weight: bold;
  color: #000;
  font-size: 1rem;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.3s ease-in-out;
}

.details .btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.suggestions h4 {
  font-size: 18px;
  font-weight: bold;
  font-family: var(--font-title, 'Libre Bodoni', serif);
  color: #452422;
  margin-bottom: 12px;
}

#suggestionsContainer {
  padding-top: 10px;
  border-top: 1px solid #eee;
}


.modal-content-luxe {
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 99999;
}

.produit-nom {
  font-family: "CooperplateGothicBoldRegular", serif;
  font-size: 22px;
  color: #452422;
  margin-bottom: 8px;
  text-align: center;
}

#productModal {
  z-index: 1200 !important;
}

.produit-prix {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0.5rem;
}
.produit-prix .prix-membre {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--ion-color-secondary, #ca9b50);
}
.produit-prix .prix-public {
  font-size: 1rem;
  color: gray;
  text-decoration: line-through;
}
.produit-prix .reduction {
  font-size: 1rem;
  font-weight: bold;
  color: #cc0000;
}

.produit-description {
  font-size: 14px;
  color: #555;
  text-align: justify;
  margin: 12px 0 20px;
}

.suggestions h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ion-color-tertiary, #452422);
  font-family: var(--font-title, 'Libre Bodoni', serif);
  text-align: center;
}

.horizontal-scroll-suggestions {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-suggestions::-webkit-scrollbar {
  display: none;
}

.suggestion-card {
  flex: 0 0 auto;
  width: 160px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  cursor: pointer;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.suggestion-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.suggestion-card .content {
  padding: 10px;
}

.suggestion-card .content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #333;
  text-align: center;
}

.suggestion-card .content p {
  font-size: 0.75rem;
  color: #666;
  text-align: justify;
  margin-bottom: 8px;
  line-height: 1.3;
}

.suggestion-card .produit-prix {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.suggestion-card .produit-prix .prix-membre {
  font-weight: bold;
  color: var(--ion-color-secondary, #ca9b50);
}

.suggestion-card .produit-prix .prix-public {
  color: gray;
  text-decoration: line-through;
}

.suggestion-card .produit-prix .reduction {
  color: #c00;
  font-weight: bold;
}

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 90vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.image-overlay-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2001;
}
/* Fin style modal détail produit */

.text-center .btn-outline-primary {
  border: 1px solid var(--ion-color-secondary, #ca9b50);
  border-radius: 2rem;
  color: var(--ion-color-secondary, #ca9b50);
}

.text-center .btn-outline-primary:hover {
  background-color: var(--ion-color-secondary, #ca9b50);
  color: #fff;
}

.confiance-highlight {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  font-weight: 600;
  background: linear-gradient(90deg, #f5e179, #ca9b50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flag-icon {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}
.lh200 {
  line-height
  Determines the block-progression dimension of the text content area of an inline box.
  Learn more

  Don't show
: 200% !important;
}
.cooperplate{
  font-family: "CopperplateGothicBoldRegular" !important;
}
.antonio{
  font-family: var(--font-title);
}
.raleway{
  font-family: var(--font-body);
}
.raleway-300 {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.antonio-300 {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.mt30{
  margin-top: 30px !important;
}
.mtop50{
  margin-top: 50px !important;
}
.mt150{
  margin-top: 150px !important;
}
.mt180{
  margin-top: 180px !important;
}
.mt230 {
  margin-top: 210px !important;
}

.fs2vir5{
  font-size: 2.5rem !important;
}
.fs1rem{
  font-size: 1rem !important;
}
.fs1vir1rem{
  font-size: 1.1rem !important;
}

.mb-74{
  margin-bottom: 74px !important;;
}
.clickSelect{
  background: #F08A00 !important;
}
.w-18{
  width: 18% !important;
}
.maxh300{
  max-height: 300px !important;
}
.h300{
  height: 300px !important;
}
.dNone{
  display: none;
}

.br160{
  border-radius: 6rem !important;
}
.borderColorPE{
  border-color: #ca9b50 !important
}


.lspacing2{
  letter-spacing: .2rem;
}
.colorPEFonce{
  color: #ca9b50 !important;
}
.colorPEClair{
  color: #ca9b50 !important;
}
.colorPE{
  background:-webkit-linear-gradient(360deg, #ca9b50 20%, #f5e179 80%);
  background-clip:text;
  -webkit-background-clip:text;
}
.transparent{
  color:transparent !important;
}

.bgPE{
  background:linear-gradient(180deg, #ca9b50 20%, #f5e179 80%);
}
.colorPEGris{
  color: #9C9E9F !important;
}
.borderPEFonce{
  border-color: #ca9b50 !important;;
}
.garamondItal{
  font-family: 'EB Garamond', serif;
}
.garamond500{
  font-family: 'EB Garamond', serif;
}
.albertSans{
  font-family: 'Albert Sans', sans-serif;
}
.bodoni{
  font-family: 'Libre Bodoni', serif;
}
.bgColorPEFonce{
  background: #ca9b50 !important;
}
.bgColorPEClair{
  background: #F08A00 !important;
}
.bgColorPEGris{
  background: #9C9E9F !important;
}
.bgSilver{
  background: silver !important;
}
.bPe1{
  border: 1px solid #ca9b50;
}
.bPe2{
  border: 1px solid #ca9b50 !important;
}
.letSp2rem{
  letter-spacing: .2rem !important;
}
.lh200{
  line-height: 200% !important;
}
.zindex{
  z-index: 9999;
}
.zindexneg{
  z-index: -9999;
}


/* début test new design titres */
.section2 {
  position: relative;
  background-color: white;
  padding-top: 30px;
  overflow: hidden;
  z-index: 1;
}

.section2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(90deg, #f5e179, #000000);
  z-index: 0;
  clip-path: polygon(
          0 25%, 10% 18%, 20% 25%, 30% 18%, 40% 25%,
          50% 18%, 60% 25%, 70% 18%, 80% 25%, 90% 18%, 100% 25%,
          100% 100%, 0 100%
  );
  -webkit-clip-path: polygon(
          0 25%, 10% 18%, 20% 25%, 30% 18%, 40% 25%,
          50% 18%, 60% 25%, 70% 18%, 80% 25%, 90% 18%, 100% 25%,
          100% 100%, 0 100%
  );
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/*@keyframes slideInLeft {*/
/*  0% {*/
/*    transform: translateX(-100%);*/
/*    opacity: 0;*/
/*  }*/
/*  100% {*/
/*    transform: translateX(0);*/
/*    opacity: 1;*/
/*  }*/
/*}*/

/*.div-inclinee {*/
/*  height: 100%;*/
/*  background: #ffffff;*/
/*  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);*/
/*  opacity: 0;*/
/*  transform: translateX(-100%);*/
/*  animation: slideInLeft 1s ease-out forwards;*/
/*  animation-delay: 0.3s; !* facultatif pour temporiser *!*/
/*}*/

.div-inclinee {
  background: #ffffff;
  /*clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);*/
  clip-path: polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.3s;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease-in-out;
}

/* Animation */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ✅ Responsive ajustements */
@media (max-width: 991.98px) { /* col-md breakpoint */
  .div-inclinee {
    clip-path: none; /* supprimer l'inclinaison sur mobile pour éviter les déformations */
    border-left: 6px solid #ca9b50; /* pour une touche élégante en remplacement */
    padding: 1.5rem;
    border-radius: 8px;
  }
}

/* fin test new design titres */


.section {
  position: relative;
  background-color: white;
  padding-top: 30px;
  overflow: hidden;
  z-index: 1;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ca9b50;
  /*background: linear-gradient(90deg, #f5e179, #000000);*/
  /*z-index: 0;*/
  /*clip-path: polygon(*/
  /*        0 25%, 10% 18%, 20% 25%, 30% 18%, 40% 25%,*/
  /*        50% 18%, 60% 25%, 70% 18%, 80% 25%, 90% 18%, 100% 25%,*/
  /*        100% 100%, 0 100%*/
  /*);*/
  /*-webkit-clip-path: polygon(*/
  /*        0 25%, 10% 18%, 20% 25%, 30% 18%, 40% 25%,*/
  /*        50% 18%, 60% 25%, 70% 18%, 80% 25%, 90% 18%, 100% 25%,*/
  /*        100% 100%, 0 100%*/
  /*);*/
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sectionTitle {
  padding: 0 94px;
  background: #fefefe;
}

.sectionTitle .section-header {
  text-align: right;
  margin-bottom: 30px;
}

.sectionTitle .section-header h2 {
  font-family: "CooperplateGothicBoldRegular", sans-serif;
  color: var(--ion-color-tertiary);
  font-size: 24px;
  margin-bottom: 10px;
}

.sectionTitle .section-header p {
  font-size: 14px;
  color: #666;
}

/* DÉBUT NAVBAR */
.web-tabmenu {
  /*position: fixed;*/
  /*top: 10px;*/
  /*left: 16px;*/
  /*right: 16px;*/
  margin: auto;
  height: 60px;
  z-index: 1100;
  transition: top 0.4s ease-in-out;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
  0 0 8px rgba(202, 155, 80, 0.4); /* glow doré */
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  border: 1px solid black;
  animation: glowPulse 6s infinite ease-in-out;
}


.web-tabmenu ion-icon {
  filter: drop-shadow(0 1px 2px rgba(202, 155, 80, 0.3));
  transition: transform 0.2s ease;
}

.web-tabmenu ion-icon:hover {
  transform: scale(1.1);
}

.video-section {
  padding-top: 80px; /* Décale tout ce qui suit */
}

.web-tabmenu .nav-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  list-style: none;
  margin: 0;
}

.web-tabmenu .nav-item {
  flex: 1;
  text-align: center;
}

.web-tabmenu .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.web-tabmenu .logo-item {
  flex: 0 0 auto;
}

.web-tabmenu .nav-logo {
  height: 52px;
  max-width: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.web-tabmenu .nav-logo:hover {
  transform: scale(1.05);
}

.no-hover {
  pointer-events: none;
}





.web-tabmenu .nav-link i {
  font-size: 20px;
  margin-bottom: 2px;
}

.web-tabmenu .nav-link:hover,
.web-tabmenu .nav-link.active {
  color: #ca9b50;
  font-weight: 600;
}

.nav-item.active-tab {
  border: 1px solid #ca9b50;
  border-radius: 1rem;
  /*background-color: grey;*/
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.badge-panier {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #dc3545; /* rouge Bootstrap */
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 20px;
  line-height: 1;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

@media (min-width: 768px) {
  .web-tabmenu {
    /*display: none;*/
  }
}

@media (max-width: 767px) {
  .navbar-desktop {
    display: none;
  }
}
/* FIN NAVBAR */

/* DÉBUT FOOTER 1 */
.site-footer {
  position: relative;
  background-color: #000;
  color: #f5e179;
  font-family: var(--font-body);
  /*border-top: 2px solid #ca9b50;*/
}
/*.site-footer::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    display: block; !* ✅ nécessaire *!*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 90px;*/
/*    background: linear-gradient(90deg, #f5e179, #000000);*/
/*    z-index: 0;*/
/*    clip-path: polygon(*/
/*            0 25%, 10% 18%, 20% 25%, 30% 18%, 40% 25%,*/
/*            50% 18%, 60% 25%, 70% 18%, 80% 25%, 90% 18%, 100% 25%,*/
/*            100% 100%, 0 100%*/
/*    );*/
/*    -webkit-clip-path: polygon(*/
/*            0 25%, 10% 18%, 20% 25%, 30% 18%, 40% 25%,*/
/*            50% 18%, 60% 25%, 70% 18%, 80% 25%, 90% 18%, 100% 25%,*/
/*            100% 100%, 0 100%*/
/*    );*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

.site-footer h5,
.site-footer h6 {
  font-family: var(--font-title);
  font-weight: 600;
  color: #ca9b50;
}

.text-contact{
  color: #ffffff;
}

.footer-links a,
.legal-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.footer-links a:hover,
.legal-links a:hover {
  color: #ffffff;
}

.social-icons a {
  color: #ca9b50;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f5e179;
}

.text1-footer{
  font-size: 1rem !important;
}

.footer-title {
  font-size: 1.5rem;
  font-family: var(--font-title);
  color: #f5e179;
}
.site-footer hr {
  border-top: 1px solid #f5e179;
}

.footer-logo {
  max-width: 280px;
  height: auto;
  filter: brightness(1.1);
}

/* FIN FOOTER 1 */

input:focus {
  border: 0.5px solid #ca9b50;
  box-shadow: 0 0 0 1px #ca9b50 !important;
}

.img-shadow-bottom {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
}

.shadow1 {
  box-shadow: 0 0 25px #ca9b50;
}

.shadow-bottom1 {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3) !important;
}
.shadow-bottom2 {
  box-shadow: 0 20px 30px #000000 !important;
}
.shadow-input {
  box-shadow: 0 2px 10px #ca9b50 !important;
}
.hauteur-titre {
  height: 150px; /* adapte à la hauteur visuelle réelle */
}

/* Début animation au scroll pour titre */
@keyframes slideInLeftScroll {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.appear {
  animation: slideInLeftScroll 1s ease-out forwards;
}




@keyframes fadeInPuzzle {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.animate-puzzle {
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.95);
  transition: all 0.6s ease-out;
}

.animate-puzzle.appear {
  animation: fadeInPuzzle 2.2s ease-out forwards;
}

/* fin animation au scroll pour titre */

.language
{
  display: inline-block;
  position: relative;
  width: 50%;
  min-width: 50px;
  border-right: solid 1px #33333b;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}

.lienMdpOublie {
  color: #bfa980;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
}

.lienMdpOublie:hover{
  color: #ca9b50;
}

.lS3px{
  letter-spacing: 3px;
}
/*Note bas de formulaire*/
.login-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #888;
  font-weight: bold;
}
/* 📩 Champs formulaire */
.form-control {
  border-radius: 12px;
  background-color: #f5f5f5;
  padding: 12px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  color: #333;
}

/* Champ invalide */
.form-control.is-invalid {
  border-color: #eb445a;
}

.banniere-nouveau-site {
  background: linear-gradient(to right, #f5f5f5, #ffffff);
  color: #333;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
  margin: 5px 20px 5px auto;
  gap: 10px;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: white;
  transition: all 0.3s ease;
}

.language-switcher a img {
  margin: auto;
  color: #ca9b50;
  font-size: 1rem;
}

.language-switcher a:hover {
  background-color: #f9f9f9;
  border-color: #ca9b50;
  color: #000;
}
