/*
Theme Name: Studiane
Description: Studiane Theme
Author: Claire Dornic
Template: twentytwenty
Version: 1.0.0
License: GNU General Public License v2 or later
License URL: https://www.gnu.org/licenses/gpl-2.0.html
*/


/* Placer votre CSS ci-dessous */

@font-face {
    font-family: "sansation";
    font-weight: 500;
    src: url('/wp-content/themes/twentytwenty-child/fonts/Sansation_Regular.ttf');
}

@font-face {
    font-family: "sansation";
    font-weight: 300;
    src: url('/wp-content/themes/twentytwenty-child/fonts/Sansation_Light.ttf');
}

body,
html {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: sansation;
}

#site-content {
    height: 100%;
    width: 100%;
    display: inline-flex;
}

.content-home {
    width: 70%;
    background-color: #161616;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-home {
    width: 30%;
}

.img-home img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

h1 {
    text-transform: uppercase;
    font-size: 65px;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.title {
    text-align: center;
}

h1,
h3 {
    color: #FA8F19;
}

h3 {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.desc-entreprise {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0 2rem 0;
}

.desc-entreprise p {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    margin: 7px 0;
    width: 80%;
}

.coming-soon p {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    margin: 5px 0 30px 0;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

.contact img {
    width: 230px;
    padding: 10px 0;
}

.social-media {
    display: inline-flex;
    justify-content: space-around;
    width: 15%;
}

.social-media a {
    cursor: pointer;
}

.social-media img {
    width: 32px;
    height: auto;
}

@media screen and (max-width: 1440px) {
    h1 {
        font-size: 57px;
        padding-top: 1rem;
    }
    h2 {
        font-size: 14px;
    }
    h3 {
        font-size: 30px;
    }
    .desc-entreprise {
        padding: 3rem 0 2rem 0;
    }
    .social-media {
        padding-top: 1rem
    }
}

@media screen and (max-width: 768px) {
    #site-content {
        display: flex;
        flex-direction: column-reverse;
    }
    .content-home {
        width: 100%;
        background-color: #161616;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .img-home {
        width: 100%;
        height: 25rem;
    }
    .img-home img {
        object-position: 0px -250px;
    }
}

@media screen and (max-width: 500px) {
    body {
        height: auto;
    }
    .content-home {
        padding-bottom: 1rem;
    }
    .img-home {
        height: 15rem;
    }
    .img-home img {
        object-position: 0;
    }
    .content-home {
        padding: 0 10px;
    }
    .social-media {
        width: 50%;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        width: 70%;
        margin: 0 auto;
    }
    h3 {
        padding-bottom: 1rem;
    }
}