/*DEBUT main -----------------------------------------------------*/
main {
    display: flex;
    flex-direction: column;
    background: #0A0A0C;
}
main::before {
    content: "";
    background: inherit;
}
#intro {
    display: flex;
}

/*FIN main*/


/*DEBUT zone_blanche -----------------------------------------------------*/
 #zone_blanche {
    position: relative;
    width: 100%;
    height: auto;
    background: url("../image/bg_soc.jpeg") no-repeat center center/cover;
    background-size: cover;
    z-index: 2;
    overflow: hidden;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;    
} 
 #zone_blanche > * {
    position: relative;
    z-index: 2;
} 
 #zone_blanche::before {
    content: ""; 
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7); 
    z-index: 1;
    pointer-events: none;
}
.container{
    display: flex;
    width: 60%;
    flex-direction: column;
}
.texte_references {
    margin-top: 16px;
}
p {
    margin-top: 5px;
}
/*FIN zone_blanche*/


/*DEBUT zone_noire -----------------------------------------------------*/
#zone_noire {
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row; 
}
/* A décomenter à l'ajout de la vidéo*/
/* #image_noire { 
    width:45% ;
    height: 300px;
    background: url("../image/bg_soc.jpeg") no-repeat center top/cover;
    z-index: 3;
    margin-left: 5%;
} */
#text_defilant {
    width: 100%; /* Changer width à 50% si vidéo ajoutée et sinon 100% */
    color: white;
}
#text_defilant::after {
    content: "";
    position: absolute; 
    right: -5%;  /* Changer right à 45% si vidéo ajoutée et sinon -5% */
    bottom: 0;
    width: 12px;
    height: 80px;
    background: 
        radial-gradient(circle at center, #bb4144 30%, transparent 30%) 0 0/12px 12px,
        radial-gradient(circle at center, #c85659 30%, transparent 30%) 0 16px/12px 12px,
        radial-gradient(circle at center, #d56b6e 30%, transparent 30%) 0 32px/12px 12px,
        radial-gradient(circle at center, #e28083 30%, transparent 30%) 0 48px/12px 12px,
        radial-gradient(circle at center, #f0d5d7 30%, transparent 30%) 0 64px/12px 12px;
    background-repeat: no-repeat;
    z-index: 100;
}
/*FIN zone_noire*/


/*DEBUT responsive -----------------------------------------------------*/
@media screen and (max-width: 768px) {
    .container {
        width: 90%;
    }
    #zone_noire {
        width: 90%;
    }
    #image_noire {
        display: none; 
    }
}
/* iPad — portrait */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  main {
    min-height: calc(100vh - 150px) !important;
  }
    .container {
    width: 90%;
  }
  #zone_noire {
        width: 90%;
    }
}
/* iPad — landscape */
@media screen and (min-width: 1024px) and (max-width: 1367px) and (orientation: landscape) {
  .container {
    width: 80%;
  }
  #zone_noire {
        width: 80%;
    }
}
/*FIN responsive*/

    

