*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Estilização header e navbar */

header{
    height: 85vh;
    width: 100%;
    background-image: url(./assets/bg-mykonos.jpg);
    background-position: center center;
    background-size: cover;
    padding-top: 50px;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 0 50px;
    height: 60px;
    width: 80vw;
    margin: auto;
}

.container-nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-nav h2{
    color: #6c6969;
}

.nav-menu{
    display: flex;
    list-style: none;
}

.nav-item{
    margin: 0 20px;
    text-transform: uppercase;
    color: #6c6969;
}

/* Estilização quartos principais */

.rooms{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rooms h2{
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #6c6969;
    margin: 50px 0;
}

.main-rooms{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.main-rooms .card-room{
    width: 620px;
    height: 420px;
    margin-bottom: 20px;
}

.card-room .photo-room{
    width: 100%;
    height: 80%;
}

.card-room .photo-room img{
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.card-room .description-room{
    display: flex;
    height: 20%;
    background-color: #d5d5d5;
    color: #6c6969;
}

.card-room .description-room .text-room{
    width: 90%;
    padding: 8px 12px;
}

.card-room .description-room .text-room h3{
    font-size: 22px;
    letter-spacing: .8px;
    line-height: 2rem;
    font-weight: bold;
}

.card-room .description-room .text-room p{
    font-size: 18px;
    line-height: 1.6rem;
    font-weight: 400px;
}

.card-room .description-room .icon-eye{
    background-color: #630b5e;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-room .description-room .icon-eye i{
    color: white;
    font-size: 22px;    
}

.card-room .description-room .icon-eye:hover{
    background-color: #7a1f75;
    transition: .3s ease;
    cursor: pointer;
}

/* Estilização quartos secundários */

.secondary-rooms{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 30px;
    padding-top: 20px;
    background-color: #d5d5d5;
}

.card-room-secondary{
    width: 450px;
    height: 300px;
    margin-bottom: 20px;
}

.card-room-secondary .photo-room{
    width: 100%;
    height: 80%;
}

.card-room-secondary .photo-room img{
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.card-room-secondary .description-room{
    display: flex;
    height: 20%;
    background-color: white;
    color: #6c6969;
}

.card-room-secondary .description-room .text-room-secondary{
    width: 90%;
    padding: 8px 12px;
}

.description-room .text-room-secondary h3{
    font-size: 20px;
    letter-spacing: .8px;
    line-height: 1.8rem;
    font-weight: bold;
}

.description-room .text-room-secondary p{
    font-size: 14px;
    line-height: 1.2rem;
    font-weight: 400px;
}

.card-room-secondary .description-room .icon-eye{
    background-color: #630b5e;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-room-secondary .description-room .icon-eye:hover{
    background-color: #7a1f75;
    transition: .3s ease;
    cursor: pointer;
}

.card-room-secondary .description-room .icon-eye i{
    color: white;
    font-size: 22px;    
}

/* Estilização dos nossos serviços */

.container-service{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-service h2{
    text-transform: uppercase;
    font-weight: bold;
    color: #6c6969;
}

.container-service .service{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: 30px auto;
}

.service .service-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 25px;
}

.service-item .service-image{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.service-item .service-image img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.service-item .description-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    color: #6c6969;
}

.description-item h3{
    font-size: 22px;
    letter-spacing: .8px;
    line-height: 2rem;
    font-weight: bold;
}

.description-item p{
    font-size: 18px;
    line-height: 1.2rem;
    font-weight: 400px;
}

.description-item button{
    background-color: #630b5e;
    border: none;
    color: white;
    font-size: 16px;
    padding: 5px 32px;
    margin: 16px 0;
    cursor: pointer;
}


.description-item button:hover{
    background-color: #7a1f75;
    transition: .3s ease;
    cursor: pointer;
}

/* Estização footer */

footer{
    background-color: #410b3f;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.container-footer{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    width: 80%;
    margin: auto;
    color: white;
}


.contact .contact-menu{
    font-size: 14px;
    font-weight: 400;
    list-style: none;
    margin-top: 8px;
}

.contact-menu .contact-item{
    margin: 8px 0;
}

.container-footer .about p{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2rem;
    text-align: left;
    margin: 8px 0;
}

@media (min-width: 769px) and (max-width: 1025px) {
    .nav-menu{
        display: none;
    }

    .nav-mobile-icon{
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        cursor: pointer;
    }

    .nav-mobile-icon span{
        background-color: #717171;
        width: 30px;
        height: 4px;
        margin: 4px 0;
    }
}

@media (max-width:768px){
    header{
        height: 65vh;
    }

    .navbar{
        padding: 0 25px;
    }

    .nav-menu{
        display: none;
    }

    .nav-mobile-icon{
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        cursor: pointer;
    }

    .nav-mobile-icon span{
        background-color: #717171;
        width: 30px;
        height: 4px;
        margin: 4px 0;
    }

    .container-footer{
        padding: 0;
    }

    .contact{
        margin-right: 30px;
    }

    .main-rooms .card-room, .card-room-secondary{
        width: 355px;
        height: 300px;
    }

    .card-room .description-room .text-room{
        padding: 0 12px;
    }

}