/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	background-color: whitesmoke;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Hamburger Menu / navigation bar */
nav {
	background-color: #9d1c20;
	z-index: 100;
}
#hamburger_menu {
	background-color: #9d1c20;
	display: none;
	width: auto;
    padding: 0;
    margin-bottom: 0;
	left: 0;
}
nav a {
	overflow: hidden;
	z-index: 99;
    color: white;
    padding: 10px;
    text-decoration: none;
	display: block;
}
.hamburger_menu_icon {
	background-color: #4a150b;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
#logo {
	padding: 0px;
}
#logo img {
	height: 35px;
	margin: 5px;
}
.hamburger_menu_icon:hover {
	background-color: black;
}
#hamburger_menu a {
	background-color: grey;
}
#hamburger_menu a:hover {
    background-color: black;
}
/* Title of webpage :D */
h1 {
	font-size: 50px;
	text-align: center;
	padding: 5px;
	font-weight: lighter;
	font-family: 'Brush Script MT';
}
/* Footer*/
footer {
	background-color: #4a150b;
	color: white;
	padding: 25px 10px;
	text-align: left;
	font-size: 12px;
}
footer p {
	color: white;
	font-size: 12px;
}


/* Menu Sections */
#menu_sections_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#menu_sections_container a {
	padding: 10px;
	width: 38%;
	height: 100px;
	margin: 5px;
	border: 1px solid grey;
	text-decoration: none;
	text-align: center;

	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: nowrap;

	background-size: cover;
	background-blend-mode: overlay;
}
#menu_sections_container a:hover {
	background-color: rgba(32, 27, 27, 0.6);
	cursor: pointer;
}
#menu_sections_container a {
	/* for background image: */
	background-color: rgba(32, 27, 27, 0.7);
}

#menu_sections_container h2 {
	font-size: 20px;
	color: white;
}
#menu_sections_container a p {
	text-decoration: underline;
	font-size: 13px;
	color: white;
	cursor: pointer
}
/* ----- */
#menu_sections_container a p:hover {
	text-decoration: none;
}
#Burger_Emporium {
	background-image: url("../Images/Burger.jpg");	
}
#Sandwiches {
	background-image: url("../Images/Philly.jpg");	
}
#All_Menu_Items {
	background-color: rgba(74, 21, 11, 1);
}
#All_Menu_Items:hover {
	background-color: #9d1c20;
}

/* Weekly Special Deals */
#weekly_special_container {
	background-color: #f2f2f2;
	padding: 10px;
	text-align: center;
	border-top: solid black 2px;
	border-bottom: solid black 2px;
}
#weekly_special_container > h2 {
	text-align: center;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-size: 35px;
	text-decoration: #9d1c20 underline;
	font-weight: bold;
}
#weekly_special_container div {
	background-color: white;
	margin: 10px 0;
	padding: 10px;
	box-shadow: rgb(75, 75, 75) 0 0 5px;
}
#weekly_special_container div h2{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}
.special_time {
	font-style: italic;
}

/* Brunch Special */
#Brunch_Special {
	text-align: center;
}
#Brunch_Special img {
	width: 200px;
	margin: 5px;
}

/* 
there are too many CSS pages
why did I create so many
 ;-; 
*/