*{
    margin: 0px;
    padding: 0px;
}

html{
    scroll-behavior: smooth;
    font-family: 'Calistoga', cursive;
}

body{
    background-color: #202020;
}

body nav{
    background: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    animation: logoPojavi 2s;
}

body nav .logo{
    width: 30%;
}

body nav .logo a img{
    max-width: 100%;
    width: 130px;
}

body nav .pizzaMeni{
    width: 55%;
}

body nav .pizzaMeni ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}

body nav .pizzaMeni ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: 0.7s;
}

body nav .pizzaMeni ul li a:hover{
    color: rgb(235, 160, 21);
}

main{
    width: 100%;
    height: 100vh;
    background-image: url('../images/backgroundImage.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

main .slikaPice{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main .slikaPice h1{
    color: orange;
    font-size: 100px;
    letter-spacing: 5px;
    animation: pojaviSeDrugi 3s;
}

main .slikaPice h2{
    color: white;
    font-size: 30px;
    padding: 15px 0px 20px 0px;
    animation: pojaviSePrvi 3s;
}

main .slikaPice a{
    text-decoration: none;
}

main .slikaPice i{
    color: white;
    transform: rotate(-405deg);
    font-size: 50px;
    transition: 1s;
}

main .slikaPice i:hover{
    color: orange;
}

body #features{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin: 8% 0px;
}

body #features .features{
    background: rgb(48, 48, 48);
    text-align: center;
    padding: 60px 45px;
    width: 20%;
    box-shadow: none;
    box-shadow: 9px 7px 32px -17px #e9a220;
    transition: 0.7s;
}

body #features .features:hover{
    box-shadow: 7px 18px 80px -17px #e9a220;
}

body #features .features i{
    font-size: 35px;
    color: white;
}

body #features .features h3{
    padding: 30px 0px;
    font-size: 30px;
    color: orange;
}

body #features .features p{
    color: white;
}

body .staSeKuva{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px 0px 100px 0px;
}

body .staSeKuva .whatsCooking{
    text-align: center;
    padding: 0px 10px;
    width: 40%;
}

body .staSeKuva .whatsCooking h2{
    color: orange;
    font-size: 30px;
    padding-bottom: 35px;
}

body .staSeKuva .whatsCooking p{
    text-align: justify;
    line-height: 30px;
    color: white;
}

body .slikaPizzeSekcije{
    width: 40%;
    display: flex;
    align-items: center;
}

body .slikaPizzeSekcije img{
    max-width: 100%;
}

body .noveLokacije{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 150px 0px;
}

body .noveLokacije h2{
    color: orange;
    font-size: 37px;
}

body .noveLokacije .lokacije{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 70px 0px;
}

body .noveLokacije .lokacije .lokacija{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(48, 48, 48);
    padding: 70px 0px;
    width: 30%;
    box-shadow: 9px 7px 32px -17px #e9a220;
    transition: 0.7s;
}

body .noveLokacije .lokacije .lokacija:hover{
    box-shadow: 7px 18px 80px -17px #e9a220;
}

body .noveLokacije .lokacije .lokacija .slikaLokacije{
    width: 80%;
}

body .noveLokacije .lokacije .lokacija .slikaLokacije img{
    width: 100%;
}

body .noveLokacije .lokacije .lokacija p{
    color: white;
    padding: 20px;
    font-size: 20px;
}

body .mapa iframe{
    width: 100%;
}

body .mapa{
    margin-bottom: 200px;;
}

body #backToTop{
    position: fixed;
    z-index: 999;
    bottom: 4%;
    right: 3%;
    text-decoration: none;
}

body #backToTop i{
    color: orange;
    font-size: 30px;
    transition: 0.6s;
}

body #backToTop i:hover{
    transform: translateY(-10px);
}

footer{
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0px;
}

footer .navigacijaFuter{
    text-align: center;
    width: 35%;
}

footer .navigacijaFuter p{
    color: orange;
    font-size: 25px;
    padding-bottom: 20px;
}

footer .navigacijaFuter ul{
    text-align: center;
    list-style-type: none;
}

footer .navigacijaFuter ul li{
    margin: 10px 0px;
}

footer .navigacijaFuter ul li a{
    text-decoration: none;
    color: white;
    transition: 0.6s;
    font-size: 17px;
}

footer .navigacijaFuter ul li a:hover{
    color: orange;
}

footer .ostaliLinkovi{
    text-align: center;
    width: 35%;
}

footer .ostaliLinkovi p{
    color: orange;
    font-size: 25px;
    padding-bottom: 30px;
}

footer .ostaliLinkovi .sitemapRssCss{
    display: flex;
    width: 80%;
    margin: 0px auto;
    justify-content: space-around;
    align-items: center;
}

footer .ostaliLinkovi .sitemapRssCss a{
    text-decoration: none;
}

footer .ostaliLinkovi .sitemapRssCss a i{
    color: whitesmoke;
    font-size: 25px;
    transition: 0.6s;
}

footer .ostaliLinkovi .sitemapRssCss a i:hover{
    color: orange;
}

footer .copyRight{
    width: 20%;
    text-align: center;
    color: whitesmoke;
}

footer .copyRight p{
    line-height: 30px;
    text-shadow: 1.4px 1.4px orange;
}

body .gallery{
    margin: 250px 0px 150px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body .gallery h1{
    color: orange;
    font-size: 40px;
    padding-bottom: 60px;
}

body .gallery .galerija{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    #slikeBlok 
}

body .gallery .galerija img:hover {
    transform: scale(1.1);
}

body .gallery .galerija .slikaGalerije{
    width: 30%;
    margin: 15px 0px;
}

body .gallery .galerija .slikaGalerije img{
    width: 100%;
    border: 4px solid orange;
}

body .aktivan{
    color: orange !important;
}

body #meniNaslov{
    text-align: center;
    padding: 10% 0% 5% 0%;
    color: orange;
    font-size: 35px;
}

body .meni{
    margin-bottom: 150px;
}

body .meni .meniBlok{
    margin: 50px auto;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(48, 48, 48);
    padding: 15px 10px;
}

body .meni .meniBlok .cene{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

body .meni .meniBlok .cene .cena{
    width: 80%;
    margin: 10px auto;
    display: flex;
    padding: 10px 0px;
    justify-content: space-between;
    border-bottom: 3px solid orange;
    color: white;
}

body .meni .meniBlok .slikaZaMeni{
    width: 40%;
    display: flex;
    align-items: center;
}

body .meni .meniBlok .slikaZaMeni img{
    width: 100%;
}

.contact{
    margin: 15% 0% 15% 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact h1{
    color: orange;
    font-size: 30px;
}

.contact form{
    width: 65%;
    margin: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact form .field{
    width: 60%;
    padding: 1% 0%;
    border: none;
    border-bottom: 3px solid orange;
    background-color: transparent;
    color: orange;
}

.contact form .field::placeholder{
    color: white;
    font-family: 'Calistoga', cursive;
}

.contact form #areaMessage{
    resize: none;
}

.contact form #buton{
    width: 30%;
    padding: 10px 0px;
    margin-top: 15px;
    background-color: orange;
    border: none;
    color: white;
    font-weight: bold;
    font-family: 'Calistoga', cursive;
    transition: 0.7s;
}

.contact form #buton:hover{
    background-color: #cc6600;
    box-shadow: 0px 0px 15px 1px #fff;
}

body .aboutMe{
    margin: 20% 0%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

body .aboutMe .autor{
    width: 30%;
}

body .aboutMe .autor h1{
    color: orange;
    font-size: 34px;
    padding-bottom: 30px;
}

body .aboutMe .autor p{
    color: white;
    line-height: 60px;
}

body .aboutMe .mojaSlika{
    width: 20%;
}

body .aboutMe .mojaSlika img{
    width: 100%;
    border: 4px solid orange;
}

@keyframes pojaviSePrvi{
    from{padding-left: 50px;opacity: 0;}
    to{padding-left: 0px;opacity: 1;}
}

@keyframes pojaviSeDrugi{
    from{padding-right: 50px;opacity: 0;}
    to{padding-right: 0px;opacity: 1;}
}

@keyframes logoPojavi{
    0%{top: -200px;}
    50%{top: 20px;}
    100%{top: 0px}
}

