@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;900&display=swap');
:root{
    font-size: 16px;
}
html{
  scroll-behavior: smooth;
}
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* cursor: url('../assets/paint-brush.png'), auto;	 */
}
body{

  background: linear-gradient(
    91deg
    , black, rgb(55 146 55));
}
header{
    top: 0;
    width: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.4);
    position: sticky;
    transition: all ease-in-out 500ms;
    z-index: 10;

}
/* header:hover{
  transition: all ease-in-out 500ms;
  background-color: rgb(0, 0, 0);

} */
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}
header nav .logo{
    flex-basis: 30%;
    display: flex;

}
header nav .logo img{
  width: 145px;
}
header nav ul{
    flex-basis: 50%;
    display: flex;
    justify-content: space-evenly;
}
header nav ul li{
    list-style: none;
    
}
header nav ul li a{
    font-weight: 900;
    text-decoration: none;
    font-size: 1.2rem;
    color: orangered;
    transition: color ease-in-out .3s;
}
header nav ul li a:hover{
    color: #789e1f;
    transition: color ease-in-out .3s;
  
}
/* POCETNA KONTENJER */
.container{
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* main */
main{
  height: 100vh;
  width: 100%;
  background-image: url('../assets/slider/pozadina.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* transform: translateY(-80px); */
  z-index: 1;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
main h1{
  color: orangered;
  font-size: 170px;
  text-shadow:5px 5px 5px #789e1f;
}


.bg-fixed{
  background-image: url('../assets/SUEZ-tips-paint-header-2000x1125.jpg');
    min-height: 200px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    display: flex;
    align-items: center;
}
.bg-fixed{
  background-image: url('../assets/GettyImages-632700750.jpg') !important;

}

.bg-fixed h2{
  font-size: 100px;
  color: orangered;
  text-shadow: 2px 5px 10px rgba(0, 0, 0, .7);
}
  /* PARNTERI */

  .partneri{
      width: 80%;
      margin: 0px auto;
  }
  .partneri h2{
      text-align: center;
      text-transform: uppercase;
      color: orangered;
  }
  .partneri-wrapp{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      margin-top: 0px;
      justify-content: space-evenly;
  }
  .partneri-wrapp .item{
      width: 31%;
      box-shadow: 1px 2px 15px rgba(0, 0, 0, .4);
      margin: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
  }
  .partneri-wrapp .item:hover{

    box-shadow: 1px 2px 15px  rgba(1, 41, 10, 0.644);
  }
  .partneri-wrapp .item img{
      width: 200px;
  }

  /* PROIZVODI */
  .proizvodi-wrapp{

display: flex;
flex-direction: column;
width: 100%;

  }
.proizvodi-wrapp .item{
  display: flex;
  width: 100%;
  flex-direction: column;

}
.proizvodi-wrapp .item .naslov{
  width: 100%;
  text-align: center;
  color: white;
  margin: 30px auto;
  margin-top: 0;
  font-size: 32px;
  padding: 20px;
  background-color: red;
}
.proizvodi-wrapp .item .slike{
  width: 80%;
  margin: 10px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
 

}
.proizvodi-wrapp .item .slike img{
  width: 32%;
  margin: 5px;
  height: 400px;
  overflow: hidden;
  transition: all ease-in-out 300ms;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
}


/* KONTAKT */

.kontakt-wrapp{
  display: flex;
  width: 100%;
}

.kontakt-wrapp .info{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  background-color: #789e1fc2;
}
.info .dostava{
  display: flex;
  flex-direction: column;
  height: 100%;

}
.info .dostava .dostava-naslov{
  display: flex;
  align-items: center;
  font-size: 30px;
  color: orangered;
  font-weight: 900;
  margin: 5px;
  text-shadow: 1px 2px black;
}
.info ul{
  text-align: center;
  margin-bottom: 87px;
}
.info ul li{
  list-style:none;
  font-weight: 700;
  color: orangered;
  font-size: 30px;
  margin: 5px;
  text-shadow: 1px 2px black;
  margin-top: 34px;
}
.info ul li a{
  font-weight: 700;
  color: orangered;
  font-size: 30px;
  text-decoration: none;
text-shadow: 1px 2px black;
}
.dostava img{
  width: 405px;
}
.dostava-wrapp{
  text-align: center;
}
.dostava-wrapp .dostava-text{
  font-size: 18px;
  color: orangered;
  font-weight: 900;
  margin: 5px;
  text-shadow: 1px 2px black;
  
}
/* responsive */
@media screen and (max-width:1200px){
  .proizvodi-wrapp .item .slike{
    justify-content: center;
  }
  .proizvodi-wrapp .item .slike img{
    width: 40%;
  }
}
@media screen and (max-width:1050px){
  header nav ul{
    flex-basis: 100%;
  }
  main h1{
    font-size: 135px;
  }
  .bg-fixed h2{
    font-size: 80px;
  }
  .info ul li,.info ul li a{
    margin-top: 20px;
    font-size: 25px;
 
  }
  .dostava img{
    width: 340px;
  }
  .info ul{
    text-align: center;
    margin-bottom: 161px;
  }
}
@media screen and (max-width:780px){
 
  main h1{
    font-size: 100px;
  }
  .bg-fixed h2{
    font-size: 55px;
  }
  .proizvodi-wrapp .item .right span,  .proizvodi-wrapp .item .left span{
    font-size: 50px;
  }
  
  .proizvodi-wrapp .item .slike img{
    height: 300px;
  }
  .info ul li, .info ul li a{
    font-size: 22px;
  }
  iframe{
    height:506px ;
  }
  .dostava img{
    width: 260px;
  }
  .partneri-wrapp .item img{
    width: 164px;
  }
  .info ul{
    text-align: center;
    margin-bottom: 77px;
  }
}
@media screen and (max-width:650px){
  header nav ul li a{
    font-size: 1rem;
  }
  header nav .logo img{
    width: 80px;
  }
  .proizvodi-wrapp .item .slike img{
    width: 70%;
  }
  .bg-fixed{
    min-height: 120px;
  }
  .dostava img{
    width: 260px;
  }
  .partneri-wrapp .item img{
    width: 100%;
  }
  .info ul li, .info ul li a{
    font-size: 17px;
  }
  iframe{
    height: 480px;
  }
}
@media screen and (max-width:550px){
  header nav ul li a{
    font-size: 10px;
  }
  main h1{
    font-size: 70px;
  }
  .bg-fixed h2{
    font-size: 45px;
  }
  .proizvodi-wrapp .item .right span,  .proizvodi-wrapp .item .left span{
    font-size: 45px;
  }
  .partneri-wrapp{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    justify-content: space-evenly;
    flex-direction: column;
    margin: 0px auto;
  }
  .partneri-wrapp .item{
    width: 100%;
  }
  .partneri-wrapp .item img{
    width: 220px;
  }
  .kontakt-wrapp{
    flex-direction: column-reverse;
  }
  .kontakt-wrapp .info{
    width: 100%;
  }
  iframe{
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-width:450px){
 
  .bg-fixed h2{
    font-size: 35px;
  }
  .proizvodi-wrapp .item .right span,  .proizvodi-wrapp .item .left span{
    font-size: 40px;
  }
  iframe{
    height:300px ;
  }
  .proizvodi-wrapp .item .slike img{
    width: 100%;
  }
  .dostava-wrapp{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
  }
  .info ul li, .info ul li a{
    font-size: 20px;
  }
}
@media screen and (max-width:400px){
  header nav ul li a{
    font-size: 8px;
  }
  main h1{
    font-size: 50px;
  }
  .bg-fixed h2{
    font-size: 30px;
  }
  .proizvodi-wrapp .item .right span,  .proizvodi-wrapp .item .left span{
    font-size: 30px;
  }
  .info ul li,.info ul li a,.info .dostava .dostava-naslov{
    
    font-size:20px;
 
  }
}