/* Gestione generale dei componenti della HomePage */
* {
    margin: 0;
    padding: 0;
}

.body{
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

/*----- Navbar -----*/


.book_sconto{
    position: fixed;
    height: 12vh;
    width: 100vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    font-size: 4vh;
    font-weight: bold;
    color: red;
    background-color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navbar{
    width: 100vw;
    height: 7vh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(17, 51, 102);
    color: white;
    z-index: 2;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 25vw;
}

.tasto_menu_responsive{
    display: none;
}

.menu_responsive{
    display: none;
}

.menu a{
    text-decoration: none;
    color: white;
    font-size: 2vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-shadow:
        0px 0px 0px 1px #4a78dc inset,
        0px 4px 0px 0px #375ce1,
        0px 5px 0px 0px rgba(0,0,0,.15);
    background-color: rgb(31, 74, 138);
    border-radius: 25px;
    color: white;
    padding: 3px 10px;
}

.menu a:hover{
    transition: calc(0.3s);
    color: rgb(249, 162, 0);
    border-radius: 10px;
    background-color: transparent;
}

.menu a:not(:hover){
    transition: calc(0.3s);
}

.titolo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vh;
    width: 40vw;
}

.titolo span{
    font-size: 1.7vh;
}

.social{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
}

.social a img{
    height: 40px;
    width: 40px;
}

.social a img:hover{
    transition: calc(0.7s);
    opacity: calc(50%);
}

.social a img:not(:hover){
    transition: calc(0.7s);
}

/*----- Container principale -----*/

.container_main{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-image: url('/Source/backup_img/camera1/terrazzo_1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    height: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Bottone BOOK NOW */

.center{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10vh;
}

.bottone{
    font-size: 4vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-shadow:
        0px 0px 0px 1px #4a78dc inset,
        0px 0px 0px 2px #5486c0 inset,
        0px 4px 0px 0px #375ce1,
        0px 5px 0px 0px #091fc8,
        0px 5px 0px 0px rgba(0,0,0,.15);
    background-color: rgb(31, 74, 138);
    border-radius: 25px;
    color: white;
    padding: 10px;
}

.bottone:hover{
    background-color: transparent;
    border-radius: 15px;
    border-color: black;
    padding: 10px;
    color: rgb(255, 255, 255);
    transition: calc(0.5s);
    cursor: pointer;
}

.bottone:not(:hover) {
    transition: calc(0.5s);
}

.find_more{ /* Pulsante per andare a vedere il cotainer wh choose us?*/
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.bottone_choose{
    background-color: whitesmoke;
    border-radius: 25px;
    color: black;
    padding: 7px 10px;
    box-shadow:
    0px 0px 0px 1px #cfe5ff inset,
    0px 0px 0px 2px #e5f1ff inset,
    0px 4px 0px 0px #5479ff,
    0px 5px 0px 0px #384fff,
    0px 5px 0px 0px rgba(0,0,0,.15);
}

.bottone_choose:hover{
    background-color: transparent;
    border-radius: 15px;
    border-color: black;
    color: rgb(255, 255, 255);
    transition: calc(0.5s);
    cursor: pointer;
}

.bottone_choose:not(:hover){
    transition: calc(0.5s);
}

.linea{
    width: 100vw;
    height: 0.5vh;
    background-color: black;
}

/*-------- Pagina Why Choose Us --------*/

.container_information{
    display: flex;
    height: 100vh;
    width: 100vw;
    background-color: whitesmoke;
    min-height: 100vh;
}

.text_information{
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.5vw;
}

.titolo_info{
    font-size: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(17, 51, 102);
}

.text_info{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    width: 40vw;
}

.linea_vr{
    width: 0.3vw;
    background-color: black;
}

.immagine_laterale{
    width: 50vw;
    background-image: url('/Source/img_varie/champagne_2.webp');
    background-repeat: no-repeat;
    background-size: cover;
}