

.emplacement_titre_acceuil{
    position: absolute;
    top:150px;
    left: 100px;
    width: 50%;
    padding: 5px;
    z-index: 1;
    height: 100px;
    /*background:rgb(208, 216, 208)*/
}

.emplacement_1{
    position: absolute;
    /*margin-top:150px;*/
    top :220px;
    left: 100px;
    width: 13%;
    padding: 5px;
    z-index: 1;
    height: 100px;
    /*background:rgb(208, 216, 208)*/
}
.emplacement_2{
    position: absolute;
    /*margin-top:150px;*/
    top :220px;
    left: 325px;
    width: 50%;
    padding: 5px;
    z-index: 1;
    height: 100px;
    /*background:rgb(208, 216, 208)*/
}

.emplacement_3{
    position: absolute;
    top :350px;
    left: 100px;
    width: 50%;
    padding: 5px;
    z-index: 1;
    height: 300px;
    /*text-align: center;/*
    /*background:rgb(208, 216, 208)*/
}
/*les guillemets avant la citation*/
.emplacement_3 ::before{
    content: "“";
    font-family: Georgia, serif;
    font-size: 60px;
    color: #a4a3a1;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
 
}
/*les guillemets après la citation*/
.emplacement_3 ::after{
    content: "”";
    font-family: Georgia, serif;
    font-size: 60px;
    color: #a4a3a1;
    position: absolute;
    top: 250px; /*jouer avec top et left pour les guillemets*/
    left: 20px;
    line-height: 1;
 
}

/* .photo_accueil{ */
    /* position: absolute; */
    /* top:170px; */
    /* right:100px; */
    /* width: 560; */
    /* padding: 5px; */
    /* z-index: 1; */
    /* height:500px; */
    /* text-align: center; */
    /* border-radius: 20px; */
    /*background:rgb(208, 216, 208)*/
/* } */

.photo_accueil {
    position: static;        /* L'image suit le flux naturel et ne chevauche plus */
    width: 100%;             /* S'adapte à la largeur de l'écran du mobile */
    max-width: 560px;        /* Ne dépasse pas 560px */
    height: auto;            /* Conserve les proportions sans déformer l'image */
    margin: 20px auto;       /* Centre l'image avec un peu d'espace autour */
    padding: 5px;
    border-radius: 20px;
    text-align: center;
}

/* Style pour ÉCRAN D'ORDINATEUR (largeur à partir de 768px) */
@media (min-width: 768px) {
    .photo_accueil {
        position: absolute;
        top: 170px;
        right: 100px;
        width: 560px;        /* Unité px ajoutée */
        height: 500px;
        z-index: 1;
        margin: 0;
    }
}                                                  /*tableaux*/

.emplacement_4{
    position: absolute;
    top :650px;
    left: 0px;
    width: 100%;
    padding: 5px;
    z-index: 1;
    height: 50px;
    text-align: center;
    /*background:rgb(208, 216, 208)*/
}    


.emplacement_cases_tableaux{
    display: flex;
    margin-top :760px;
    width: 90%;
    padding: 5px;
    z-index: 1;
    height: 500px;
    justify-content: space-evenly; /* Espacement identique entre les blocs et les bords */
    align-items: center;  
    background:#515a69;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}     

.emplacement_5{
    display: flex;
    flex-direction: column;   /* <-- important */
    top :50px;
    left: 0;
    width: 25%;
    z-index: 1;
    height: 400px;
    text-align: center;
    border-radius: 20px;
    background:#1B2028;

}     

.emplacement_image{
    display: flex;
    /*top :0;*/
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    z-index: 1;
    height: 270px;
    /*text-align: center;*/
    border-radius: 20px 20px 0 0;/*bords arrondis sur le haut*/
    /*background:#3a85ff;*/
    

}     

/*.emplacement_image:hover{
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,.4);
  border-radius: 0 0 0 0;

}   */ 
/*technique et dimension tableaux*/
.emplacement_6{
    display: flex;
    align-items:center;
    /*top :0;*/
    flex: 1; 
    margin:10px;
    width: 100%;
    z-index: 1;
    /*height: 270px;*/
    /*background:#3a85ff;*/
    /*background:#3a85ff;*/
}   
/* titre de l'oeuvre*/
.emplacement_7{
    padding: 20px;
    display: flex;
    /*top :0;*/
    margin-left:10px ;
    margin-top: 0px;
    width: 100%;
    z-index: 1;
    height: 50px;
    /*background:#3a85ff;*/
    /*background:#00f32c;*/

}   
/* bouton en forme de flèche */
.fleche{
    position: relative;
    margin-left: 70px;

    display: block;

    width: 24px;
    height: 14px;

    transition: all 0.3s ease;
    
}

/* Trait horizontal */
.fleche::before{
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 18px;
    height: 1.5px;

    background-color: #C8A76A;

    transform: translateY(-50%);

    transition: width 0.3s ease;
}

/* Pointe */
.fleche::after{
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 7px;
    height: 7px;

    border-top: 1.5px solid #C8A76A;
    border-right: 1.5px solid #C8A76A;

    transform: translateY(-50%) rotate(45deg);

    transition: transform 0.3s ease;
}
/*animation flèche*/
.fleche:hover::before{
    width: 24px;
}

.fleche:hover::after{
    transform: translate(3px,-50%) rotate(45deg);
}