/* Import Fonts */
@font-face {
    font-family: "Cabin";
    src: url(/./fonts/CabinSketch-Regular.ttf);
}
@font-face {
    font-family: "Plex Serif";
    src: url(/./fonts/IBMPlexSerif-Regular.ttf);
}
@font-face {
    font-family: "Smokum";
    src: url(/./fonts/Smokum-Regular.ttf);
}
/* Menu animation declarations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    100% {
        opacity: 1;
    }
    0% {
        opacity: 0;
    }
}
body {
    background-color: #FFFFB3;
}

/* Navigation */
#navList {
    animation: fadeIn ease .3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    border: solid #630d25 2px;
    display: flex;
    position:fixed;
    right:0;
    list-style-type: none;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items:center;
    font-family: Plex Serif;
    width: 100vw;
    padding-top: 10px;
    padding-bottom: 10px;
    gap:20px;
    background: #DCAB6B;
    border-radius: 0%;
    top:40px;
}


#navBar {
    user-select: none;
    order:1;
    display:flex;
    position:fixed;
    right:1.4%;
    top:1.4%;
    flex-flow:row-reverse nowrap;
    align-items: flex-start;
}


li > a {
    text-decoration: none;
    color:black;
    font-size: 30pt;
}

li >a:hover:not(#navHeader a) {
    background-color: #FFFFB3;
    border-radius: 35%;
}

span.material-symbols-outlined:not(#hammeister) {
    font-size: 30pt;
}

#navHome {
    border-bottom: solid black 2px;
}

#navContact {
    border-top: solid black 2px;
}

#logoTitle{
    position: fixed;
    top:0;
    left:0;
    font-family: cabin;
    font-size: 20pt;
    user-select: none;
    background-color: #630d25;
    color:white;
    padding-top: 2%;
    padding-left: 2%;
    cursor:pointer;
    width: 100vw;
    padding-bottom: 2%;
    text-decoration: none;
}

#hammeister {
    order:0;
    cursor: pointer;
    border-radius: 15%;
    color: #FFFFB3;
    position: fixed;
}

#toppings {
    display: flex;
    flex-grow: 1;
    flex-flow: row wrap;
    justify-content: space-evenly;
    text-align: center;
}

#toppings > h1 {
    color:white;
    background-color: #630d25;
    flex:100vw;
    padding-top: 5%;
    padding-bottom: 5%;
    border: solid black 5px;
    font-family: cabin;
    font-size: 10vw;
}

#toppings > ul{
    flex:auto;
    background-color: #DCAB6B;
    border-bottom: solid black 4px;
    padding-bottom: 1vh;
    padding-top: 1vh;
    line-height: 150%;
}


#meatToppings {
    color:#630d25;
    border-right: solid black 4px;;

}

#veggieToppings {
    color:rgb(1, 92, 1);
}

.hrToppings {
    border: solid black 1px;
}

#toppings > ul > h1 {
    font-weight: bold;

}

header {
    margin-top: 11vw;
}

#navHeader {
    text-align: center;
    width: 100%;
    background-color: #DCAB6B;
    display: flex;
    flex-flow: column nowrap;
    font-family: plex serif;
}

#navHeader > ul > li {
    border-bottom: solid black;
    padding: 5%;
}

#navHeader > ul > li:hover {
    animation: fadeIn ease .3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: brown;
}

.sectionTitle {
    color:white;
    background-color: #630d25;
    padding: 3%;
    text-align: center;
    border: solid black 4px;
    font-family: Cabin;
    font-size: 10vw;
    flex: 100vw;
}

#veggiePizzaDiv {
    display: flex;
    flex-flow: row wrap;
}

#meatPizzaDiv {
    display: flex;
    flex-flow: row wrap;
}

#sidesDiv {
    display: flex;
    flex-flow: row wrap;
}

section > div > img {
    width: 50%;
}

.pizzaDesc {
    background-color: #DCAB6B;
    width: 49vw;
    text-align: center;
    align-self: stretch;
    padding-top: 10vw;
    padding-bottom: 10vw;
    flex: 50%;
    border: solid black 2px;
    font-family: plex serif;
    line-height: 150%;
}

.pizzaImg {
    width: 47vw;
    flex: 50%;
    border: solid black 2px;
}

.pricingInfo {
    flex: 100%;
    font-family: plex serif;
    text-align: center;
    margin-bottom: 5vw;
    margin-top: 5vw;
    line-height: 200%;
}

strong {
    font-weight: bold;
    font-size: 200%;
}
