/* ----------------------- 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: 600px;
    padding: 60px 90px 140px 90px;

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

.hero h1{
    color: #5B5535;
}

.hero .informations-container{
    height: 40%;

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

.hero .left{
    width: 50%;
    height: 100%;

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

/* ----------------------- HAMMAM --------------------------- */
/* ----------------------- SAUNA --------------------------- */

.hammam, .sauna{
    height: 1300px;

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

.hammam img{
    width: 100%;
    height: 700px;

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

.hammam .informations-container, .sauna .informations-container{
    height: 45%;
    width: 80%;

    padding: 60px 40px 60px 40px;

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

.sauna img{
    width: 100%;
    height: 700px;

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

/* ----------------------- PROMO --------------------------- */
.promo{
    height: 300px;
    padding: 60px 0 60px 0;

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


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

@media screen and (max-width: 1000px) {
    .hero{
        height: 70vh;
    }

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

    .hero .informations-container {
        height: 90%;
        flex-direction: column;
    }

    .hero .left {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

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

    /* hammam sauna */

    .hammam, .sauna {
        height: 200vh;
    }

    .hammam .informations-container, .sauna .informations-container {
        height: 100%;
    }

    .hammam img, .sauna img {
        height: 100vh;
    }

    /* promo */

    .promo{
        height: 30vh;
    }

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