body{
	margin: 0;
	font-family: 'Lora', serif;
}

.container {
	width: 900px;
	margin: 0 auto;
}

h1,h2,h3,h4,h5,h6,
nav,
footer ul {
	font-family: 'Montserrat', sans-serif;
}

p {
	font-size: 1.15em;
}

/*----- HEADER -----*/
header {
	padding-bottom: 20px;
	background-color: #040500; /* Slightly lighter than black to match home page background image */
}

#logo {
	max-height: 100px;
	margin-top: 50px;
	margin-left: -25px;
}

@media screen and (max-width: 960px) {
	#logo {
		margin-left: 0px;
	}
	
	main.container {
		padding: 0 25px;
	}
}

#social-media {
	text-align: right;
}

#social-media img {
	width: 30px;
	margin-left: 35px;
}

/*--- NAVIGATION ---*/
header nav {
	display: inline-block;
	float: right; /* Allows navigation items to float in order */
	margin-top: 55px;
}

header nav ul {
	margin-top: 35px;
}

header nav ul li {
	display: inline-block;
	float: left; /* Allows navigation items to float in order */
	margin-left: 50px;
	font-size: 1.15em;
}

header ul a:link,
header ul a:visited {
	color: #FFF;
	font-weight: bolder;
	text-decoration: none;
	text-transform: uppercase;
}

header ul a:hover {
	color: #040500;
	background-color: #FFF;
}

header ul a:active {
	color: #FFF;
	font-weight: bolder;
	text-decoration: none;
	text-transform: uppercase;
}

.dropdown-menu {
	position: relative;
}

.dropdown-links {
	display: none;
	position: absolute;
}

.dropdown-menu:hover .dropdown-links {
	display:block;
    position: absolute;
    margin-left: -40px;
    margin-top: -8px;
    padding: 5px 10px;
    background-color: #040500;
}

/*------ MAIN ------*/
main {
	padding: 15px 0 20px;
}

@media screen and (max-width: 960px) {
	/* Adds padding on left and right at small screen sizes */
	main.container {
		padding: 15px 25px;
	}
}

.title { /* Used for <h1> sizing on each page */
	height: 100px;
    font-size: 3.5em;
    color: #FFF;
    padding-top: 30px;
    padding-left: 50px;
    margin: 0;
}

/*----- FOOTER -----*/
footer {
	background-color: #040500;
	text-align: center;
	padding: 10px;
	color: #FFF;
}

footer ul li {
	display: inline-block;
	padding-right: 30px;
}

footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
	color: #FFF;
	font-weight: bolder;
	text-decoration: none;
	text-transform: uppercase;
}

/*-------------------------
*  
*   INDIVIDUAL PAGE STYLES
*
 --------------------------*/

/*----- ABOUT.PHP -----*/
#about-title {
	background: url('images/index-bg.jpg') no-repeat;
}

/*---- CONTACT.PHP ----*/
#contact-title {
	background: url('images/contact-title.jpg') no-repeat;
}

form {
	width: 60%;
    margin: auto;
    text-align: center;
}

#label-group {
	display: inline-block;
	float: left;
	width: 25%;
}

label {
	display: block;
	color: #fff;
    background-color: red;
    padding: 5px 10px;
	text-align: right;
}

.align-top {
	vertical-align: top;
}

#input-group {
	display: inline-block;
	width: 70%;
}

input {
	width: 325px;
	height: 15px;
	padding: 5px 0;
}

input,
textarea {
	width: 100%;
}

label,
input,
textarea {
	margin-bottom: 25px;
}

button {
	color: #fff;
    background-color: #ef1b1b;
    border: none;
    padding: 10px 15px;
    width: 100%;
    font-size: 1em;
}

button:hover {
	background-color: #FFF;
	color: #ef1b1b;
	border: 2px solid #ef1b1b;
	padding: 8px 15px;
}

/*----- INDEX.PHP -----*/
#index {
	background: url('images/index-bg.jpg') no-repeat;
	background-size: cover;
	height: 840px;
	color: #FFF;
}

#index h1 {
	font-size: 3em;
    padding-top: 35px;
    text-align: center;
}

/*--- LOCATION.PHP ---*/
#location-title {
	background: url('images/location-title.jpg') no-repeat;
}

.larger-body-text {
	font-size: 1.5em;
}


/*----- MENU.PHP -----*/
#menu-title {
	background: url('images/menu-title.jpg') no-repeat;
}

.two-column {
	display: inline-block;
	width: 49%;
	vertical-align: top;
}

/*- SIDE-DISHES.PHP -*/
#sidedishes-title {
	background: url('images/sidedishes-title.jpg') no-repeat;
}

#side-dishes figure {
	display: inline-block;
	margin: 20px 0;
	width: 48%;
	vertical-align: top;
}

#side-dishes figure:nth-child(even) {
	margin-right: 3%;
}

#side-dishes figure img {
	width: 100%;
}

#side-dishes figure figcaption {
	font-weight: bold;
    font-size: 1.5em;
	color: #fff;
    position: absolute;
    margin-top: 25px;
    margin-left: 25px;
}