:root{
    --colore1: #837863;
    --colore2: #8f8c86;
    --hover: #6d6b66;
}
div, button, a {
    -webkit-tap-highlight-color: transparent;
}

li{
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    color: #fff;
}
html{
    height: 100%;
    margin: 0;
}
body{
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border: 0;
    overflow-x: hidden;
    font-family: sans-serif;
    background-color: var(--colore2) ;
    overflow-y: scroll;
    font-size:  clamp(15px, 2.5vw, 26px);
    color: #ffff;
}
#mainPage {
  display: flex;
  flex-direction: column;
}
::-webkit-scrollbar{
    background: none;
    width: 5px;
}
::-webkit-scrollbar-button{
    background: none;
}
::-webkit-scrollbar-track{
    background:none;
}
::-webkit-scrollbar-thumb{
    background-color: #ffff;
    border-radius: 10px;
}

#sideBar{
    height: fit-content;
    min-width: fit-content;
    position: fixed;
    z-index: 2;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out ;
}


#sideBar li{
    width: fit-content;
    min-width: 10vw;
    padding: 10vw 0 5px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
}

.sideBarItems a{
    display: flex;
    color: inherit;
    cursor: pointer;
    text-shadow: 1px 1px var(--colore1);
    font-size:  clamp(15px, 3.3vw, 36px);
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: left 0.4s ease-in-out, color 0.4s ease-in-out;
    left: 0;
}
.sideBarItems{
    margin: 4px;
    display: flex;
    flex-direction: row;
}
.sideBarItems a:hover{
    color: var(--hover);
    left: 10px;
}
.sideBarItems a:hover + .worksDropDownButton{
    left: 10px;
}

.worksDropDownButton{
    cursor: pointer;
    position: relative;
    transition: left 0.4s ease-in-out, color 0.4s ease-in-out;
    left: 0;
    height: clamp(15px, 3.3vw, 36px);
    width: clamp(15px, 3.3vw, 36px);
}
.worksDropDownButton svg{
    stroke: #ffff;
    scale: 1.4;
    filter: drop-shadow(1px 1px var(--colore1));
}
.worksDropDownButton svg:hover{
    stroke: var(--hover);
}

#worksDropDown{
    overflow: hidden;
    position: relative;
    bottom: clamp(22.5px, 4.95vw, 54px);
    max-width: 100%;
    width: fit-content;
    height: fit-content;
    z-index: -1;
}
.worksDropDownItems a{
    font-size:  clamp(14px, 2vw, 22px);
    color: #ffff;
    text-shadow: 1px 1px var(--colore1);
    transition: left 0.4s ease-in-out, color 0.4s ease-in-out;
}
.worksDropDownItems a:hover{
    color: var(--hover);
}
#DDMenu{
    z-index: -1;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    transition: transform 0.4s ease-in-out ;
    transform: translateY(-100%);
}







.main-bg{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100vw;
    height: 56.25vw;
}
.main-img{
    width: 100vw;
    z-index: -1;
}
.menu{
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-right: 5%;
    align-items: end;
}
.menu .a{
    cursor: pointer;
    text-shadow: 1px 1px var(--colore1);
    font-size:  clamp(15px, 3.3vw, 36px);
    text-decoration: none;

    position: relative;
    width: fit-content;
    margin: 4px;
    transition: left 0.4s ease-in-out, color 0.4s ease-in-out;

}

#logo-box{
    position: fixed;
    z-index: 2;
}

#logo-box img{
    cursor: pointer;
    height: 10vw;
}
.gradient-trans{
    position: relative;
    background-color: #ffffff00;
    background-image: linear-gradient( #ffffff00, var(--colore2));
    height: 70px;
        margin-top: -70px;
}

footer{
    margin-top: auto;
    position: relative;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-image: url(assets/piede-copertina-vetro_2.webp);
}
footer a{
    text-decoration: underline;
}
.gradient-trans2{
    background-color: #ffffff00;
    background-image: linear-gradient(var(--colore2), #ffffff00);
    height: 70px;
}
.iconBox{
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2vw;
    max-height: 16px;
}
.icon{
    height: 100%;
    fill: #ffff;
    margin:0 10px 0 10px;
}
#footerTxt{
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin: 10px 20px 0 20px;
    color: #ffff;
}
#footerTxt p{
text-align: center;
}

.aHover{
    color: var(--hover);
    left: 10px;
}
.aLeave{
    color: #ffff;
    left: 0;
}