/* ----------------------- GENERAL --------------------------- */

.btn {
    height: 77px;
    width: 289px;

    margin: 20px;

    background: linear-gradient(#A2A183, #A2A183) padding-box,
                linear-gradient(130deg, #A2A183, #6D6B48) border-box;
    border-radius: 131px;
    border: 2px solid transparent;

    color: white;

    transition: all 0.2s ease;
    transform: scale(1);
}

.btn:hover {
    border: 3px solid #6D6B48;
    transform: scale(1.1);
}

section p, section ul {
    width: 70%;
}

section ul{
    margin-left: 10%;
}

/* ----------------------- HERO --------------------------- */

.hero{
    height: 500px;
    padding: 0px 90px 60px 90px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hero h1{
    color: #5B5535;
}

.hero p{
    width: 70%;
    margin-left: 30px;
}

/* ----------------------- BEAUTE 1 --------------------------- */

.beaute-first{
    height: 1400px;
}

.beaute-first img{
    width: 100%;
    height: 700px;

    object-fit: cover;
    object-position: 50% 50%;
}

.beaute-first .informations-container{
    height: 45%;
    padding: 5%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

/* ----------------------- BEAUTE 2 --------------------------- */

.beaute-second{
    height: 900px;

    display: flex;
}

.beaute-second img{
    width: 50%;
    height: 900px;
}

.beaute-second .informations-container{
    padding: 5%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

/* ----------------------- BEAUTE 3 --------------------------- */

.beaute-third{
    height: 600px;
    padding: 8% 5% 8% 5%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

/* ----------------------- BEAUTE LAST --------------------------- */

.beaute-last{
    height: 1000px;
    padding-bottom: 5%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.beaute-last img{
    width: 100%;
    height: 700px;

    object-fit: cover;
    object-position: 50% 50%;
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */

@media screen and (max-width: 1000px) {
    .hero{
        height: 50vh;
        align-items: center;
        padding: 0;
    }

    .hero h1{
        text-align: center;
    }

    .hero p{
        margin: 0;
    }

    .btn{
        height: fit-content;
        width: fit-content;
        padding: 20px 30px 20px 30px;
    }

    section img {
        height: 70vh;
        margin-bottom: 50px;
    }

    /* beaute 1 */

    .beaute-first{
        height: 160vh;
    }

    .beaute-first img{
        height: 60vh;
    }

    .beaute-first .informations-container{
        height: 90%;
        justify-content: space-around;
    }

    .beaute-second{
        height: 180vh;
        flex-direction: column;
    }

    .beaute-second img {
        width: 100%;
        height: 70vh;
    }

    .beaute-second .informations-container{
        height: 90%;
        justify-content: space-around;
    }

    .beaute-third{
        height: 100vh
    }


    /* promo */

    .beaute-last{
        height: 120vh;
    }

    .beaute-last img{
        height: 60vh;
    }
    
    
}