/*    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: 65vw;
        font-size: 2.5vw;
        border-right: solid 1px black;
    }

    .navbar_social{
        width: 10vw;
    }

    .navbar_social img{
        width: 5vw;
    }

    .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;
    }

    /*##### HOME #####*/

    .home_immagine{
        opacity: 0;
        width: 0;
    }

    .home_testo h3{
        font-size: 8vw;
    }
    
    .testo_home{
        width: 80vw;
        font-size: 4vw;
        text-align: center;
    }

    .home_booknow a{
        font-size: 5vw;
        border-radius: 20px;
    }

    .discount{
        font-size: 5vw;
    }

    .container_scroll{
        width: 100vw;
        align-items: center;
    }

    .container_scroll p{
        font-size: 4vw;
    }


    /*##### 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) {

}