
.accueil {
    /* background-image: url('../img/DJI_0037.jpg'); */
    background-position: center;
    /* background-attachment: fixed; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: column;
    margin-top: -50px;
}
.accueil::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/DJI_0037.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: 70%;
    filter: brightness(50%) blur(1px);
    z-index: -1;
}
.accueil-header{
    margin-left: 150px;
    padding: 20px;
    padding-top: 150px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 500px;
    height: 100%; 
}
.accueil-header h2{
    font-size: 2rem;
    font-family: var(--font-family);
    margin: 0;
    letter-spacing: 2px;
}
.accueil-header h3{
    font-size: 1.5rem;
    font-family: var(--font-family);
    margin: 0;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 50px;
}
.accueil-header p{
    font-family: var(--font-family);
    font-size: 3rem;
    color: var(--text-color);
    margin: 20px 0;
    font-weight: 500;
    line-height: 65px;
    max-width: 500px;
}
.accueil-buttons{
    color: var(--text-color);
    padding: 10px;
    background-color: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    width: 150px;
    margin-top: 50px;
}
.accueil-buttons:hover{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.accueil-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5% 10%;
}
.apropos p{
    max-width: 75%;
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.5em;
}
#image-apropos{
    width: 500px;
    height: auto;

}
@media (max-width: 768px) {
    
    .accueil {
        height: 100vh;
        margin-top: 0;
        display: flex;
        align-items: center;
        margin-top: -10px;
    }
    .accueil::before{
        background-position-x: center;
        background-position-y: bottom;
    }
    .accueil-header {
      width: 100%;
      margin-left: 0;
      margin-top: 100px;
      padding: 10px 0px 30px 20px;
      height: fit-content;
    }
    .accueil-header h3{
        font-size: 20px;
    }
    .accueil-header p{
        font-size: 2.5rem;
        margin: 30px 0;
    }
    .accueil-buttons {
        margin-left: 0;
        width: 80%;
        text-align: center;
    }
    .accueil-container {
        flex-direction: column;
        align-items: center;
    }
    #image-apropos {
        width: 100%;
        max-width: 400px;
        margin-top: 35px;
    }
    .apropos p{
        max-width: 100%;
        text-align: justify;
    }
}
