@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}


/* Hide scrollbar for IE, Edge and Firefox */
body {
    
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-x: hidden;
    width: 100vw!important;
  
}

:root {
    --bs-font-sans-serif: 'Lato', sans-serif!important;
    --primary-color: #171f17;
    --secondary-color: #ffffff;
    --gradient-secondary-color: #dfe3da;
    --gradient-primary-color: #434a43;

    --object-shadow: 10px 15px 10px rgba(0, 0, 0, 0.35);
}

p {
    text-align: justify;
    text-justify: inter-word;
}

.serif {
    font-family: 'Cormorant', serif;
}

.white {
    color: var(--secondary-color)!important;
}

.button {
    background-color: var(--secondary-color)!important;
    border: none;
    color: var(--primary-color)!important;
    padding: 16px 24px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow:  0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
    text-wrap: nowrap;
    width: fit-content;
}

.dark-button {
    background-color: var(--primary-color)!important;
    color: var(--secondary-color)!important;
}

.button:hover {
    background-image: linear-gradient(90deg, var(--gradient-secondary-color), var(--secondary-color), var(--gradient-secondary-color));
    background-size: 200% 200%;
    animation: gradient 2s ease infinite;
    padding: 12px 20px;
    margin: 4px;
    color: #000000!important;
    box-shadow:  0 0 50px rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 8px rgb(255, 255, 255);
}

.button.dark-button:hover {
    background-image: linear-gradient(90deg, var(--gradient-primary-color), var(--primary-color), var(--gradient-primary-color));
    color: var(--secondary-color)!important;
    box-shadow:  0 0 50px rgba(0, 0, 0, 0.35);
    text-shadow: 0 0 0px rgb(255, 255, 255);
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: -200% 0%;
    }
}

.cart::before {
    content: "";
    background-image: url("../img/svg/cart.svg");
    background-size: 24px 24px;
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    top: 6px;
    right: 8px;
}



.dark-shadow.button {
    box-shadow:  0 0 20px rgba(0, 0, 0, 0.35);
}


/* header */

#header {
    width: 100vw!important;
}

.navbar-toggler {
    margin-top: -10px;
    height: 10px;
    width: 30px;
    padding: 0px!important;
    border: 0px;
}

.navbar-collapse{
    background-color: var(--primary-color)!important;
}

.langSwitch {
    background-color: var(--primary-color);
    border: none;

    
    z-index: 9999999;
    position: absolute;
    right: 20px;
}

.langSwitch > img {
    height: 35px;
}

.spaced_for_lang {
    margin-right: 75px;
}

.nav-link {
    color: var(--secondary-color)!important;
    z-index: 1000!important;
}

.disabled.nav-link{
    opacity: 0.5;
}
.nav-item:hover {
    cursor: pointer!important;
}

.nav-link.nav-cart {
    background-color: var(--secondary-color)!important;
    border: none;
    color: var(--primary-color)!important;
    padding: auto 24px!important;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow:  0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-link.nav-cart::before {
    content: "";
    background-image: url("../img/svg/cart.svg");
    background-size: 18px 18px;
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    top: 3px;
    right: 4px;
}

#header {
    background-color: var(--primary-color)!important;
    position: fixed;
    height: 70px;
    width: 100%;
    z-index: 9999999;
}

#navbarNav > * {
    gap: 10px;
}

.dropdown-menu {
    border: none;
    background-color: var(--primary-color);
    padding: 0px;
    border-radius: 30px;
}

.dropdown-menu a {
    color: var(--secondary-color);
    padding: 10px;
}

.dropdown-item.disabled {
    color: rgb(128, 128, 128);
}

.dropdown-item {
    border: 6px solid var(--primary-color);
    border-radius: 30px;
}


.dropdown-item:hover {
    border-radius: 999px;
}


.counterHead > svg {
    width: 100vw;
    height: 700px;
    position: relative;
    margin-top: 700px;
    top: -700px;
    margin-bottom: -1300px;
    z-index: -1;
}


/* body */

#landing {
    height: 650px;
    display: flex;
    align-items: center!important;
}

#landing  img {
    height: 100vh;
    position: absolute;
    top: 80px;
    margin: 0 100px;
    max-height: 800px;
}

#collector {
    overflow: hidden;
    width: 100%;
    height: 70vh;
}

#collector img {
    height: 60vh;
    filter: drop-shadow(var(--object-shadow));
}

.collector-button {
    width: 100%;
    position: relative;
    top: -40vh;
    display: flex;
    justify-content: center;
}

.collector-button .button {
    transform: translateX(-50%)!important;
}

@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  #collector {
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
  }
  
  #collector:before,
  #collector:after {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  #collector:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  #collector:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  
  .carosello {
    display: inline-block;
    animation: 25s slide infinite linear;
  }
  
  .carosello img {
    height: 50px;
    margin: 0 40px;
  }



.img-txt > *{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floating-img-1 {
    width: 100%;
    z-index: -1;
    position: relative;
    rotate: -3deg;
    padding-right: 40px;
    filter: drop-shadow(var(--object-shadow));
}

.floating-img-2-cont {
    height: 100vh;
    position: absolute;
    right: 0px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.floating-img-2 {
    max-height: 700px!important;
    position: relative;
    object-fit: contain;
    object-position: left;
    padding-left: 100px;
    width: 200%;
    rotate: -15deg;
    filter: drop-shadow(var(--object-shadow));
}




.floating-img-3 {
    width: 70vw;
    max-width: 1000px;
    z-index: -1;
    position: absolute;
    right: 50%;
    filter: drop-shadow(var(--object-shadow));
}

#reviews {
    margin-top: 400px;
    margin-bottom: 100px;
}


.recipes-home-container {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
}

.recipe-col-container {
    position: relative;
}

.recipe-col-container::before,
.recipe-col-container::after {
    content: "";
    background-image: url("../img/svg/left_arrow.svg");
    background-size: 100% 100%;
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.recipe-col-container::before {
    left: -30px;
}

.recipe-col-container::after {
    right: -30px;
    transform: translateY(-50%) rotate(180deg);
}


.recipe {
    height: 320px;
}

.recipe.video-recipe {
    height: 600px;
}



.recipe > a > img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    top: -280px;

    margin: 0 50px 0 10px;
    transition: transform .3s ease-in-out;
    z-index: 2;

}

.recipe.video-recipe > a > img {
    width: 250px;
    height: 450px;

    top: -550px !important;;
}

.recipe > a > img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.recipe::before {
    content: "";
    background-image: url("../img/svg/rester-v.svg");
    filter: drop-shadow(var(--object-shadow));
    z-index: 1;
    position: relative;
    width: 300px;
    height: 260px;
    display: inline-block;
    left: 30px;
    margin-top: 20px;
}

.video-recipe::before {
    content: "";
    background-image: url("../img/svg/rester-v.svg");
    filter: drop-shadow(var(--object-shadow));
    z-index: 1;
    position: relative;
    width: 250px;
    height: 500px;
    display: inline-block;
    margin-top: 50px;
    left: 30px;
}

.recipe > h5 {
    top: -290px;
    position: relative;
    left: 60px;
    margin: 0;
    z-index: 2;
    width: 250px;
}

.recipe.video-recipe > h5 {
    top: -555px!important;
    position: relative;
    left: 60px;
    width: 200px;
}




.recipe .prep::before {
    content: url("../img/svg/fire.svg");

    width: 24px;
    position: relative;
    top: 7px;
    margin-right: 10px;
    display: inline-block;
}




.counterFoot > svg {
    width: 100vw;
    height: 700px;
    position: relative;
    margin-bottom: 700px;
    bottom: -702px;
    margin-top: -1300px;
    z-index: -1;
}

.counterHead > svg {
    width: 100vw;
    height: 700px;
    position: relative;
    margin-top: 700px;
    top: -700px;
    margin-bottom: -1440px;
    z-index: -1;
}

.hr-white {
    color: var(--secondary-color);
    z-index: 100;
    width: 100%;
}

.chef-manolo {

    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
}

.chef-manolo > img {
    max-height: 60vh!important;
    display: flex;
    
    justify-content: center;
    margin: 0px!important;
    filter: drop-shadow(0px -10px 10px rgba(0, 0, 0, 0.5));

}

.recipe-margin-bottom {
    margin-bottom: 300px!important;
}

.rec-col-cont-2 {
    position: relative;
    top: -280px;
}

/* Footer */

.footer {
    background-color: var(--primary-color);
}

.footer a {
    color: var(--secondary-color)!important;
}

.footer-logo {
    height: 60px!important;
}

.footer .col-12{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end!important;
    padding-bottom: 60px;
}

.accepted-methods {
    height: 30px!important;
}

.agensia {
    padding-top: 80px;
    padding-bottom: 120px;
}

/* recipe page */

.recipe-page {
    padding: 140px 0 80px;
}

.video-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 20px;
    margin: 0 auto;
    position: sticky;
    top: 110px;
}



.video-back {
    z-index: -1;
    filter: blur(60px) saturate(1.2) brightness(1.8);
    height: 80vh;
    margin-top: -80vh;
    transform: translate(-60px, 50px);
    position: sticky;
    top: 110px;

}


.recipe-main-image {
    border-radius: 9999px;
    width: 50vh;
    height: 50vh;
    object-fit: cover;
    margin-right: 30px;

}

.info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.info > p {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 10px 10px 0 0;
    text-wrap: nowrap;
    padding: 8px 12px;
    border-radius: 9999px;
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.3);
    
}

.info > p::before {

    width: 20px;
    position: relative;
    top: 4px;
    margin-right: 7px;
    display: inline-block;
}

.info b {
    padding-left: 4px;
}

.info > .difficulty::before {
    content: url("../img/svg/difficulty.svg");
}

.info > .time::before {
    content: url("../img/svg/fire.svg");

    top: 5px;
}

.info > .servings::before {
    content: url("../img/svg/servings.svg");
}

.recipe-landing {
    margin-top: 100px;
}

.ingredients {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 20px 30px 15px 20px;
    border-radius: 20px;
    width: fit-content;
}

.ingredients a {
    text-decoration: none;
    color: var(--primary-color)!important;
    background-color: var(--secondary-color);
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 999px;
}

.ingredients a::before {
    content: "";
    background-image: url("../img/svg/cart.svg");
    background-size: 18px 18px;
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    top: 3px;
    right: 4px;
}


.ingredients > ul > li {
    margin-bottom: 8px;
}

.recipe-step-image {
    height: 350px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin: 5px 0 20px;
}

.normal-steps {
    padding: 0 12vw;
}

#cart_button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 10000;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: none;
    border-radius: 25px;
    background-color: var(--secondary-color);
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    background-image: url("../img/svg/cart.svg");
    background-size: 40px 40px;
    background-position: center;
    background-repeat: no-repeat;
}

#cart_button img {
    padding: 6px;
    width: 50px;
    height: 50px;
    position: relative;
    top: 5px;
    left: 5px;
}

#cart_notify {
    position: fixed;
    bottom: 62px;
    right: 60px;
    z-index: 10001;
    cursor: pointer;
    border-radius: 9999px;
    border: none;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.products {
    margin-top: -30px;
    margin-bottom: 200px;
}

.product {
    height: 450px;
}

.product > * {
    display: flex;
    flex-direction: column;
    justify-content: end;

    padding-bottom: 30px;
    margin-top: -420px;
    z-index: 3;
}

.product > * > img {
    width: 100%;
}

.product h5 {
    color: var(--primary-color);
    font-weight: bold;
}

.product .button {
    padding: 8px 24px;
    margin: 4px 0;
}
.selector {
    display: flex;
    flex-direction: column;
}
.product .quantity {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 9999px;
    border: none;

    box-shadow:  0 0 20px rgba(0, 0, 0, 0.35);
    transform: translateX(280%);

    position: absolute;
    margin-top: 3px;
    margin-left: 6px;
}

.product .usa {
    font-size: 12px;
    width: fit-content;
    font-style: italic;
    opacity: 0.5;
}

.product::before {
    content: "";
    background-image: url("../img/svg/rester-v.svg");
    filter: drop-shadow(var(--object-shadow));
    z-index: 2;
    position: relative;
    width: 85%;
    height: 70%;
    display: inline-block;
    left: 30px;
    rotate: 20deg;
    margin-top: 100px;
}

/* PROMO PRDUCT */

.promo_product {
    margin-bottom: 160px;
    height: 300px;
    margin-top: 130px;
    
}

.promo_product > div > p {
        text-align: right !important;
}
.promo_product > * {
    z-index: 3;
    position: relative;
    top: -400px;
    margin: 0;
}

.promo_product > * > img {
    width: 95%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.promo_product h5 {
    color: var(--primary-color);
    font-weight: bold;
    text-align: right;
    font-size: large;
}

.promo_product .button {
    padding: 8px 24px;
    margin: 4px 0;
    margin-bottom: 12px;
}

.product_heading{
    color: var(--primary-color);

}

.product_heading > p {

    text-align: right;
}
.promo_product .quantity {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 9999px;
    border: none;
    box-shadow:  0 0 20px rgba(255, 255, 255, 0.35);
    transform: translateX(280%);
    position: absolute;
    margin-top: 3px;
    margin-bottom: 12px;
    margin-left: 6px;
}

.promo_product .usa {
    font-size: 12px;
    width: fit-content;
    font-style: italic;
    opacity: 0.5;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

.promo_product .product_heading > * > * {
    text-shadow:  0 0 10px rgb(255, 255, 255)!important;
}

.promo_product::before{
    content: "";
    background-image: url("../img/svg/rester-v_yellow.svg") !important;
    filter: drop-shadow(var(--object-shadow));
    z-index: 2;
    position: relative;
    width: 80%;
    height: 100%;
    display: inline-block;
    left: 10%;
    rotate: 20deg;
}

.promo_container {
    position: relative;
    top: 400px;
    overflow-x: scroll;
    margin-bottom: 600px;


}

.promo_container::-webkit-scrollbar {
    width: 15px;
}

.promo_container::-webkit-scrollbar-track {
    border-radius: 15px;
}

.promo_container::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: var(--primary-color);
    border: 4px solid white;
} 

.promo_container > .promo_product {
    margin-top: 240px;
    padding-bottom: 65px;
}

.promo_container > .promo_product > * {
    z-index: 3;
    position: relative;
    top: -480px;
    margin: 0;
}

/* END PROMO PRODUCT */

.mini-button {
    padding: 0px 24px!important;
}

form {
    background-color: red;
    padding: 25px;
    border-radius: 37px;
    background-color: var(--secondary-color);
}


.form-control, .form-select {
    border-radius: 20px!important;
    border: none;
    background-color: var(--gradient-primary-color);
    color: var(--secondary-color)!important;
}

.form-control::placeholder, .form-select::placeholder {
    color: #ffffff8a;
}

.form-control:focus, .form-select:focus {
    box-shadow:  0 0 20px rgba(255, 255, 255, 0.5);
    background-color: var(--primary-color)!important;
}

.contact-fusilli {
    max-width: 100%;
    max-height: 400px;
    margin: 50px 0;
}

.storia {
    margin-top: 40px;
}

.storia img {
    filter: drop-shadow(var(--object-shadow));
}

.storia .col-12 {
    margin: 40px 0;
}

.storia p {
    margin-top: 20px;
    margin-bottom: 60px;
}

.map {
    width: vw;
    position: relative;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 50vh;
    position: relative;
    top: -59px;
}

.button_icon {
    width: 24px!important;
    margin-right: 6px;
    display: inline;
}

.footer_icon {
    width: 18px!important;
    margin: 0 10px 3px;
    display: inline;
}



@media (max-width: 767.98px) {
    .col-12 {
        padding: 0 40px;
    }

    .navbar-collapse{
        position: absolute;    
        top: 70px;
        left: 0px;
        width: 100%;
        z-index: 1000;
        padding-bottom: 38px;
    }

    .nav-link.nav-cart {
        padding: 8px 24px!important;
        width: fit-content;
        margin-left: auto;
        margin-right: -24px;
        box-shadow:  0 0 20px rgba(255, 255, 255, 0.5);
    }

    .dropdown-menu {
        background-color: #202c20;
        border-radius: 0 999px 999px 0;
    }

    .dropdown-item {
        border: unset;
        border-radius: unset;
    }
    
    
    .dropdown-item:hover {
        border-radius: unset;
    }

    .dropdown-menu a {
        color: var(--secondary-color);
        text-align: end;
        padding: 10px 0;
    }



    #landing  img {
        position: relative;

        margin: auto auto;
        margin-bottom: 80px;
        top: 0px;
        
    }

    #landing {
        height: unset;
    }
    .floating-img-1 {
        padding-right: 0px;
    }

    .floating-img-2-cont {
        height: unset;
        position: static;
        right: 0px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        margin: -60px 0 -180px!important;
    }
    
    .floating-img-2 {
        max-height: 500px!important;
        position: relative;
        object-fit: contain;
        object-position: left;
        padding: 60px 0px 85px;
        width: 200%;
        rotate: -15deg;
        filter: drop-shadow(var(--object-shadow));
    }


    .floating-img-3 {
        width: 110vw;
        position: relative;
        right: unset;
        right: 50%;
        margin-top: -350px;
    }

    #reviews {
        margin-top: 100px;
        overflow: hidden!important;
    }

    .rec-col-cont-1 {
        margin-top: 200px;
    }
    
    .recipe-col-container {
        margin-bottom: 0px;
    }

    .recipe-col-container-text {
        margin-top: 0px;
        margin-bottom: -25px!important;
    }


    .chef-manolo {

        position: static;
        margin-top: -40px;
        margin-bottom: 60px;
        overflow: hidden;
    }
    
    .chef-manolo > img {
        max-height: 60vh!important;
        display: flex;
        
        justify-content: center;
        margin: 0px!important;
        filter: drop-shadow(0px -10px 10px rgba(0, 0, 0, 0.5));
    
    }


    .video-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    video {
        height: 80vh;
        border-radius: 20px;
        margin: 0 auto;
        position: absolute;
        top: 390px;
    }

    .video-back {
        position: absolute;
        top: 1250px;
    
    }
    
    .video-ingredients {
        margin-top: 100vh!important;
    }
    
    .recipe-main-image {
        border-radius: 9999px;
        width: 50vh;
        height: 50vh;
        object-fit: cover;
        margin-right: 0px;
    
    }

    .normal-steps {
        padding: 0 40px 0 0; 
    }
    .storia {
        margin-top: 100px!important;
    }
    .storia .col-12 {
        margin: 0px;
    }
    .storia img {
        margin-bottom: 90px!important;
    }

    .recipe-col-container::before {
        left: 0px;
    }
    
    .recipe-col-container::after {
        right: 0px;
    }

    .promo_product {
        margin-bottom: 80px;
        
    }

    .promo_product > * {
        top: -380px;
        margin: 0;
    }

    .promo_product > * > img {
        width: 100%;
    }

    .promo_container > .promo_product {
        margin-top: 200px;
    }

    .promo_container > .promo_product > * {
        z-index: 3;
        position: relative;
        top: -380px;
        margin: 0;
    }


}

