@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

@font-face {
    font-family: 'IowanOld Style Roman';
    src: url('../font/IowanOldStyleBT-Roman.otf') format('opentype');
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url("../img/bg-voyance-valeria.jpg");
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    background-color: #1a1f23;
    font-size: 15px;
    color: #ffffff;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    min-height: 100%;
    position: relative;
    z-index: 2;
}

.site-header {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.site-header, 
.site-content, 
.site-footer {
    width: 80%;
    margin: 0 auto;
}   

.site-content {
    box-sizing: border-box;
    background-color: #171d21;
    min-height: 750px;
    display: flex;
    padding: 3em;
}

.last-paragraphe {
    font-style: italic;
}

.column-image {
    width: 35%;
    padding-right: 3%;
}

.column-content {
    width: 60%;
    padding-right: 2%;
    align-self: center;
}

.picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading-title {
    font-family: 'IowanOld Style Roman', sans-serif;
    font-size: 5em;
    font-weight: 200;
    line-height: 0.8em;
    margin: 0 0 0.5em;
}

.heading-title span {
    font-size: 50px;
    display: block;
}

.img-branche {
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
}

.site-footer {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer p{
    font-size: 14px;
    text-align: center;
    padding: 0 2em;
    margin: 0px;
}

.site-footer a{
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover{
    color: #7e48c8;    
}


/*================= RESPONSIVE ================*/

@media screen and (max-width: 1280px) {
    .site-content {
        justify-content: space-between;
        min-height: 600px;
    } 

    .column-image {
        padding-right: 0%;
    }

    .img-branche {
        width: 400px;
        height: auto;
    }

    .heading-title {
        font-size: 4em;
    }

    .heading-title span {
        font-size: 40px;
    }
}

@media screen and (min-width: 769px) and (max-width: 980px){
    body {
        background: url('../img/bg-cercle-top-left.png') left top no-repeat, url('../img/bg-nuages.png') left top 20% no-repeat;
        background-size: auto, cover;
        background-color: #1a1f23;
    }

    .picture {
        width: 100%;
        height: auto;
    }

    .img-branche {
        width: 300px;
        height: auto;
    }

}

@media screen and (max-width: 768px) {
    body {
        background: url('../img/bg-cercle-top-left.png') left top no-repeat, url('../img/bg-nuages.png') left top 20% no-repeat;
        background-color: #1a1f23;
    }
    .site-header {
        height: 100px;
    }
    
    .site-content {
        flex-direction: column;
        min-height: auto;
    }  

    .column-image, .column-content {
        width: 100%;
    }

    .column-image {
        margin-bottom: 3em;
    }
    .column-content {
        padding-right: 0;
    }


    .heading-title span {
        display: inline-block; 
        font-size: 64px;
    }

    .img-branche {
        width: 200px;
        height: auto;
    }
}

@media screen and (max-width: 540px) {
    body {
        background: url('../img/bg-cercle-top-left.png') left top no-repeat, url('../img/bg-nuages.png') left top 5% no-repeat;
        background-size: 200px auto, auto;
        background-color: #1a1f23;
    }

    .site-content, 
    .site-header, 
    .site-footer {
        width: 90%;
    }

    .site-content {
        padding: 1.5em;
    }

    .img-on-mobile{
        width: 190px;
        height: auto;
    }

    .heading-title span {
        display: block;
        font-size: 50px; 
    }

    .img-branche {
        width: 100px;
        height: auto;
    }

}