@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body { 
    font-family: 'roboto', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #F7CEC3;
    font-size: 1.5vw;
    overflow-x: hidden;
}

::-webkit-scrollbar { display: none; }

#titolo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FAB7A6;
    font-family: 'Great Vibes', cursive;
    padding: 30px;
    width: fit-content;
    border-radius: 30px;
    font-size: 3rem;
}

#welcome_text {
    text-align: center;
    margin: 50px;   
}

#foto_davide {
    width: 40vw;
    margin: 30px 40px;
    border: solid 2px #FAB7A6;
    border-radius: 30px;
    animation: foto linear 1s;
}

@keyframes foto {
    0% { transform: rotateY(-90deg); margin-left: 10%; }
    100% { }
}

#descr_davide {
    position: absolute;
    width: 50vw;
    right: 2vw;
    top: 50px;
    text-align: center;
    background-color: #FAC5A5;
    padding: 20px;
    border-radius: 30px;
}

#foto_davide_orizz {
    width: 50vw;
    border: solid 2px #FAB7A6;
    border-radius: 30px;
    position: absolute;
    right: 3vw;
    bottom: 5vw;
    height: 20vw;
    object-fit: cover;
    object-position: 0 -150px;
}

#corsi_carousel {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 100px 0;
    background-color: #FAB7A6;
    display: flex;
    overflow: auto;
    gap: 50px;
    padding: 0 20px;
}

.carousel_video_corsi {
    display: block;
    margin-top: 50px;
    width: 600px;
    height: 400px;
}

.info_button_corsi {
    background-color: black;
    color: white;
    position: absolute;
    bottom: 0;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.descr_corso {
    position: absolute;
    font-size: 1.3vw;
    width: 350px;
    text-align: center;
    height: 300px;
    left: 50%;
    bottom: 46px;
    padding: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transform: translateX(-50%);
    animation: show_up 1s linear;;
}

@keyframes show_up {
    0% { height: 0; font-size: 0px; }
    100% {}
}

#foto_scheletro {
    width: 25vw;
    margin: 30px 40px;
    border: solid 2px #FAB7A6;
    border-radius: 30px;
    position: relative;
    left: 100vw;
    transform: translateX(-120%);
}

#descr_anatomia {
    position: absolute;
    width: 60vw;
    left: 2vw;
    top: 100px;
    text-align: center;
    background-color: #FAC5A5;
    padding: 20px;
    border-radius: 30px;
}

#foto_spettacolo {
    width: 40vw;
    margin: 30px 40px;
    border: solid 2px #FAB7A6;
    border-radius: 30px;
}

#descr_spettacolo {
    position: absolute;
    width: 50vw;
    right: 2vw;
    top: 20px;
    text-align: center;
    background-color: #FAC5A5;
    padding: 20px;
    border-radius: 30px;
}



.hide { display: none; }


@media (max-width: 800px) {

    body { font-size: 1rem; }

    #titolo {font-size: 1.8rem; padding: 20px;}

    #welcome_text {margin: 50px 20px;}

    #foto_davide { width: 80vw; }

    #descr_davide { position: relative; width: 80vw; margin: 0 10vw; }

    #foto_davide_orizz { display: none; }

    #corsi_carousel {
        margin: 10vh 0;
        height: 400px;
        width: 100%;
        margin: 0;
        gap: 30px;
    }

    .carousel_video_corsi {
        display: block;
        margin-top: 50px;
        width: 350px;
        height: 250px;
    }

    .descr_corso {
        font-size: 2.5vw;
        width: 250px;
        height: 200px;
        left: 50%;
        padding: 10px;
        bottom: 100px;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        transform: translateX(-50%);
        animation: show_up 1s linear;
    }

    .info_button_corsi {
        font-size: 1.5rem;
        border-radius: 30px;
    }

    #foto_scheletro { width: 80vw; margin-left: 10vw; }

    #descr_anatomia { 
        background-color: rgba(250, 197, 165, 0.6); 
        backdrop-filter: blur(4px); 
        width: 80vw; 
        left: 10vw;
    }

    #foto_spettacolo {
        width: 90vw;
        margin: 30px 5vw;
        border: solid 2px #FAB7A6;
        border-radius: 30px;
    }

    #descr_spettacolo {
        position: relative;
        width: 80vw;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        text-align: center;
        background-color: #FAC5A5;
        padding: 20px;
        border-radius: 30px;
    }

}