
html{
    height: 100%;
}

body{
    font-family: sans-serif;
    
    margin-bottom: 0;
    padding: 0;
    
    height: 100%;
}

.body-home{
    background-image: url(images/Category_Ribs%20&%20Grills_Spur.jpg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.body-meals{
    background-image: url(images/background-02-land.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/*=========== HEADER ==========*/

.header{
    background-color: #2196f3;
    
    width: 100%;
    height: 50px;
    top: 0;
    
    position: fixed;
    overflow: hidden;
    
    text-align: center;
}

.header i {
    float: left;
    padding: 17px 0px 0px 17px;
    color: #ffffff
}

.header img {
    width: 150px;
    padding-top: 14px;
    padding-right: 25px;
    
}
/*=========== HOME PAGE ==========*/

#home-logo-img{
 width: 50px;   
 display: block;
 margin: auto; 
padding: 25px 10px 10px 10px;
}

#home-logo-text{
    width: auto;
    display: block;
    margin: auto;
    padding: 25px
}
/*===== HOME PAGE MENU ===== */

.home-menu-item{
    text-decoration: none;
    text-transform: uppercase;
    
  color: white;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border: 5px solid white;
    
    display: block;
    margin  :auto;
    margin-bottom: 10px;
    width: 80%;
}

/*=========== MEALS PAGE ==========*/
.meals-list h1{
    text-decoration: none;
    text-transform: uppercase;

  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border: 2px solid BLACK;
    
    display: block;
    margin  :auto;
    margin-bottom: 10px;
    width: 80%;
}

#meals{
    padding-top: 50px;
}

/*===== MEALS PAGE MENU ===== */

.meals-list a{
    text-decoration: none;
}

.meals-list-item{
    border: 5px solid #1a1a1a;
    margin: 10px;
}

.meals-list-item h1{
    font-weight: bold;
    font-size: 20px;
    color: #1a1a1a;
    padding-left: 10px;

    
}

.meals-list-item i{
    float: right;
    color: #1a1a1a;
    padding-left: 10px;
}

.meals-list-item p{
    font-size: 15px;
    font-style: italic;
    color: #4d4d4d;
    margin-top: -7px;
    padding-left: 10px;
    
}


#recipe{
    padding-top: 50px;
}

/*========== form

/*===== RECIPE DETAILS ===== */

.recipe-details img {
    width: 100%;
}

.recipe-details h1{
    font-size: 25px;
    text-align: center;
    border: 5px solid #1a1a1a;
    margin: 10px;
    padding: 5px;
}

.recipe-details h2{
    font-size: 20px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
}

.recipe-details-info{
    margin-left: 25px;
    margin-right: 25px;
}

.recipe-details-info p{
    font-size: 13px;
   display: inline-block;
}

.recipe-details-ingredients label{
    line-height: 25px;
    margin-left: 10px;
}

.recipe-details-steps{
    padding-top: 20px;
    
}

.recipe-details-steps ol{
    padding-left: 28px;
}

/*=========== RESPONSIVE LAYOUTS==========*/

@media only screen and (min-width: 600px) {
    #meals {
        width: 80%;
        margin: auto;
    }
}

#recipe{
    width: 80%;
    margin: auto;
}

@media only screen and (min-width:1000px) {
        #meals {
        width: 60%;
        margin: auto;
    }
}

#recipe{
    width: 60%;
    margin: auto;
}


@media only screen and (min-width:1500px) {
        #meals {
        width: 40%;
        margin: auto;
    }
}

#recipe{
    width: 40%;
    margin: auto;
}

@media only screen and (min-width:720px) {
 .body-home{
  background-image: url('images/Nautika_restaurant_800_x600.jpg')
    }
    
    .body-meals{
     background-image: url('images/background-02-land.png')
    }
}
/*================== FORM ==================*/

input{
    width: 100%;
    height:25px;
    margin: 12px 0;
    border: 1px solid #929292;
}

textarea{
    width: 100%;
    height: 65px;
    margin: 12px 0;
    border: 1px solid #929292
}

.button{
    display: block;
    width: 100%;
    background-color: forestgreen;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
   padding: 8px 0;     
}
/*============ TOP-TABS ============*/

#tabs-top{
    position: fixed;
    top: 1px;
    left:0;
    z-index: 500;
    width: 100%;
    height: 40px;
    background-color: blue;
}

#tabs-top a{
    float: left;
    display: block;
    width: 33%;
    height: 35px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-decoration: none;
    padding-top: 12px;   
}

/*============ Main-home ============*/

#main-home{
    margin-top: 120px;
}

/*============ BOTTOM TABS ============*/

#tabs-bottom{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 500;
    width: 100%;
    height: 40px;
    background-color: black;
}

#tabs-bottom a{
    float: left;
    display: block;
    width: 33%;
    height: 35px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-decoration: none;
    padding-top: 12px;  
}



