/*CSS reset start*/


    :root {
/*        --text: #efebd2;*/
        --text: #f8f6e7;
        --background: #0e0c01;
        --primary: #FF9000;
        --secondary: #738cf7;
        --accent: #ef4848;
    }

    body {
        height: 100vh;
        width: 100vw;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;

        background-color: var(--background);

        background-image: url("Assets/gradiente.png");
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    h1, h2 {
        font-weight: bold;
        font-family: 'Clash';
    }

    h3 {
        font-family: 'Clash-regular';
        color: var(--text);
    }

    p {
        font-size: 20px;
    }

    p, a {
        font-family: 'sligoil';
        color: var(--text);
        margin: 0;
    }

    a {
        text-decoration: none;
    }

    ul, ol {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    li {
        padding: 0;
    }

    @font-face {
        font-family: 'Clash';
        src: url('Assets/Typeface/ClashGrotesk-Semibold.woff') format('woff'),
            url('Assets/Typeface/ClashGrotesk-Semibold.woff2') format('woff2');
    }

    @font-face {
        font-family: 'Clash-regular';
        src: url('Assets/Typeface/ClashGrotesk-Regular.woff') format('woff'),
            url('Assets/Typeface/ClashGrotesk-Regular.woff2') format('woff2');
    }

    @font-face {
        font-family: 'sligoil';
        src: url('Assets/Typeface/sligoil.woff') format('woff'),
            url('Assets/Typeface/sligoil.woff2') format('woff2');
    }

    @font-face {
      font-family: 'Material Icons';
      font-style: normal;
      font-weight: 400;
      src: url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
    }

    i.material-icons{font-size: 30px;}




.mobile {
    display: none;
}

#io-box.mobile {
    display: none;
}

    /*ALL SITE*/

    div#allsite {
        display: grid;
        grid-template-columns: 20% 60% 20%;

    }

div.element {
    height: max-content;
}

div.element.center{
/*    width: min(80vw, 1000px);*/
    justify-content: center;
    align-items: center;
    padding: auto;
    
}








/* HEADER */


#header {
    display: flex;
    justify-content: center;
    height: max-content;
    padding: 0;
    margin: 2em 0 1em 0;
    position: relative;
    align-items: center;

/*    background-color: green;*/
}



h1 {
    font-size: calc(2vw + 25px);
    color: var(--text);
    margin: auto 0;
    position: relative;
    width: max-content;
}

.logo {
    max-width: min(6em, 5vw);
    color: var(--text);
    display: block;
    top: 0;
/*    margin-left: 1em;*/
/*    margin-bottom: 1em;*/
}









/*MENU*/

#menu-div {
/*    background-color: coral;*/

    padding: 0;
    height: max-content;
    
}

#sidebar {
    height: max-content;
    width: max-content;
    float: right;

}

.menu-item {
    font-family: 'sligoil';
    font-size: min(3vw, 40px);
    color: var(--text);
    cursor: pointer;
    padding: 0 0 10px 0;
    transition: 250ms;
    text-align: right;
    text-transform: uppercase;
}


.menu-item.active a {
  text-transform: uppercase;
  color: var(--primary);
}

.menu-item a:hover {
    text-decoration: underline;
/*    text-decoration-thickness: .1em;*/
}










/*LANG SELECTOR*/

#lang {
    margin-top: 2em;
    text-align: right;
}
#lang a {
}

#lang a:hover {
    color: var(--accent);
    text-decoration: underline;
}










/*MAINBOX*/


div.MAINBOX{
    background-color: rgb(80, 79, 76, 0.6);
    text-align: center;
    
    margin: 0 2em;
    padding: 1em;
    border-radius: 1em;
    backdrop-filter: blur(10px);
    box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.3);

    max-width: 100%;
}



div.stuff {
/*    background-color: hotpink;*/
    padding: 0 0;
}

[aria-hidden="false"] {
  display: block;
}

[aria-hidden="true"] {
  display: none;
}



ul.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

ul.contact li {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.contact li svg {
    width: 1.7em;
    height: 1.7em;
}













/*IO SWITCH*/

            span#io-box {
                display: flex;
                justify-content: center;
                margin-top: 1em;
            }

            input#switch {
                -webkit-appearance: none;
                position: relative;
            }

            label#switch-style {
                width: 20em;
                height: 4.3em;
                border-radius: 1.5em;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: space-between;
                outline: .2em solid var(--text);
                z-index: 1;
            }

            label#switch-style:after {
                content: '';
                position: absolute;
                z-index: 0;

                width: 11em;
                height: 3.9em;
                transform: translatex(.2em);
                
                border-radius: 1.3em;
                transition: transform .3s, width .3s, background-color .3s;

                
                background-color: var(--secondary);

                box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.3);
            }

            input:checked + label#switch-style:after {
                transform: translatex(11.1em);
                width: 8.7em;

                background-color: var(--primary);
            }

            label#switch-style:hover:after {
/*                background-color: hsl(from var(--secondary) h s l );*/
/*                background-color: var(--secondary);*/
                width: 11.5em;

            }

            input:checked + label#switch-style:hover:after {
/*                background-color: var(--text);*/
                transform: translatex(10.6em);
                width: 9.2em;
            }


            p.a, p.b {
            width: max-content;
            text-align: center;
            padding: 1em;
            z-index: 1;
            transition: color .5s;
            }

            p.a {
                color: var(--background);
            }

            input#switch:checked + label p.a {
                color: var(--text);
            }

            input#switch:checked + label p.b {
                color: var(--background);
            }











/*PORTFOLIO*/


div#portfolio, div#shop {
/*    margin-top: 1em;*/
    display: none;
}

div#portfolio.active, div#shop.active {
    display: block;
}


div#shop {
    padding-top: 2em;
}



/*THUMBS*/

div.thumb-box {
    display: flex;
    flex-direction: column;
    margin: 2em;

    justify-content: center;
    align-items: center;

    column-gap: 1em;
    row-gap: 1em;
}

div.item {
    display: flex;
}

a#playlist {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

a#playlist:hover {
    color: var(--text);
    text-decoration: underline;
}

a#playlist svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

div.pic {

}

img.thumb {
    width: 15em;
    margin: 0 0 1em;
    border-radius: 10px;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.05);
}

img.album {
    width: 20em;
}

p.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
}

div.text {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 1em;
}


div.text h4 {
    font-family: 'Clash';
    color: var(--text);
    font-size: 2em;
    margin: 0 0 1em;
}





div.card {
    background-color: dimgray;
    aspect-ratio: 2 / 3;
    border-radius: 15px;
    
    display: flex;
    justify-content: center;
    align-items: center;

    background-size: cover;
    background-position: center;

    width: 30%;
}


.card-text {
    font-size: 2em;
    z-index: 1;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}






div.necklace {
    background-image: url(Assets/necklace.jpg);
}










p.legal {
    font-family: Clash-regular;
    width: max-content;
    margin: 1em auto auto;
    text-align: center;
    font-size: 15px;
}









/*MOBILE*/

@media (max-width: 800px) {



    div#allsite {
        display: flex;
        flex-direction: column;
    }

    #header {
        margin: 3em 0 0;
    }

    #header h1 {
        font-size: calc(8vw);
    }

    .logo {
        max-width: calc(10vw - 10px);
        display: block;
        top: 0;
        margin-left: 1vw;
    }

    div.menu-div {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin:.7em 0 1em;
        width: 100%;
    }

    #sidebar {
        width: 100%;
    }

    #menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .menu-item {
        font-size: calc(2vw + 1em);
        margin: 0 10px;
        padding: 10px 0;
    }


    #lang.mobile {
        text-align: center;
        font-size: calc(5vw);
        margin: 5vw 0;

    }




    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    #io-box.desktop {
        display: none;
    }

    #io-box.mobile {
        display: flex;
    }





    p {
        font-size: 16px;
    }

    div.MAINBOX {
        
        margin: 0 1em;
        padding: 1em;
    }

    div.stuff {
        padding: 0 0 0;
    }

    div.item {
        display: block;
    }

    a#playlist {
    font-size: 1em;
    }

    div.text h4.mobile {
        margin: .5em 0 .5em;
        font-size: 1.5em;
    }

    p.subtitle {
        margin-bottom: 1em;
    }

    div.text {
        text-align: center;
        margin: 0;
    }


    label p {
        font-size: 20px;
    }

    label#switch-style {
        height: 4.3em;
    }

    input#switch {
        margin: 0;
    }

    label#switch-style:after {
        height: 3.9em;
        width: 11em;
/*        border-radius: .8em;*/
    }

    label#switch-style:hover:after {
        width: 11em;
    }

    input:checked + label#switch-style:hover:after {
        transform: translatex(11.1em);
        width: 8.7em;
    }


    img#head {
        max-width: 200px;
        border-radius: 20px;
        margin-top: 1em;
        margin-bottom: 1em;
    }

    p.bio {
        margin-bottom: 1em;
    }


    


    p.legal.mobile {
        width: 100%;
        margin: 1em auto 0;
        padding-top: 1em;
        border-top: 1px solid var(--text);
/*        overflow-wrap: normal;*/
    }


}













