html{
    height: 100%;
}

body{
    font-family: sans-serif;

    margin: 0;
    padding: 0;

    height: 100%;
}

.body-home{
    background-image: url('images/background-portrate.avif');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

#home-logo-text{
    width: 500px;
    margin: auto;
    display: block;
    padding: 25px;
    padding-left: 7px;
    height: 500px;
    
}

/* ===== 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%;
}


.header{
    text-align: center;
    width: 100%;
    background-color: darkgrey;
    height: 140px;
    top: 0;

    position: fixed;
    overflow: hidden;
    text-align: center;
    
}

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


/*========== BURGERS PAGE ========= */

#burgers{
    padding-top: 140px;
}

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

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

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

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

/*========== BURGERS DETAILS PAGE ========= */

#food-info{
    padding-top: 141px;
}

/*========== BURGERS DETAILS PAGE ========= */

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

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

.burger-info h2{
    font-size: 20px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
    padding-top: 25px;
}

.burger-info p{
    margin-left: 10px;
    font-size: 18px;
}

.burger-extras{
   font-size: 13px;
    text-align: left;
    margin: 0;
    margin-left: 10px;
    padding-top: 25px;
}

.burger-price h2{
    padding-top: 5px;
}

.customer-notes{
  color: #dddddd;
  padding: 16px;
  border: 2px solid transparent;
  outline: none;
  border-radius: 10px;
}

.placeorder-button{
    text-decoration: none;
    color: #1a1a1a;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;

    background-image: url(images/menu-button.gif);
    background-repeat: no-repeat;
    display: block;
    width: 128px;
    height: 25px;
    padding-left: 18px;
    padding-top: 2px;
    margin-left: 10px;
    padding-bottom: 10px;
}

/*========== ORDER PAGE ========= */

.orderPage h1{
    margin-top: 200px;
    text-align: center;
    font-size: 100px;
    font-family:cursive;
}

.orderPage p{
    text-align: center;
    font-size: 25px;
}

.back a{
    text-decoration: none;
    padding-left: 78%;

}

/*========== RESPONSIVE LAYOUT ========= */

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

    #food-info{
        width: 80%;
        margin: auto;
    }
}

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

    #food-info{
        width: 60%;
        margin: auto;
    }
}

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

    #food-info{
        width: 40%;
        margin: auto;
    }
}

@media only screen and (min-width: 740px){
    .body-home{
        background-image: url('images/background-landscape.webp');
    }

    .body-meals{
        background-image: url('images/background-02-land.png');
    }
}
