/* HEADER/NAVIGACIJA */
header {
  width: 100%;
  height: 180px;
  display: flex;
  flex: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(212 163 115); 
}

header div {
  display: inline-block;
}

.navigacija-stranica {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .foto {
  display: flex;
  position: relative;
  left: 30px;
  margin-top:8px;
  transition: 0.4s ease-in-out;
}

header .foto img {
  width: 170px;
  height: 129px;
  transition: 0.4s ease-in-out;
  border: 1px solid black;
}

header .katalog,
header .about,
header .contact {
  margin-left: 60px;
}

.društvene-mreže {
  position: relative;
  right: 20px;
  padding: 10px;
}

.društvene-mreže img {
  width: 30px;
  margin-left: 10px;
}

@media (width<940px) {
  header .foto {
    left: 10px;
  }

  header h4 {
    font-size: 24px;
  }

  header .katalog,
  header .about,
  header .contact {
    margin-left: 30px;
  }

}

@media (width<740px) {
  header {
    flex-direction: column;
    height: 250px;
  }

  header .foto{
    padding:10px 1px 5px 1px;
  }

  header h4 {
    font-size: 22px;
  }

  .navigacija-stranica {
    padding: 20px 0 0 0;
  }

  .društvene-mreže img {
    margin-left: 5px;
  }


  .društvene-mreže {
    margin-left: auto;
  }

}

@media (width<500px) {
  header h4 {
    font-size: 20px;
  }

  header .katalog,
  header .about,
  header .contact {
    margin-left: 15px;
  }
}