/* 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: white;
}
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 {
	overflow: hidden;
	background-color: #9d1c20;
	position: sticky;
}
#hamburger_menu {
    display: none;
}
nav a {
    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;
	margin: 5px;
	padding-bottom: 5px;
	font-weight: bolder;
	text-decoration: #9d1c20 underline;
}
h2 {
	font-size: 20px;
}
/* Footer */
footer {
	background-color: #4a150b;
	color: white;
	padding: 25px 10px;
	text-align: left;
	font-size: 12px;
}

/* Hours Information */
#hours_info {
	background-color: white;
	padding: 10px;
	border:#4a150b 2px solid;
	text-align: center;
	margin: 10px;
}
#hours_info h2 {
	color: black;
	font-weight: bold;
}
#hours_info p {
	padding: 3px;
	font-size: 14px;
}
#hours_info hr {
	width: 80%;
}
.hours_info_day {
	font-weight: bold;
	padding: 5px;
	margin: 3px;
}
.hours_info_monday {
	color: red;
	font-weight: bold;
	padding: 5px;
	margin: 3px;
}


/* Google Map */
#google_map {
	padding: 10px;
}
#google_map h2 {
	text-align: center;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 24px;
}
#google_map div {
	border: rgb(200, 200, 200) 5px solid;
}
iframe{
	display: block;
	margin: 5px auto 5px auto;
	width: 90%;
	height: 100%;
}
#google_map_desc {
	text-align: center;
	font-size: 14px;
	margin: 5px 0px;
	color: rgb(47, 47, 47);
}
#duck_inn_location_desc {
	text-align: center;
	font-size: 16px;
	margin: 0px 15px 20px 15px;
	margin-bottom: 10px;
}

/* About Us but BLURB version!!! (wait is blurb the right word?) */
.about_us_blurb {
	margin: 10px 15px 10px 15px;
	text-align: center;
}
.about_us_blurb h2 {
	text-align: center;
	margin-bottom: 10px;
}

/* Yelp Review Thingy */
#yelp_review_container {
	width: 100px;
}

/* Contact Form!!! */
form {
	background-color: #f2f2f2;
	padding: 20px;
	border-radius: 5px;
	max-width: 280px;
	margin: 10px auto 0px auto;
	font-size: 14px;
}
input[type=text], input[type=email], textarea {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	resize: vertical;
}
input[type=submit] {
	background-color: #9d1c20;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
input[type=submit]:hover {
	background-color: #4a150b;
}
label[for="fname"]::after, label[for="lname"]::after, label[for="email"]::after {
	content: "*";
	color: red;
}
form h2 {
	font-size: 20px;
	margin-bottom: 14px;
	text-align: center;
	font-weight: bold;
}