/* 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 {
	display: none;
}

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: 40px;
	text-align: center;
	font-weight: bold;
	text-decoration: #9d1c20 underline;
	margin: 5px;
	padding-bottom: 5px;
}

/* Menu Sections */
#menu_sections_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#menu_sections_container > a {
	padding: 10px;
	width: 40%;
	height: 100px;
	margin: 5px;
	margin-bottom: 15px;
	border: 1px solid grey;
	/* for background image: */
	background-color: rgba(32, 27, 27, 0.7);
	background-size: cover;
	background-blend-mode: overlay;
	text-decoration: none;
}
#menu_sections_container > a:hover {
	background-color: rgba(32, 27, 27, 0.6);
	cursor: pointer;
}
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;
}
/* Individual Menu Sections */
#Vegetable_Patch {
	background-image: url("../Images/Chicken_Salad.jpg");	
}
#Sandwiches {
	background-image: url("../Images/Philly.jpg");
	background-position: center;	
}
#Burger_Emporium {
	background-image: url("../Images/Burger.jpg");
	background-position: center;	
}
#Finger_Food {
	background-image: url("../Images/Chicken_Quesadillas.jpg");	
}
#The_Deli {
	background-image: url("../Images/Soup.jpg");	
}
#House_Favorites {
	background-image: url("../Images/Chicken_Sticks.jpg");	
}
#Senior_Menu {
	background-image: url(../Images/Steak_But_Tiny.jpg)
}
#Traditional_Dinners{
	background-image: url(../Images/Shrimp_Alfredo.jpg)
}
#Beverages {
	background-image: url("../Images/Beer.jpg");	
}

/* Footer*/
footer {
	background-color: #4a150b;
	color: white;
	padding: 25px 10px;
	text-align: left;
	font-size: 12px;
}