/*
Theme Name: Divi Child
Template: Divi
*/

/*test*/

.reseaux-sociaux {
    display: flex;
}

.reseaux-sociaux img {
    width: 50px;
    max-width: 50px;
}

.reseaux-sociaux-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reseaux-sociaux-center img {
  width: 50px;
  max-width: 50px;
}

.toggle-list {
  padding-left: 20px;
}

.toggle-list p {
  font-family: 'Archivo', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
}



/* Effet zoom "stylé" sur les images */
.eds-zoom-img {
    overflow: hidden;             /* indispensable pour couper le zoom */
  }
  
  .eds-zoom-img img {
    display: block;               /* évite les micro-espaces */
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 450ms cubic-bezier(.2,.8,.2,1),
                filter 450ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
  }
  
  /* Hover : zoom + léger contraste (optionnel mais souvent “stylé”) */
  .eds-zoom-img:hover img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
  }

  /* Barre d'icônes + texte (comme la capture) */
.eds-capacity{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;          /* si ça manque de place */
  font-size: 16px;
  line-height: 1;
  color: rgba(0,0,0,.75);
}

.eds-capacity-wrapper{
  display: flex;
  justify-content: center;
}

.eds-capacity__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;      /* empêche "salle d’eau" de passer à la ligne */
}

.eds-capacity__icon{
  width: 35px;
  height: 35px;
  display: block;
  object-fit: contain;
  opacity: .85;             /* aspect “gris” comme la capture */
}

.eds-capacity__text strong{
  font-weight: 700;
  margin-right: 3px;
}

/* ====== Bandeau pictos (comme la capture) ====== */
.eds-pictos{
  --bg: #f9f7ee;
  --text: #4a4a4a;
  --sep: rgba(0,0,0,.12);
  --top-line: rgba(0,0,0,.35);

  background: var(--bg);

  padding: 14px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.eds-pictos__item{
  flex: 1 1 0;
  text-align: center;
  padding: 6px 14px;
  display: grid;
  justify-items: center;
  row-gap: 8px;
}

/* séparateurs verticaux entre les items */


.eds-pictos__icon{
  width: 40px;          /* ajuste si besoin */
  height: 40px;
  object-fit: contain;
  display: block;
}

.eds-pictos__label{
  color: var(--text);
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Mobile : empilement (optionnel) */
@media (max-width: 520px){
  .eds-pictos{
    flex-direction: column;
    align-items: stretch;
  }
  .eds-pictos__item + .eds-pictos__item{
    border-left: 0;
    border-top: 1px solid var(--sep);
  }
}

.footer-contact a {
  color: #faf8f0;
  font-family: 'Archivo', Helvetica, Arial, Lucida, sans-serif;
}


/*Rideau sur Hero*/

/* ===== EDS Curtain Hero (scopé à #eds-hero) ===== */

/* Le hero reste "derrière" */
#eds-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh; /* tu veux passer tout à 100vh */
}

/* Important: garantir le stacking correct */
#eds-hero,
#eds-hero * {
  z-index: 0;
}

/* La 1ère section après le hero = le rideau "carte" */
.eds-curtain {
  position: relative;
  z-index: 2;              /* au-dessus du hero */
  background: #fff;        /* indispensable pour recouvrir */
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -18px 40px rgba(0,0,0,.12);

  /* chevauchement (effet carte) */
  margin-top: -40px;       /* ajuste: 24 à 64px selon rendu */
  padding-top: 40px;       /* compense pour ne pas "manger" le contenu */
}

/* Mobile: chevauchement un peu plus léger */
@media (max-width: 980px) {
  .eds-curtain {
    margin-top: -24px;
    padding-top: 24px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}