/*    DIMENSIONI IPAD:
    - iPhone 6/7/8 Plus: 414x736
    - iPhone 12 Pro: 390x844
    - iPhone X: 375x812
    - iPhone XR: 414x896
    - iPhone SE: 375x667
    - iPhone 14 Pro Max: 430x932
*/

/* Stili responsive per schermi fino a 700px (smartphone) */
@media only screen and (max-width: 700px) {

    /*##### NAVBAR #####*/

    .navbar_menu{
        width: 40vw;
        margin-left: 5px;
        font-size: 2.5vw;
        font-weight: bold;
        border-right: solid 1px black;
    }

    .navbar_titolo{
        width: 78vw;
        font-size: 3.5vw;
        border-right: solid 1px black;
    }

    .navbar_social{
        width: 7vw;
    }

    .navbar_social img{
        width: 7vw;
    }

    .tasto_canzone img{
        margin-right: 20px;
        width: 5vh;
        border-radius: 100px;
        background-color: rgb(224, 224, 224);
        border: solid 3px rgb(0, 238, 255);
        box-shadow: -2px 2px px rgb(0, 238, 255);
        cursor: pointer;
    }

    .navbar_menu{
        display: none;
    }

    .tasto_menu_responsive{
        z-index: 4;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 15vw;
    }

    .tasto_menu_responsive img{
        width: 10vw;
    }

    .menu_responsive{
        z-index: 3;
        position: absolute;
        margin: 9% 0% 0% 0%;
        padding: 3% 0% 0% 0%;
        border-radius: 0% 0% 10% 0%;
    }

    .menu_responsive a{
        z-index: 3;
        font-size: 5vw;
        padding: 0vw 2vw;
        text-decoration: none;
    }

    /*##### HOME #####*/

    .container_home_phone{
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: auto;
        background-color: white;
    }

    .container_uno{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        height: 160vh;
        background-color: white;
    }

    .tasto_uber {
        position: fixed;
        bottom: 0;
        right: 0;
        bottom: 0px;
        right: 3px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 20vw;
        cursor: pointer;
        z-index: 4;
    }

    .tasto_uber:not(:hover){
        transition: calc(0.5s);
    }

    .spazio_vuoto{
        display: flex;
        width: 100vw;
        height: 7vh;
        z-index: 0;
    }

    .home_booknow{
        height: 75vh;
        width: 98vw;
        margin-top: 0;
    }

    .home_immagine{
        opacity: 0;
        width: 0;
    }

    .home_testo h3{
        font-size: 6.5vw;
        font-weight: bold;
    }

    .discount_two_guest{
        width: 90vw;
    }

    .two_guests{
        font-size: 5vw;
    }
    
    .testo_home{
        width: 90vw;
        font-size: 2vh;
        text-align: center;
    }

    .testo_position{
        font-size: 5vw;
    }

    .home_bottone{
        width: 100vw;
        align-items: center;
    }

    .home_bottone a{
        font-size: 6vw;
        border-radius: 20px;
    }

    .discount{
        font-size: 5vw;
    }

    .container_scroll{
        width: 100vw;
        align-items: center;
    }

    .container_scroll p{
        font-size: 5vw;
    }

    .separatori{
        display: none;
    }

    /*##### HOME #####*/

    .container_img_foto{
        height: 120vh;
        flex-direction: column;
        justify-content: center;
    }

    .img_foto{
        height: 40vh;
        width: 70vw;
        margin: 3px;
    }

    .titolo_stanze{
        align-items: flex-start;
    }

    /*##### SERVICE #####*/

    .container_categorie_service{
        flex-direction: column;
        justify-content: center;
    }

    .cont_service{
        height: 40vh;
        width: 70vw;
        margin: 3px;
    }
    
    .categoria_service{
        height: 4vh;
        font-size: 3vw;
    }
    
    .categoria_service_2{
        width: auto;
        height: 9vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 4vw;
        font-weight: bold;
    }

    .categoria_service_2 a{
        font-size: 3vw;
    }

    .timetable_service{
        border-bottom: solid 1px blue;
    }

    .titolo_service_eat h1{
        font-size: 5vw;
    }

    .where_eat a{
        border-bottom: solid 1px rgb(200, 0, 0);
    }

    .categoria_service_eat_2{
        width: auto;
        height: 12vh;
        font-size: 3.5vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-weight: bold;
    }
}

/* Smartphone in Orizzontale */
@media only screen and (max-width: 1000px) and (max-height: 500px) {

}