.fullwidth-banner-img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
   margin-top: 0 !important;
}

.fullwidth-banner-img img{
    width: 100%;
    height: auto;
    display: block;
}
.page-header {
  text-align: center;
  max-width: 900px; /* centrage plus confortable */
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: 2.5rem;
  color: #1165F7;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(255, 230, 180, 0.5);
}
.page-header p {
  font-size: 1.2rem;
  color: #1165F7;
}
.content-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff8ec 100%);
  box-shadow: 0 8px 25px rgba(180, 150, 100, 0.15);
  border-radius: 22px;
  padding: 50px 60px; /* plus d’espace à l’intérieur */
  margin: 60px auto;
  max-width: 1100px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
  border: 1px solid rgba(210, 180, 120, 0.2);
}
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(180, 150, 100, 0.25);
}

/* --- Titres --- */
.content-card h2 {
  color: #1165F7;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}
.content-card h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #d4b373, #f5e1a0);
  margin: 10px auto 0;
  border-radius: 2px;
}
#custom-text {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
}
#wrapper {
  background: #FFF6C7 !important;
  padding: 0 !important;
}

/* Desktop */
.custom-section {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: nowrap; /* OK sur grand écran */
}

/* Mobile : on autorise le retour sous l'image */
@media (max-width: 768px) {
  .custom-section {
    flex-wrap: wrap; /* autorise le texte à passer en dessous */
    text-align: center; /* optionnel : joli sur mobile */
  }

  .photo-container {
    flex: 0 0 100%; /* l'image prend toute la largeur */
  }
  
  .text-container {
    flex: 0 0 100%; /* le texte aussi */
  }
}

#header .top-menu a[data-depth="0"]:hover {
    color: #EB8923 !important; /* la couleur que tu veux */
}
/* Cacher le fil d'Ariane sur la page contact */
body#contact .breadcrumb {
    display: none !important;
}
body.page-contact .contact-rich {
    margin-top: 40px !important; /* Ajuste la hauteur selon ce que tu veux */
}
body.page-contact .page-content {
    margin-top: 60px !important;
}



/* Style par défaut du bouton */
.btn.btn-default {
    background-color: #EB8923; /* couleur de fond */
    color: #ffffff;             /* couleur du texte */
    border: 1px solid #EB8923;  /* couleur de la bordure */
    transition: all 0.3s ease;  /* transition douce pour le hover */
}
.btn.btn-primary  {
    background-color: #EB8923; /* couleur de fond */
 } 

a {
    color: #EB8923; /* nouvelle couleur */
    text-decoration: none; /* ou underline si tu veux */
}

.card {
    border-radius: 20px; /* arrondi les coins de 20px */
    overflow: hidden; /* pour que le contenu à l'intérieur respecte les coins arrondis */
}

.fullwidth-banner-img .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white !important; /* garde la couleur du texte */
    background-color: rgba(0, 0, 0, 0.5) !important; /* Fond semi-transparent */
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 2; /* Assurer que le texte reste au-dessus de tout */
}