/* ------------- ZOMBIE'S FOOD CSS :: HEADER ------------- */
/*
/*    [0] -> Menu
/*    [1] -> Logo
/*    [2] -> Liens
/*
/* ----- #0 - MENU ----- */

.menu{
  padding-top: 30px;
  line-height: 66px;
  height: 66px;
  width: 100%;
}

/* ----- #1 - LOGO ----- */

.m-title{
  float: left;
}

.logo{
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 30px;
  color: #FFF;
  padding: 0;
  margin: 0;
}

/* ----- #2 - LIENS ----- */

.m-navigation{
  float: right;
}

.m-links{
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  margin: 0px 15px;
  padding: 0px;
  height: 58px;
  color: #FFF;
}

.m-links:hover{
  border-bottom: 5px solid #FFF;
  transition: all 0.3s ease-in-out
}
