/*    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: 30vw;
        margin-left: 5px;
        font-size: 2.5vw;
        font-weight: bold;
        border-right: solid 1px black;
    }

    .navbar_titolo{
        width: 70vw;
        font-size: 3.5vw;
    }

    .navbar_social{
        width: 12vw;
    }

    .navbar_social img{
        width: 12vw;
    }

    .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: 20% 0% 0% 0%;
        padding: 3% 0% 0% 0%;
        border-radius: 0% 0% 10% 0%;
    }

    .menu_responsive a{
        z-index: 3;
        font-size: 7vw;
        padding: 0vw 2vw;
        text-decoration: none;
    }

    /*##### HOME #####*/

    .container_home{
        background-image: url('../img/webp_img/sfondo_phone.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .container_prodotti{
        flex-direction: column;
    }

    .prodotto img{
        width: 25vh;
    }

    .prodotto a{
        font-size: 5vw;
    }

    .prodotto a:hover{
        border-radius: 3vw;
        transition: calc(0.3s);
    }

    .prodotto a:not(:hover){
        border-radius: 3vw;
        transition: calc(0.3s);
    }
}

/* Smartphone in Orizzontale */
@media only screen and (max-width: 1000px) and (max-height: 500px) {

}