*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
   font-family: 'Yanone Kaffeesatz', sans-serif;
   color: #808000;
}

p{
    color: #5f5f5e;
}

.kontainer{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.kontainer-flex{
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mojgrid{
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
}

.i_header{
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 10;   
    padding: 0;
}

#meni_list{
    display: none;
}

.linkovi > li{
    display: inline-block;
    margin-left: 20px;
    padding: 5px;
    font-size: 20px;
}
.i_link{
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-decoration: none;
    color: #808000;
}
a:hover{
    font-weight: bold;
    color: #5f5f5e;
}
.logo{
    font-size: 40px;
    font-family: 'Herr Von Muellerhoff', cursive;
}
#o_nama{
    margin-top: 10px;
}
.o_nama_txt, .ponuda_txt{
    grid-column: span 5;
}
.o_nama_img, .ponuda_img{
    grid-column: span 7;
}
img{
    width: 100%;
}

.o_nama_txt p{
    font-size: 18px;
    line-height: 20px;
}
.first, .second, .third, .fourth{
    grid-column: span 3;
}
.parallax1 {
    /* The image used */
    background-image: url("../img/paralax/s4.jpg");
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .parallax3 {
    /* The image used */
    background-image: url("../img/paralax/s3.jpg");
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .parallax2 {
    /* The image used */
    background-image: url("../img/paralax/s2.jpg");
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .parallax4 {
    /* The image used */
    background-image: url("../img/paralax/s5.jpg");
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.gallery{
    padding: 10px;
}
footer{
    width: 100%;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}
.footer_txt{
    text-align: center;
    padding: 20px;
}
.social a{
    color: #808000;
    padding: 5px;
    margin-top: 5px;
    text-decoration: none;
}

@media screen and (max-width: 600px){
    .parallax1, .parallax2, .parallax3, .parallax4{
        max-width: 100%;
    }
    .kontainer{
        max-width: 100%;
    }
    .o_nama_img{
        grid-column: span 12;
    }
    .o_nama_txt{
        grid-column: span 12;
    }
    .ponuda_img{
        grid-column: span 12;
    }
    .ponuda_txt{
        grid-column: span 12;
    }
    .first, .second, .third, .fourth{
        grid-column: span 6;
        margin-left: 5px;
    }

    .hamburger{
        display: flex;
        flex-direction: column;
        width: 35px;
        height: 25px;
        justify-content: space-between;
    }

    .hamburger > div{
        width: 100%;
        height: 3px;
        background: #808000;
        border-radius: 3px;
    }

    .linkovi{
        display: none;
    }
}
@media screen and (max-width: 400px){
    .parallax1, .parallax2, .parallax3{
        max-width: 100%;
    }
    .kontainer{
        max-width: 100%;
    }
    .o_nama_img{
        grid-column: span 12;
    }
    .o_nama_txt{
        grid-column: span 12;
    }
}