@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* HEADER */

header {
    background-image: url('Images/logo-gris.png ');
    background-position: left;
    /* background-color: gray; */
    background-size: contain;
    background-repeat: no-repeat;
    /* padding-bottom: 300px; */

    height: 700px;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 280px; */
    position: relative;
    height: 90%;
}

.phone {
    display: none;
}

.title-container img {
    position: absolute;
    z-index: 0;
    left: 0;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.title h1 {
    font-size: 100px;
    margin: 0;
    margin-bottom: -20px;
    z-index: 1;
    font-family: "Libre Bodoni", serif;
    font-weight: bolder;
}

.title p {
    margin: 0;
    margin-left: 20px;
    font-weight: bolder;
    z-index: 1;
}

@media screen and (max-width: 1170px) {
    header {
        background-image: url('Images/IMG_0674-removebg-preview\ 3.png');
        padding-bottom: 0;
        background-size: contain;
        height: 450px;
    }

    .pc {
        display: none;
    }

    .phone {
        display: flex;
    }

    .title h1 {
        font-size: 20vw;
    }
    .title p {
        margin-top: 10px;
        font-size: 3vw;
        margin: 0;
        text-align: center;
    }
}


/* DISCOVER */

.discover {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 100px; */
}

.discover .text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}

.discover h1 {
    font-size: 45px;
    font-weight: bolder;
    max-width: 800px;
    margin: 0;
}

.discover p {
    font-size: 20px;
    margin: 0;
    max-width: 900px;
}

.discover a {
    color: white;
    text-decoration: none;
    margin: 0;
}

.discover button {
    margin-top: 15px;
    padding: 15px;
    background-color: black;
    color: white;
    border: none;
    font-size: 15px;
    cursor: pointer;
    z-index: 700;
}

.discover-phone {
    display: none;
}

@media screen and (max-width : 830px) {
    .discover {
        /* padding: 100px 40px; */
        flex-direction: column;
        gap: 0;
    }

    .discover-pc {
        display: none;
    }

    .discover h1 {
        font-size: 40px;
    }

    .discover-phone {
        display: block;
        width: 100%;
        margin-top: -70px;
        z-index: -700;
    }

    .discover .text {
        padding: 20px;
        padding-bottom: 0;
    }
}

/* CONTACT */

.contact {
    background-color: black;
    /* height: 822px; */

    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap-reverse;

    padding: 100px 20px;
}

.contact img {
    max-width: 500px;
    width: 100%;
}

.contact .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact h1 {
    color: white;
    font-size: 50px;
    font-weight: bolder;
    margin: 0;
}

.contact p {
    font-size: 25px;
    color: white;
    margin: 0;
    width: 500px;
    text-align: center;
}

.contact a {
    color: white;
    text-decoration: none;
    margin: 0;
}

.contact button {
    padding: 10px;
    background-color: white;
    color: black;
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

@media screen and (max-width : 500px) {

    .contact h1 {
        font-size: 40px;
    }

    .contact p {
        font-size: 20px;
        width: auto;
    }

    .contact {
        padding: 50px 20px;
        gap: 30px;
    }
}

/* BOUTIQUE */

.boutique {
    background-color: #F8F8F8;
    margin: 70px 70px;


    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.boutique img {
    margin-right: 80px;
    max-width: 500px;
    width: 40%;
}

.boutique .text {
    position: relative;
    padding: 80px;
    padding-right: 0;
}

.boutique h1 {
    font-size: 50px;
    margin: 0;
}

.boutique p {
    font-size: 25px;
    max-width: 600px;
}

.boutique a {
    color: black;
    text-decoration: none;
    margin: 0;
}

.boutique button {
    position: absolute;
    bottom: 0;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 80px;
}

@media screen and (max-width : 1000px) {
    .boutique {
        margin: 100px 50px;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .boutique .text {
        padding: 0;
        padding-top: 80px;
    }

    .boutique img {
        margin: 0;
    }

    .boutique h1 {
        font-size: 40px;
    }

    .boutique p {
        font-size: 20px;
        width: auto;
    }

    .boutique button {
        font-size: 17px;
        position: relative;
        margin-bottom: 0;
    }
}

@media screen and (max-width : 700px) {
    .boutique {
        margin: 20px 20px;
        padding: 20px;
        padding-bottom: 0;
    }

    .boutique .text {
        padding-top: 0;
    }

    .boutique img {
        width: 80%;
    }

}