@import url(//fonts.googleapis.com/css?family=Limelight);
@import url(//fonts.googleapis.com/css?family=Oleo+Script:400,700);
@import url(//fonts.googleapis.com/css?family=Nunito:400,300,700);

html {
	font-family: "Nunito", sans-serif;
    background: #ddd url('../images/bg-body.png');
}

#mainContent {
}

#banner {
    position: relative;
	text-align: center;
	width: 100%;
	height: 80px;
}

#logo {
    position: absolute;
    top: 70px;
    left: 10px;
    top: 12px;
    left: 10px;
}

#navigationMenu {
    height: 69px;
	margin-top: 10px;
	padding: 0 175px; /* Padding for menu start after logo */
    padding-right: 0;
    background: url('../images/bg-navigation.png');
    color: #822619;
    font-family: "Oleo Script", "cursive";
    text-shadow: 0 0 5px #fff; /*#ae3321;*/
    font-size: 1.5em;
}

#navigationMenu > li {
	list-style-type: none;
	display: inline-block;
	padding: 9px 15px;
	margin: 10px 10px;
}

#navigationMenu > li a {
    color: #822619;
    display: inline-block;
    width: 100%;
    text-decoration: none;
}

#navigationMenu > li a:hover {
	color: white;
    cursor: pointer;
}

#infoBar {
    float: right;
	width: 22%;
	height: 100%;
    padding-right: 10px;
    font-family: "Oleo Script", "cursive";
    font-size: 1.2em;
    text-shadow: 0 0 5px #fff;
}

#infoBar p {
    text-align: center;
}

#infoBar > hr {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}

#infoBar a {
    color: #000;
    text-decoration: none;
}

.foodMenu {
    margin: auto auto 2em 140px;
    width: 54%;
    background-color: #ebe9d7;
    border: 8px solid #822619;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 5px inset;
}

.foodMenu:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.foodMenu > img.hero {
    float: right;
    border: 15px solid #ebe9d7;
    border-radius: 30px;
}

.foodMenu > img.heading {
    position: relative;
    top: -20px;
    color: #ae3321;
    font-family: "Oleo Script", "cursive";
    text-shadow: 0 0 5px #ae3321;
    font-size: 1.5em;
}

.foodMenu > p.categoryNotes {
    font-family: "Oleo Script", "cursive";
    margin: -10px 20px 20px 40px;
    font-size: 16pt;
    color: #ae3321;
}

ul.items {
    width: 45%; /* Proper Width for Hero image space */
    width: 90%; /* Proper Width for full menu */
    list-style: none;
}

ul.items > li {
    border-bottom: 1px dotted black;
    margin-bottom: 15px;
}

.itemPrice {
    float: right;
    padding-left: 20px;
}

.itemPrice:before {
    content: "$";
}

#footer {
    font-size: 8pt;
    margin-left: 140px;
    text-align: center;
    width: 54%;
}


/* Normal Screens */
@media screen and (max-width:1300px) {
    .foodMenu > img.hero {
        display: none;
    }
}


/* Small Screens */
@media screen and (max-width:992px) {
    #logo {
        position:relative;
        left: -5px;
    }
    #navigationMenu {
        text-align: center;
        padding: 0;
    }
    #navigationMenu > li {
        position: relative;
        top: 325px;
        display: block;
        padding: 0;
        margin: 2px auto;
        width: 60%;
        background-color: rgba(255,255,255,0.5);
        border: 1px solid rgba(0,0,0,0.25);
    }
    #infoBar {
        float: none;
        width: 80%;
        margin: auto;
    }
    .foodMenu {
        position: relative;
        top: 250px;
        width: 80%;
        margin-left: auto;
    }
    ul.items > li {
        display: inline-table;
        border-collapse: collapse;
        width: 100%;
    }
    .itemName {
        display: table-cell;
    }
    .itemPrice {
        float: none;
        display: table-cell;
        vertical-align: bottom;
        text-align: right;
    }
    #footer {
        text-align: center;
        padding: 10px;
        position: relative;
        top: 250px;
        width: 80%;
        margin: auto;
    }
}

/* Tiny Screens */
@media screen and (max-width:420px) {
    #navigationMenu > li {
        top: 350px;
    }
    .foodMenu > img.heading {
        max-width: 100%;
    }
    .foodMenu > p.categoryNotes {
        margin: auto;
        text-align: center;
    }
    ul.items {
        width: auto;
        padding: 0;
    }
}

/* Print */
@media print {
  body {
    display: none;
  }
}