
/* 
    Created on : 12 dic 2025, 19:25:37
    Author     : davide
*/
html 
{
    font-size: 100%; 
}
body
{
    font-size: 1rem;
}
header
{
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    background-color: var(--color-gray-light);
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    padding: 0 15px;
    z-index: 9
}
a:link,a:visited
{
    color: var(--color-dark);

}
a:hover,a:visited:hover
{
    color: var(--color-pr);

}
p
{
    font-size: 0.9rem;
    line-height: 1.3rem;
    ;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 10px;
}
b
{
    font-weight: 600;
}
h2
{
    font-weight: 200;
    font-size: 2.4rem;
    line-height: 1;

}
section h2
{
    margin-bottom: 30px;
}
h3
{
    font-weight: 200;
    font-size: 2rem;
    line-height: 1;

}
section h3
{
    margin-bottom: 15px;
}
.shadow-img
{
    box-shadow: 0 0 10px rgba(50,50,50,0.7);
}
.color-pr
{
    color: var(--color-pr) !important;

}
.color-white
{
    color: var(--color-white) !important;

}
.color-dark
{
    color: var(--color-dark) !important;

}
.color-text-dark
{
    color: var(--color-text-dark) !important;

}
.bg-color-pr
{
    background-color: var(--color-pr) !important
}
.bg-color-white
{
    background-color: var(--color-white) !important
}
.bg-color-gray
{
    background-color: var(--color-gray-light) !important
}
.bg-color-gray-2
{
    background-color: var(--color-gray-light-2) !important
}
.display-none
{
    display: none;
}


#logo-header
{
    width: 100px;
    display: block;
}
header nav ul
{
    display: flex;

}
header nav ul
{
    display: flex;
    justify-content: end;
    gap: 8px;
    flex-wrap: wrap;
}
#btn-menu-mobile
{
    display: block;
    font-size: 2rem;
    color: var(--color-pr);
}
#divide-line
{
    width: 1px;
    height: 30px;
    background-color: var(--color-dark);
    margin: auto;
}
main
{
    padding-top: 80px;
}
#jt
{
    margin-top: 50px
}
#jt h1
{
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 200;
}
#jt h2
{
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-pr);
    font-weight: 400;
}
#jt p
{
    font-size: 1rem;
    line-height: 1.3rem;
    ;
    margin: 10px auto 25px;
    color: var(--color-text-dark);
}
.btn
{
    width: 100%;
    height: 40px;
    border-radius: 3px;
    color: var(--color-text);
    outline: 1px solid var(--color-pr);
    box-shadow: 0 0 4px rgba(50,50,50,04);
    background-color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
}
#divide-h1
{
    margin: 25px auto;
    width: 100%;
    background-color: var(--color-gray-light-2);
    height: 1px;
}

.jt-img
{
    object-fit: cover;
  width: 100%;
  height: 100%;
}
.jt-img.fade-out
{
    opacity: 0;
    transform: scale(1.4);
    transition: opacity 600ms  ease-in-out,transform 800ms  ease-in-out;
}
#wrapper-jt-img
{
    border-radius: 100px 25px 100px 25px;
    margin-top: 0px;
    height: 280px;
    overflow: hidden;
}


#box-about
{
    background-color: var(--color-gray-light);
    border-radius: 70px 0 70px 0;
    padding: 40px 30px;
}
.img-poster
{
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.img-poster-sx
{
    height: 300px;
    border-radius: 40px 10px 40px 10px
}
.img-poster-sx-pizze
{
    height: 270px;
    border-radius: 40px 10px 40px 10px
}
.img-poster-dx
{
    height: 320px;
    border-radius: 10px 70px 10px 70px;
    margin-top: 50px
}
.img-poster-dx-pizze
{
    height: 320px;
    border-radius: 10px 70px 10px 70px;
    margin-top: 30px
}

#wrapper-gallery
{
    column-count: 2;
    background-color: var(--color-white);
    column-gap: 8px;
    margin-top: 8px;
    padding-left: 1px;
    padding-right: 1px;
}
#wrapper-gallery img
{
    margin-bottom: 8px;
    display: block;
    width: 100%;
    max-width: none;
    border-radius: 2px;


}
#box-btn-pdf-menu
{
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5px 5px 0 0;
}
#box-btn-pdf-menu p
{
    margin-bottom: 20px;
}

footer
{
    background-color: var(--color-gray-light);
}
#logo-footer
{
    width: 150px;
    margin: 0 auto 20px auto
}

#nav
{
    position: fixed;
    top: 0;
    background-color: var(--color-pr);
    right: 0;
    width: 200px;
    top: 80px;
    border-radius: 0 0 0 20px;
    box-shadow: 0 6px 10px rgba(50,50,50,0.2);
    z-index: 8;
    opacity: 0;
    transform: scale(0.01,0.01);
    transform-origin: top right;
    transition: all 300ms ease-out
}
#nav.active
{
    opacity: 1;
    transform: scale(1,1);
    transform-origin: top right;
    transition: all 300ms ease-out;
}
#nav ul
{
    display: block;
    text-align: left;
    padding-left: 55px;
    padding-top: 30px;
    padding-bottom: 30px;
}
#nav ul li >a
{
    margin-bottom: 10px;
    display: block;
    color: var(--color-white) !important;

}

#link-maps
{
    margin-top: 15px;
    display: inline-block;
    text-decoration: underline;
}
#iframe-maps
{
    width: 100%;
    height: 350px;
}

.label
{
    color: var(--color-text);
    margin-bottom: 5px;
    display: block;
    font-size: 1rem;
}
.input-text
{
    width: 100%;
    height: 50px;
    padding-left: 15px;
    color: var(--color-text);
    background-color: var(--color-white);
    box-shadow: 0 0 6px rgba(50,50,50,0.2);
    margin-bottom: 10px;
    border-radius: 2px
}
.input-submit
{
    width: 100%;
    height: 50px;
    background-color: var(--color-pr);
    box-shadow: 0 0 6px rgba(50,50,50,0.2);
    color: var(--color-white);
    margin-top: 10px;
    border-radius: 2px;
    font-size: 1.1rem;
}
#wrapper-form-auth
{
    padding: 30px 50px 55px;
    background-color: var(--color-gray-light);
}
#wrapper-form-auth h1
{
    margin-bottom: 15px;
}
#img-int-auth
{
    margin: 30px auto;
}

.label-radio
{
    font-size: 1rem;
    display: inline-block;
    margin: 0 12px 0 5px;
    vertical-align: middle;
     color: var(--color-text);
}
.input-radio
{
     background-color: var(--color-white);
    box-shadow: 0 0 6px rgba(50,50,50,0.2);
    border-radius: 100px;
    outline: 1px solid var(--color-pr);
    appearance: none;
    width: 15px;
    height: 15px;
    vertical-align: middle;
}
#dd-file
{
    background-color: var(--color-white);
    box-shadow: 0 0 6px rgba(50,50,50,0.2);
    border: 2px dashed var(--color-pr);
    width: 100%;
    height: 120px;
    border-radius: 0 30px 0 30px;
    margin-top: 20px;
    position: relative;
    user-select: none;
}
#dd-file span
{
    position: absolute;
    bottom: 5px;
    right: 10px;
    color: var(--color-text)
    
}
.input-radio:checked
{
    background-color: var(--color-pr);
}

#dd-file.is-dragover 
{
  border-color: #111;
  background: rgba(0,0,0,0.04);
}

.whatsapp-float 
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 999;
}

@media (min-width:768px)
{
    header
    {
        height: 90px;
        padding: 0 60px;
    }
    #logo-header
    {
        width: 115px;
    }
    #nav
    {
        position: relative;
        top: 0;
        background-color: transparent;
        right: initial;
        width: auto;
        top: 0;
        border-radius: initial;
        box-shadow: none;
        opacity: 1;
        transform: scale(1);
    }
    #nav ul
    {
        display: flex;
        text-align: left;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    #nav ul li > a
    {
        margin-bottom: 0;
        display: block;
        color: var(--color-text-dark) !important;
        font-weight: 400;
        transition: all 300ms ease-in-out;
    }
    nav ul li > a:hover,#nav ul li > a:hover
    {

        color: var(--color-pr) !important;
        transition: all 300ms ease-in-out;
    }
    #btn-menu-mobile
    {
        display: none;
    }
    header nav ul
    {
        gap: 16px;
    }
    #divide-line
    {
        height: 40px;
        margin: auto 8px auto 8px;
    }
    #jt-img
    {
        
    }
    #wrapper-jt-img
    {
        margin-top: 0;
    }
    #box-about
    {
        padding: 50px 50px;
    }
    #jt
    {
        margin-top: 80px;
    }
    main
    {
        padding-top: 90px;
    }
    .box-info-menu p
    {
        margin-bottom: 0;
    }
    .img-poster-dx
    {
        margin-top: 65px;
    }
    #box-btn-pdf-menu
    {
        padding-left: 70px;
        padding-right: 70px;
    }
    #box-btn-pdf-menu p
    {
        margin-bottom: 30px;
    }
    .btn
    {
        height: 45px;
        transition: all 300ms ease-in-out;
    }
    .btn:hover
    {
        background-color: var(--color-pr);
        color: var(--color-white);
        transition: all 300ms ease-in-out;
    }
    .btn.on-bg:hover
    {
        background-color: var(--color-dark);
        color: var(--color-white);
        outline:1px solid var(--color-dark);
        transition: all 300ms ease-in-out;
    }
    #wrapper-gallery
    {
        column-count: 3;
    }
    .shadow-img.gallery
    {
        box-shadow: 0 0 6px rgba(50,50,50,0.6);
    }
    #link-maps
    {
        margin-top: 20px;
    }

    #img-int-auth
    {
        margin: 0 auto;
        min-height: 100vh;
        object-fit: cover;
    }
    #wrapper-form-auth
    {
        padding: 0 ;
        background-color: transparent;
    }
    main#auth
    {
        padding-top: 0;
    }
    #form-auth
    {
        padding: 50px 0 70px;
        background-color: var(--color-gray-light);
        border-radius: 0 40px 5px 0;
        width: 320px;
        margin: auto;
    }
    
    
    .label-radio
{
    font-size: 1.1rem;
    margin: 0 30px 0 7px;
}
.input-radio
{
    width: 18px;
    height: 18px;
}
    #dd-file 
    {
  height: 150px;
  border-radius: 0 60px 0 60px;
  margin-top: 25px;
}
#dd-file span 
{
  bottom: 15px;
  right: 25px;
  font-size: 1.1rem;
}

}
@media (min-width:1420px)
{
    .row
    {
        max-width: 1180px;
    }
    header
    {
        height: 110px;
        padding: 0;
    }
    #logo-header
    {
        width: 130px;
    }
    header nav ul
    {
        gap: 24px;
    }
    p
    {
        font-size: 1.1rem;
        line-height: 1.7rem;
        margin-bottom: 20px;
    }
    nav ul li > a
    {
        font-size: 1.1rem;
    }
    #divide-line
    {
        height: 45px;
        margin: auto 16px auto 16px;
    }
    #box-about
    {
        padding: 100px 120px;
        border-radius: 80px 10px 220px 10px;
    }
    #jt
    {
        margin-top: 144px;
    }
    main
    {
        padding-top: 100px;
    }
    #jt h1
    {
        font-size: 4.8rem;
    }
    #divide-h1
    {
        margin: 40px auto;
    }
    #jt h2
    {
        font-size: 2.4rem;
    }
    #jt p
    {
        font-size: 1.2rem;
        line-height: 1.8rem;
        margin: 25px auto 45px;
    }
    .btn
    {
        height: 55px;
        font-size: 1.2rem;
    }
    #jt-int
    {
        padding-left: 20px
    }
    #wrapper-jt-img
    {
        border-radius: 170px 10px 150px 10px;
        margin-top: 0px;
        object-fit: cover;
        height: 540px;
    }
    section h2
    {
        margin-bottom: 50px;
    }
    h2
    {
        font-size: 3.6rem;
    }
    .img-poster-dx
    {
        margin-top: 75px;
        height: 580px;
        border-radius:5px 120px 5px 120px;

    }
    .img-poster-sx
    {
        height: 500px;
        border-radius:110px 5px 110px 5px;
    }
    .img-poster-dx-pizze
    {
        margin-top: 75px;
        height: 580px;
        border-radius:5px 120px 5px 120px;

    }
    .img-poster-sx-pizze
    {
        height: 500px;
        border-radius:110px 5px 110px 5px;
    }
    section h3
    {
        margin-bottom: 40px;
    }
    h3
    {
        font-size: 2.4rem;
        line-height: 1;
    }
    .p-last-menu
    {
        border-bottom: 1px solid var(--color-pr);
        padding-bottom: 50px;
    }
    .p-last-menu.pizze
    {
        margin-bottom: 152px
    }
    #container-menu-pizze
    {
        padding-top: 192px;
    }
    #box-btn-pdf-menu p
    {
        margin-bottom: 40px;
    }
    #box-btn-pdf-menu
    {
        padding-left: 240px;
        padding-right: 240px;
    }
    #wrapper-gallery
    {
        column-count: 3;
        column-gap: 18px;
        margin-top: 16px;
    }
    #wrapper-gallery img
    {
        margin-bottom: 16px;
    }
    #link-maps
    {
        margin-top: 30px;
    }
    #iframe-maps
    {
        height: 500px;
    }
    #logo-footer
    {
        width: 170px;
        margin: 0 auto 30px auto;
    }
    .row-column-info-menu
    {
        padding-left: 15px;
    }
    .row-column-info-menu-pizze
    {
        padding-right: 15px;
    }


    main#auth
    {
        padding-top: 0;
    }
    #wrapper-form-auth
    {
        margin-top: 110px;
    }
    #form-auth
    {
        padding: 80px 80px 90px;
        background-color: transparent;
        border-radius: 0 90px 5px 0;
        width: auto;
    }
    #wrapper-form-auth h1
    {
        margin-bottom: 18px;
        font-size: 2.3rem;

    }
    .label
    {
        margin-bottom: 7px;
        font-size: 1.1rem;
    }
    .input-text
    {
        height: 55px;
        padding-left: 15px;
        margin-bottom: 15px;
    }
    .input-submit
    {
        height: 55px;
        margin-top: 15px;
        font-size: 1.2rem;
    }
    #box-form-auth
    {
        background-color: var(--color-gray-light);
        border-radius: 0 90px 5px 0;
    }
    
     .label-radio
{
    font-size: 1.2rem;
    margin: 0 40px 0 10px;
}
.input-radio
{
    width: 20px;
    height: 20px;
}
    #dd-file 
    {
  height: 170px;
  border-radius: 0 70px 0 70px;
  margin-top: 28px;
}
#dd-file span 
{
  bottom: 17px;
  right: 27px;
  font-size: 1.2rem;
}
.whatsapp-float 
{
  width: 76px;
  height: 76px;
}

}
@media (min-width:1780px)
{

    header
    {
        height: 120px;
        padding: 0;
    }
    #logo-header
    {
        width: 150px;
    }
    header nav ul
    {
        gap: 32px;
    }
    p
    {
        font-size: 1.2rem;
        line-height: 1.8rem;
        margin-bottom: 25px;
    }
    nav ul li > a
    {
        font-size: 1.3rem;
    }
    #divide-line
    {
        height: 48px;
        margin: auto 24px auto 24px;
    }
    #box-about
    {
        padding: 120px 160px;
        border-radius: 85px 10px 225px 10px;
    }
    #jt
    {
        margin-top: 160px;
    }
    main
    {
        padding-top: 90px;
    }
    #jt h1
    {
        font-size: 5.8rem;
    }
    #divide-h1
    {
        margin: 50px auto;
    }
    #jt h2
    {
        font-size: 3.2rem;
    }
    #jt p
    {
        font-size: 1.4rem;
        line-height: 2rem;
        margin: 30px auto 55px;
    }
    .btn
    {
        height: 65px;
        font-size: 1.3rem;
    }
    #jt-int
    {
        padding-left: 40px
    }
    #wrapper-jt-img
    {
        border-radius: 180px 10px 160px 10px;
        margin-top: 0px;
        height: 620px;
    }
    section h2
    {
        margin-bottom: 60px;
    }
    h2
    {
        font-size: 3.8rem;
    }
    .img-poster-dx
    {
        margin-top: 80px;
        height: 680px;
        border-radius:5px 130px 5px 130px;

    }
    .img-poster-sx
    {
        height: 530px;
        border-radius:120px 5px 120px 5px;
    }
    .img-poster-dx-pizze
    {
        margin-top: 80px;
        height: 680px;
        border-radius:5px 130px 5px 130px;

    }
    .img-poster-sx-pizze
    {
        height: 530px;
        border-radius:120px 5px 120px 5px;
    }
    section h3
    {
        margin-bottom: 50px;
    }
    h3
    {
        font-size: 2.8rem;
    }
    .p-last-menu
    {
        padding-bottom: 70px;
    }
    .p-last-menu.pizze
    {
        margin-bottom: 228px
    }
    #container-menu-pizze
    {
        padding-top: 208px;
    }
    #box-btn-pdf-menu p
    {
        margin-bottom: 50px;
    }
    #box-btn-pdf-menu
    {
        padding-left: 250px;
        padding-right: 250px;
    }
    #wrapper-gallery
    {
        column-count: 4;
        column-gap: 12px;
        margin-top: 12px;
    }
    #wrapper-gallery img
    {
        margin-bottom: 12px;
    }
    #link-maps
    {
        margin-top: 35px;
    }
    #iframe-maps
    {
        height: 550px;
    }
    #logo-footer
    {
        width: 175px;
        margin: 0 auto 35px auto;
    }
    .row-column-info-menu
    {
        padding-left: 30px;
    }
    .row-column-info-menu-pizze
    {
        padding-right: 30px;
    }

    #wrapper-form-auth h1
    {
        margin-bottom: 20px;
        font-size: 2.6rem;
    }
    #form-auth
    {
        padding: 90px 100px 110px;

    }
    #box-form-auth
    {
        border-radius: 0 120px 5px 0;
    }
    
      .label-radio
{
    font-size: 1.3rem;
    margin: 0 45px 0 12px;
}
.input-radio
{
    width: 22px;
    height: 22px;
}
    #dd-file 
    {
  height: 180px;
  border-radius: 0 75px 0 75px;
  margin-top: 35px;
}
#dd-file span 
{
  bottom: 20px;
  right: 30px;
  font-size: 1.3rem;
}
.whatsapp-float 
{
  width: 86px;
  height: 86px;
   bottom: 30px;
  right: 30px;
}

}
