/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)


Daniel Coy
SNHU GRA 310
CSS Sheet for TOWN Restaurant Website. 
*/

/*********************************************************************************************************
**********************************************************************************************************
This portion of the code came for the text book exercises. 
I have made no changes to it. I do not believe all of it is required, but I have not removed/editted any 
of the code.
*/
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, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/******************************************************************************************
*******************************************************************************************/

/*Define the TOWN banner font*/
@font-face { font-family: Majesti; src: url('Majesti-Banner-Bold.otf'); }

/*************************
	Main Styling
*************************/
body {
	background: #8A8C8F;
	color: #8A8C8F;
	padding-top: 50px;
    padding-bottom: 50px;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

div#container {
	width: 960px;
	margin: 0 auto;
	padding: 0 0;
    border: 3px solid #BE1E2D;
    background: #41393D;
}

/**************************************************/
/*TABLES*/

table {
	border-collapse: collapse;
	border-spacing: 0;
    width:100%
}

th{
    padding: 10px;
    width: 30%;
    font-size: 1.5em;
}


td {
    padding: 10px;    
    color: #d4a18d;
}


/***********************************************/
/* Header */
#container > header {    
    padding: 0 0em;	
}

/***********************************************/
/*LOGO*/
header div#logo {
    height: 308px;    
    color: #BE1E2D;
	padding: 0px;
   	font-size: 3em;
	font-family: Majesti;
    text-align: center;  
    border-bottom: 3px solid #BE1E2D;    
}

/**********************************************/
/* Navigation Menu*/
header nav {
	width: 600px;
	margin: 0 auto;
    text-align: center;
    margin: auto;
    padding: 0px;
}

header nav ul {
	list-style-type: none;
    margin: 0px;
    padding: 0px;
    font-size: 1.2em;
    overflow:hidden;
    background-color: #41393D;
    width: 100%;     
}

header nav ul li {
	display: inline-block;
    font-family: Majesti;
    padding: 0px;
    margin: 0px;
    float:left;            
}

header nav ul li a {	
    display: block;
    padding: 15px 20px;
    text-align: center;
	color: #8A8C8F;
    text-decoration: none;
    border-right: 4px solid #41393D;    
}

header nav ul li a:hover:not(.active){
    background-color: #BE1E2D;
    color: #d4a18d;
    border-right: 4px solid #d4a18d;   
}

header nav ul li a.active {
    background-color: #BE1E2D;
    color: #d4a18d;
    border-right: 4px solid #d4a18d;
}

/*********************************/
/* main_content1 */
section#main_content1 {
    padding-top: 40px;
    padding-left: 143px;
    padding-right: 143px;
    padding-bottom: 0px;
    font-size: 1em;
    text-align: justify;
	background: #41393D;    
    border-top: 3px solid #BE1E2D;
}

section#main_content1 h2 {
	font-family: Majesti;
	font-size: 2.5em;
    color: #EF4E22;
    padding-bottom: 25px;
   
}


section#main_content1 p {
	font-size: 1.2em;
}

section#main_content1 img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    border: 2px solid #BE1E2D;
}
 /*Change the boarder of the special's image when mouse hover */
section#main_content1 img#special:hover {
    border: 2px solid #D7E4C2;
}



/*******************************************/
/* main_content2 */
section#main_content2{
	padding-top: 50px;
    padding-left: 143px;
    padding-right: 143px;
    padding-bottom: 25px;    
	font-size: 1em;
	background: #41393D;
    overflow: auto;
}

section#main_content2 h2 {
	text-align: left;
    font-family: Majesti;
	font-size: 2.5em;
    color: #EF4E22;
    padding-bottom: 25px;
    
}

section#main_content2 img {
    float: right;
    border: 2px solid #BE1E2D;
    margin: 10px;
    
}


section#main_content2 p {
	text-align: left;
	font-size: 1.2em;
	
 
}

/*********************************/
/* Order Form */
section#order_form {
	
    padding-top: 40px;
    padding-left: 143px;
    padding-right: 143px;
    padding-bottom: 0px;
   	background: #41393D;    
   
  
}


/********************************************/
/* Footer */
footer {
	text-align: center;
     background: #41393D;
	font-size: 0.7em;
	border-top: 3px solid #BE1E2D;
	padding: 5px;
	margin: 0em;
	clear: both;
	color: #D7E4C2;
}

footer a,
footer a:visited {
	color: #636363;
}

footer a:hover,
footer a:focus {
	color: green;
}


