@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');


* {
    transition: all 0.5s ease-in-out;
    padding: 0px;
    margin: 0px;
    scroll-behavior: smooth;
}

body {
    /* background-image: url('../assets/blackBGFlour.jpg'); */
    background-color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 2000px; */
}

/* Hero Start */

#hero {
    background-image: url('../assets/fornosMarioEnhanced.png');
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0px -50px 30px -14px #000000;
}

#blackOverlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.500);
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    justify-content: flex-start;
    align-items: center;
}

#navbarContainer {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    background-color: #00000071;
    position: fixed;
    top: 0;
    z-index: 999;
}

#navbarList {
    display: flex;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

#navbarList li {
    margin: 30px;
    color: white;
    font-family: 'Cormorant SC', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease-in-out;
    border-style: none;
    border-color: #0c0c0c;
    border-left-style: none;
    border-right-style: none;
    padding-top: 3px;
    padding-bottom: 3px;
    white-space: nowrap;
}

.links {
    text-decoration: none;
    color: white;
}

#navbarList li:hover {
    transform: scale(1.1);
    backface-visibility: hidden;
}

#buttonsContainer {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
}

#divisor {
    width: 2px;
    height: 60%;
    border-radius: 40px;
    background-color: rgb(240, 240, 240);
    margin-right: 25px;
}

#pedirButton {
    padding: 18px 30px;
    font-size: 16px;
    border: none;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #f0bd07;
    border-radius: 5px;
    color: #0c0c0c;
    z-index: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    order: 2;
}

#pedirButton::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: -50px;
    width: 70%;
    height: 100%;
    background: 
    linear-gradient(90deg, transparent, #ffffff71, transparent);
    transition: all 1s;
    z-index: -1;
    transform: translateX(-120px) skew(-20deg);
}

#pedirButton:hover::before {
    transform: translateX(300px)
    skew(-20deg);
}

#pedirButton:hover {
    background: #f8c91e;
}

#reservaButton {
    padding: 18px 30px;
    font-size: 16px;
    border: none;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #222222;
    border-radius: 30px;
    color: #f3f3f3;
    z-index: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

#reservaButton::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: -50px;
    width: 70%;
    height: 100%;
    background: 
    linear-gradient(90deg, transparent, #ffffff71, transparent);
    transition: all 1s;
    z-index: -1;
    transform: translateX(-120px) skew(-20deg);
}

#reservaButton:hover::before {
    transform: translateX(300px)
    skew(-20deg);
}

#reservaButton:hover {
    background: #f0bd07;
    color: #0c0c0c;
}

#middleContentContainer {
    display: flex;
}

#logoHero {
    filter: invert(100%) sepia(1%) saturate(7455%) hue-rotate(229deg) brightness(123%) contrast(97%);
    height: 50%;
    margin-top: auto;
}

#h1Desfrute {
    font-family: 'Dancing Script', serif;
    font-weight: 700;
    size: 30px;
    color: white;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 10%;
    margin-top: 15px;
}

/* Hero End */

/* Cards Screen Start */

/* #placeForCards {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#cardMenu {
    border-radius: 30px;
    margin: 30px;
    height: 300px;
    width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#imageBoxMenu {
    background-image: url('../assets/PizzaAtal.jpg');
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

#imageBoxMenu:hover {
    transform: scale(1.1);
}

#imageBoxMenuEffect {
    background-color: #0000003a;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#imageBoxMenuEffect h1 {
    font-family: 'Cormorant SC';
    font-size: 80px;
    font-weight: 900;
    color: white;
    border-top-style: solid;
    border-bottom-style: solid;
    border-width: 7px;
    padding: 0px;
    margin: 0px;
    width: fit-content;
    height: fit-content;
} */

/* #cardUnidades {

}

#imageBoxUnidades {

}

#imageBoxUnidades h1 {

}

#cardHistoria {

}

#imageBoxHistoria {

}

#imageBoxHistoria h1 {

} */

/* Cards Screen End */

/* Media Queries Start */

/* Tablets Screens */
@media (max-width: 825px) {
    #hero {
        height: fit-content;
    }

    #navbarContainer {
        height: fit-content;
        flex-wrap: wrap;
        justify-content: center;
    }

    #navbarList {
        order: 2;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #navbarList li {
        margin-top: 3px;
        margin-bottom: 0px;
        font-size: 22px;
        white-space: nowrap;
    }

    #divisor {
        visibility: hidden;
        margin: 0px;
        padding: 0px;
        border-width: 0px;
        size: 0px;
    }

    #pedirButton {
        margin-top: 10px;
        height: 30%;
        margin-right: auto;
        order: 2;
    }
    
    #reservaButton {
        margin-top: 10px;
        height: 30%;
        margin-left: auto;
    }

    #logoHero {
        height: 60%;
        margin-top: 35%;
        margin-left: 10%;
        margin-right: 10%;
    }

    #h1Desfrute {
        font-size: 28px;
    }
}

/* Large Mobile Screens */
@media (max-width: 450px) {
    #navbarList li {
        font-size: 18px;
        margin-left: 15px;
        margin-right: 15px;
    }

    #pedirButton {
        height: 40px;
        width: 90px;
    }
    
    #reservaButton {
        height: 40px;
        width: 237px;
    }

    #h1Desfrute {
        font-size: 22px;
    }
}

/* Medium Mobile Screens */
@media (max-width: 375px) {
    #navbarList li {
        font-size: 16px;
        margin-left: 10px;
        margin-right: 10px;
    }

    #pedirButton {
        height: 30px;
        width: 80px;
    }
    
    #reservaButton {
        height: 30px;
        width: 150px;
        font-size: 14px;
    }

    #h1Desfrute {
        font-size: 18px;
    }
}

/* Small Mobile Screens */
@media (max-width: 320px) {
    #navbarList li {
        font-size: 14px;
    }

    #pedirButton {
        height: 20px;
    }
    
    #reservaButton {
        height: 20px;
    }

    #h1Desfrute {
        font-size: 16px;
    }
}

/* Media Queries End */