/* ----------------------- 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);
}

/* ----------------------- 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%;
}

/* ----------------------- MASSAGE 1 --------------------------- */

.massage-first, .massage-second{
    height: 1600px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

section img{
    width: 100%;
    height: 800px;

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

.informations-container{
    height: 45%;
    padding: 80px 40px 40px 40px;

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

.informations-container > div{
    width: 80%;
    
    display: flex;
    flex-direction: column;
    
}

.informations-container > div > p:first-child{
    margin-bottom: 15px;
}

.informations-container ul{
    margin-left: 5%;
}

/* ----------------------- PROMO --------------------------- */

.promo{
    height: 300px;
    padding: 60px 0 60px 0;

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

/* ----------------------- MASSAGE 2 --------------------------- */

.massage-second .informations-container{
    justify-content: space-around;
}

.massage-second .informations-container > div{
    height: 40%;
    padding: 20px 0 20px 0;

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

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

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

    .hero h1{
        margin-bottom: 50px;
        text-align: center;
    }

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

    /* hammam sauna */

    .massage-first, .massage-second {
        height: 250vh;
    }

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

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

    /* promo */

    .promo{
        height: 30vh;
    }

    .promo p {
        width: 80%;
        padding: 40px 60px;
    }
    
    
}