/* -------------------------------------------------------------------------------- */
/* ! Impostazioni BASE */
/* -------------------------------------------------------------------------------- */

/* utility */
/* 
.wrapper {
    max-width: 1000px;
} */



:root {
    /* Tavolozza colore */
    --primary: rgb(249, 116, 216);
    --light: #ffffff;
    --secondary: rgb(232, 228, 14);
    --accent: #2743f9;
    --dark: #000;
    /* animazione micro */
    --micro: 0.4s cubic-bezier(.36, .62, .56, .74)
}

/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
}

li {
    list-style-type: none;
}

/* button {
    font-family: "Ojuju", sans-serif;
    font-size: 1.5em;
    font-weight: 800;

} */


/* Utility */
html {
    scroll-behavior: smooth;
}

.res {
    width: 100%;
    max-width: 200px;
}

#main_striscia {
    max-width: 100%;
    overflow: hidden;
    background-color: rgb(249, 116, 216);
    padding: 10px;
    margin-top: -100px;
}

.stage_animation {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    animation: stage_animation 20s linear infinite;

}



.stage_animation p {
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffff;
    font-size: 1.8em;
    font-weight: bolder;

}



@keyframes stage_animation {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
    /* outline: 1px solid red; */

}

/* Tipografia */
body {
    font-family: "Space Grotesk", sans-serif;
    background-color: #000000;
}


/* h2 {
    font-family: "Ojuju", sans-serif;
    font-weight: 800;
    font-size: 4em;
} */

h1,
h2,

h4,
h5 {
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    font-size: 6em;
    font-weight: 100;

}


h6 {
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: bold;
}

h3 {
    font-family: "Space Grotesk", sans-serif;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 100;
}

p {
    font-size: 1.4em;
    margin-bottom: 15px;
    max-width: 50;
}

p.leading {
    font-size: 1.6em;
}

/* Header */
header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;


}

.fixed {
    position: fixed;
    width: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 2;
    margin-bottom: 20px;
    color: #fff;
}

/* Provvisorio */
/* .header__logo,
.header__menu,
.header__cta,
.header__icon {
    outline: 1px solid red;
} */

.header__logo {
    width: 130px;
}

.header__logo img {
    filter: invert(1);
}

.header__menu .site-nav>li {
    display: inline-block;
    padding: 0px 20px;

}

.site-nav li a:hover {
    color: rgb(249, 116, 216);
}

u header.header a {
    color: var(--light);
}

.header__cta .button {
    display: block;
    text-align: center;
    padding: 5px 10px;
    color: #fff;

}

.header__icon {
    /* visibility: hidden; */
    display: none;
}

/* Hero */
.hero {

    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;


}








#product {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    background-color: #000000;
}

.product {
    width: 300px;
    aspect-ratio: 3/4;
    border-radius: 10px;

    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 0px;

}

.productinfo {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(33, 5, 244, 0.948) 0%, rgba(0, 0, 0, 0) 80%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    cursor: pointer;

}

.productinfo:hover {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    transform: translateY(0);
}

.product__text {
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-20px);

}

.product__button {
    width: fit-content;
    padding: 7px 10px;
    margin: 20% auto;
    border: solid 2px white;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5em;
    transition: all 0.2s ease-in-out;
    transform: translateY(-20px);
}

a {
    text-decoration: none;
}

.product__button:hover {
    background-color: blue;
    border: solid 2px blue;
}





.button_pattern {

    text-align: center;
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 20px;
    color: #2743f9;
    font-size: 4em;
    font-family: "Ojuju", sans-serif;
    font-weight: 800;
    border: 3px solid #2743f9;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 0 0 #2743f9;
    transition: all 0.3s ease-in-out;

}


.button_pattern:active {
    transform: translateY(10px);
    box-shadow: 0 0px 0 0 #2743f9;
}




.hero__content {
    z-index: 1;
    /* outline: 1px solid red; */
    color: var(--light);
    padding: 10px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    margin-top: 0;



}

.hero__content h1 {
    font-size: 6em;
    margin-bottom: 20px;
}

.hero__content h2 {
    font-size: 4em;
    margin-bottom: 25px;
}

.hero__content p {
    font-size: 2em;
    line-height: 1.6em;

}

.hero__content .container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap-reverse;

}


/* -------------------------------------------------------------------------------- */
/* ! carosello */
/* -------------------------------------------------------------------------------- */

.wrapper {
    max-height: 1000px;
    display: flex;
    overflow-x: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    margin: 20px;
    padding-bottom: 20px;

}

.wrapper::-webkit-scrollbar {
    height: 18px;
    background-color: #1d1b1b;
    border-radius: 20px;
    width: 80%;
    border: 2px solid rgb(255, 255, 255);
    padding-bottom: 10px;

}

.wrapper::-webkit-scrollbar-thumb {
    height: 4px;
    background-color: rgb(254, 254, 254);
    border-radius: 20px;
    cursor: pointer;
    width: 20px;
}

.wrapper .item {
    min-width: 400px;
    height: 400px;
    line-height: 400px;
    text-align: center;
    margin-right: 50px;
    background-size: cover;
    background-position: center;

}


#product {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    background-color: #000000;
}

.item {
    width: 200px;
    aspect-ratio: 3/4;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 0px;

}

.iteminfo {
    width: 100%;
    height: 100%;

    background: linear-gradient(0deg, rgba(10, 10, 10, 0.421) 0%, rgba(0, 0, 0, 0.867) 80%);
    display: flex;
    flex-direction: column;

    align-items: center;
    /* flex-direction: row; */
    opacity: 0;
    cursor: pointer;

}

.iteminfo:hover {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    transform: translateY(0);
}

.item__text {
    color: rgb(255, 255, 255);

    /* border-bottom: 2px solid white; */
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5em;
    font-weight: 800;
    margin: 0;
    width: 100%;
    max-height: 30px;
    text-align: center;
    transform: translateY(-20px);

}



.item__button a {
    width: fit-content;

    padding: 7px 10px;
    margin: 20% auto;
    border: solid 4px white;
    border-radius: 10px;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5em;
    transition: all 0.2s ease-in-out;
    transform: translateY(-20px);

}

a {
    text-decoration: none;
}

.item__button a:hover {
    background-color: rgb(249, 116, 216);



}




/* 
.button_pattern {

    text-align: center;
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 20px;
    color: #f927ac;
    font-size: 4em;
    font-family: "Ojuju", sans-serif;
    font-weight: 800;
    border: 3px solid #2743f9;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 0 0 #2743f9;
    transition: all 0.3s ease-in-out;

}


.button_pattern:active {
    transform: translateY(10px);
    box-shadow: 0 0px 0 0 #f927c8;
} */


/* Section */
section {
    /* outline: 1px solid red; */
    scroll-margin-top: 80px;
    margin-bottom: 25px;

}


.prodotti {
    margin-top: 40px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;



}

.prodotti__text {
    background: linear-gradient(0deg, rgba(9, 9, 9, 0.014) 0%, rgba(0, 0, 0, 0.81) 80%);
    border-radius: 20px;
}

.prodotti h1 {
    color: #ff65d8;
    font-weight: bold;
    padding: 20px;
    text-shadow: 2px 0 0 2px rgb(249, 116, 216);
    margin: 20px 60px;
    text-align: center;
}

.prodotti .impo {
    color: #ff65d8;
    font-weight: 600;
    padding: 20px;

    margin: 20px 60px;
    text-align: center;




    border-radius: 10px;
}


.vep {
    background-color: #000000;
    color: #f762b7;
    border: 12px solid rgb(249, 116, 216);
    border-radius: 30px;
    padding: 40px 60px;
}


.ingredienti {
    background-color: black;
    color: rgb(232, 228, 14);
    border: 12px solid rgb(232, 228, 14);
    border-radius: 30px;
    padding: 40px 60px;
}

.sport {
    background-color: black;
    color: rgb(52, 168, 231);
    border: 12px solid rgb(52, 168, 231);
    border-radius: 30px;
    padding: 40px 60px;
}


.content__about {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 20px;
}

.content__about>div {

    padding: 20px;
    gap: 20px;

}

.content__about-text {
    display: flex;
    flex-direction: row;
    color: #000000;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;

}

.grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    padding: 5px;
    max-width: 100%;

}

.btn {
    font-family: Space Grotesk, sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 10px;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    background-color: #000000;
    font-weight: 100;
    box-shadow: 0 10px 0 0 #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 15px;





}

.btn:hover {
    transform: translateY(10px);
    box-shadow: 0 0px 0 0 #fff;
    font-weight: 800;
}

.ingredienti-box {
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.vep-box {
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.sport-box {
    display: flex;
    flex-direction: column;
    padding: 50px;
}


.ispirazione {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: #e3defa;
    color: #0a1dee;
    border-radius: 20px;
    box-shadow: 0 10px 0 0 #1410e3;
    align-items: center;
}

.ispirazione p {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}




.sustenibility {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: #f0f6ef;
    color: #10ef17;
    border-radius: 20px;
    box-shadow: 0 10px 0 0 #0dea23;
    align-items: center;
}

.sustenibility p {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;

}

.sustenibility img {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}


.btn2 {
    font-family: Space Grotesk, sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    border: 3px solid rgb(1, 1, 1);
    padding: 10px;
    border-radius: 10px;
    color: rgb(6, 6, 6);
    background-color: #fff;
    font-weight: 100;
    box-shadow: 0 10px 0 0 #000000;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 15px;
}

.btn2:hover {
    transform: translateY(10px);
    box-shadow: 0 0px 0 0 #fff;
    font-weight: 800;
}





/* -------------------------------------------------------------------------------- */
/* ! FOOTER */
/* -------------------------------------------------------------------------------- */

/* footer {
    height: 900px;
}

footer {
    color: var(--light);
    background: black;
    padding: 15px;
}

footer .container {
    display: flex;
    flex-direction: row;
    gap: 50px;
} */

footer {

    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: #020202;
    color: rgb(249, 116, 216);
    padding: 100px 0 30px;
    font-size: 1.2em;
    line-height: 20px;


}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}


.col {
    flex-basis: 15%;
    padding: 10px;

}

.col h6 {
    margin-bottom: 20px;
}


.col:nth-child(3) {
    flex-basis: 20%;
}

.col:nth-child(4) {
    flex-basis: 20%;
}

.col:nth-child(5) {
    flex-basis: 30%;
}

.logo {
    width: 150px;
    margin-bottom: 30px;
    background-color: rgb(249, 116, 216);
    padding: 20px;
    border-radius: 50px;
    color: #fff;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid white;
    margin-bottom: 50px;
}

form .far {
    font-size: 1.4em;
    margin-right: 10px;

}

form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}


form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;


}


form button .fas {
    font-size: 1.6em;
    color: #ccc;
}

.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    background: rgb(249, 116, 216);
    margin-right: 15px;
    cursor: pointer;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid rgb(255, 255, 255);
    margin: 20px auto;
}



.copyright {
    text-align: center;
    font-size: 0.6em;
    padding: 10px;
}

footer h3 {
    text-transform: uppercase;
}

footer>li {
    margin-top: 15px;
}

img.pay {

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


.footer__link:hover {
    color: rgb(249, 116, 216);
    font-weight: 800;
}

/* -------------------------------------------------------------------------------- */
/* ! MENU A TENDINA */
/* -------------------------------------------------------------------------------- */

nav {
    width: 100%;
    padding: 20px 30px;
    align-items: self-start;

}

.has-children>a {
    left: 10px;
}

.menu {
    list-style: none;
}

.menu li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.5em;
    position: relative;
    /* left: 20px; */
}




.menu a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    transition: .3s;
    color: black;
    background-color: rgb(255, 255, 255);
    border: 4px solid black;


}

.menu a.spezial {
    font-size: 1.5em;
    border-radius: 50px;

}


.menu a:hover {
    color: #fff;
    font-weight: 1000;
    background-color: rgb(249, 116, 216);
    border: 4px solid rgb(249, 116, 216);
}

.has-children>h3:hover {
    font-weight: 800;
}

.sub-menu {
    position: absolute;
    top: 95px;
    left: 380px;
    background-color: black;
    /* border: 1px solid rgb(249, 116, 216); */
    /* border-bottom: 1px solid rgb(249, 116, 216); */
    visibility: hidden;
    opacity: 0;
    max-width: 100%;


}

.menu .has-children:hover .sub-menu {
    transition: .5s;
    visibility: visible;
    opacity: 1;


}



.sub-menu li {
    width: 250px;
    font-size: 1.2em;

    border-bottom: 1px solid rgb(249, 116, 216);

}

.sub-menu a {
    color: #fff;
    background-color: black;

}

.sub-menu a:hover {
    background-color: rgb(249, 116, 216);
    color: white;
}



/* -------------------------------------------------------------------------------- */
/* ! Media query medium */
/* -------------------------------------------------------------------------------- */

@media (max-width: 815px) {
    .header__icon {
        display: block;
        color: var(--light);
        text-align: center;
        z-index: 3;
    }

    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(249, 116, 216);
        transform: translateY(-100%);
        transition: var(--micro);
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .site-nav li a:hover {
        color: rgb(52, 168, 231);
    }


    /* grid */

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 2fr);

        padding: 5px 20px;
        max-width: 100%;

    }

    .grid img {
        width: 250px;
    }

    .grid .btn {

        font-size: 1em;
    }

    .item {
        width: 80px;
        aspect-ratio: 3/4;
        border-radius: 10px;


    }





    /* hamburger */

    .icon-hamburger {
        cursor: pointer;
        height: 20px;
        width: 40px;
        position: relative;
        transition: 0.3s cubic-bezier(.36, .62, .56, .74);
    }

    .icon-hamburger span {
        background-color: var(--light);
        height: 2px;
        width: 100%;
        position: absolute;
        left: 0;
        border-radius: 20px;

    }

    .icon-hamburger span:nth-child(1) {
        top: 0;
        width: 90%;
        opacity: 1;
    }

    .icon-hamburger span:nth-child(2),
    .icon-hamburger span:nth-child(3) {
        top: 10px;
        width: 90%;
    }

    .icon-hamburger span:nth-child(4) {
        top: 20px;
        width: 90%;
        opacity: 1;
    }

    /* Hamburger in open */
    .open .icon-hamburger {
        transform: rotate(180deg);
    }

    .open .icon-hamburger span:nth-child(1),
    .open .icon-hamburger span:nth-child(4) {
        width: 0;
        opacity: 0.4;
    }

    .open .icon-hamburger span:nth-child(2) {
        transform: rotate(45deg);
        width: 100%;
    }

    .open .icon-hamburger span:nth-child(3) {
        transform: rotate(-45deg);
        width: 100%;
    }

    .site-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 25px;
        font-size: 3em;
    }

    .site-nav li {
        gap: 15px;
    }

    /* Richiamo la classe in base al click */
    .open .header__menu {
        transform: translateY(0);
    }

    .menu {
        display: flex;
        justify-content: center;

        color: white;
    }


    .menu a {
        display: flex;
        padding: 15px 30px;
        text-decoration: none;
        transition: .3s;
        color: rgb(255, 255, 255);
        background-color: rgb(0, 0, 0);
        border: 4px solid black;


    }

    .menu a.spezial {
        font-size: .8em;
        border-radius: 50px;
        background-color: white;
        color: black;

    }

    .sub-menu {

        top: 70px;
        left: 80px;



    }

    .btn {
        display: block;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    #main_striscia {
        display: none;
    }

    .hero {
        padding: 20px;
        flex-direction: column;
        margin-top: 50px;
    }



    .productinfo {
        flex-direction: column-reverse;

    }

    .product__text {
        font-size: 1em;

    }

    .product__button {
        font-size: 1.2em;
    }

    /* content */
    .content__about-text {
        display: flex;
        flex-direction: column;
        color: #000000;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;

    }

    .grid img {
        width: 100px;
    }

    .ingredienti-box {
        padding: 0;
        margin: 0;
        gap: 10px;
        justify-self: center;
    }

    .ingredienti {
        padding: 20px;
        margin: 0;
        text-align: center;
    }


    .vep-box {
        padding: 0;
        margin: 0;
        gap: 10px;
        justify-self: center;

    }

    .vep {
        padding: 20px;
        margin: 0;
        text-align: center;
        margin-top: 20px;
    }

    .sport-box {
        padding: 0;
        margin: 0;
        gap: 10px;
        justify-self: center;
    }

    .sport {
        padding: 20px;
        margin: 0;
        text-align: center;
        margin-top: 20px;
    }


    .ispirazione {
        margin-top: 40px;
    }


    .sustenibility {

        margin-top: 40px;
    }

    .sustenibility h1 p {
        text-align: center;
        font-size: 1.5em;
    }

    .sustenibility h1 .btn2 {

        font-size: 1.5em;
    }

    .prodotti {
        background-size: contain;
        background-position: center;

    }

    .prodotti .impo {
        text-align: center;
    }

    /* footer */
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
        padding: 10px;
    }

    .col:nth-child(3) {
        flex-basis: 100%;
    }

    .col:nth-child(4) {
        flex-basis: 100%;
    }

    h1 {
        font-size: 3.5em;
        text-align: center;
    }

    .social-icons {
        display: flex;
    }






    .copyright img {
        width: 400px;
        text-align: center;
    }

}






/* -------------------------------------------------------------------------------- */
/* ! dispositivi piccoli (480) */
/* -------------------------------------------------------------------------------- */

@media (max-width:450px) {
    .header__cta {
        display: none;
    }

    .hero__content h1 {
        font-size: 3em;

    }

    .hero__content h2 {
        font-size: 2em;
    }

    .hero__content p {
        font-size: 1em;
    }

    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
        padding: 10px;
    }

    .col:nth-child(3) {
        flex-basis: 100%;
    }

    .col:nth-child(4) {
        flex-basis: 100%;
    }

    .social-icons {
        display: flex;
    }





    .product__text {
        font-size: 1em;

    }

    .product__button {
        font-size: 1.2em;
    }


    .prodotti {
        background-size: contain;
        background-position: center;

    }

    .prodotti .impo {
        text-align: center;
    }

    .pay {
        max-width: 400px;
    }

    .menu a {
        display: block;
        padding: 15px 30px;
        text-decoration: none;
        transition: .3s;
        color: rgb(255, 255, 255);
        background-color: rgb(0, 0, 0);
        border: 4px solid black;


    }

    .menu a.spezial {
        font-size: .6em;
        border-radius: 50px;
        background-color: white;
        color: black;
    }

    .sub-menu {

        top: 70px;
        left: 20px;
        background-color: #000000;


    }


    .copyright img {
        width: 200px;
        text-align: center;
    }

    h1 {
        font-size: 2.5em;
        text-align: center;
    }

    .sustenibility h1 p {
        text-align: center;
        font-size: 1em;
    }

    .sustenibility h1 .btn2 {

        font-size: 1em;
    }
}