@charset "UTF-8";
/* CSS Document */

/* Css by Megan Prior-Pfeifer, Unillu Designs, with modifications by Fiona Fung for Hadley Holloway

Table of Contents:
1. CSS Reset
2. Overall 
3. Home page layout
4. Site content layout

  */

/* CSS Reset*/
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;
}
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;
}


/* ------1 OVERALL------*/
body, html{
	background:url(assets/concrete_seamless.png) repeat;
	position: relative;
	height: 100%;
	min-height: 100% !important;
	margin:0 auto;
	padding:0px;
	font-family: 'Montserrat', sans-serif;
	color:#4c4038;
	font-size:18px;

}

h1, h2, h3 {
	font-weight:bold;
	padding:0px;
	margin:0px;
	font-family: 'Montserrat', sans-serif;
	color: #60374f;
	
}

h1{
	font-size: 50px;
	font-weight: bold;
	
}

h2{
	font-size: 21px;
	font-weight: normal;
}

h3{
	font-size: 18px;
}

p{
	line-height:1;
	margin:0px;
	padding:0px;
}

ul {
	padding:0px;
	margin:0px;	

}

a {
    color: #60374f;
    text-decoration: none;
}

a:hover{
	color: #94376d;
}


/*-----2 HOME PAGE LAYOUT-----*/
.main{
	width: 100%;
}
 
.hero-hadley {
	background: url("assets/hadley_home.png");  
	background-position: 50%;
	width: 1385px;
	height: 565px;
	position: absolute;
	left: 50%;
	margin-left: -693px;
}

.welcome{
	position: absolute;
	text-align: center;
	width: 600px;
	left: 50%;
	margin-top: 550px;
	margin-left: -300px;
	overflow: hidden;
}

#nav, #social{
	margin-left: auto;
	margin-right: auto;
	width:100%;
	margin-top: 26px;
	position:relative;
}

#nav ul{
	list-style:none;
	text-align:center;
}

#nav li{
	display:inline;	
	padding: 5px;
}


.fa {
	padding-top: 24px;
	padding-right: 15px;
}


/*-----3 SITE CONTENT LAYOUT-----*/

#site-container {
	width:865px;
	height:100%;
	margin-left:auto;
	margin-right:auto;
	padding:0px;
	position:relative;
	
}

#content-background {
	background:#f5debc;
	width:100%;
	height:100%;
	position:absolute;
	box-shadow: 0px 0px 5px #3f322c;	
}

#content {
	margin:20px;

}

#stripe-nav {
	position:absolute;
	z-index: 1000;
	bottom:0px;
	width:100%;
	height:30px;
	background:url(site/assets/stripe_03.jpg);
	box-shadow: 0px 0px 5px #3f322c;
}

#header {
	background:url(assets/header.png) transparent;
	height:250px;
	width:100%;
	position:relative;
	box-shadow: 0px 0px 5px #3f322c;	
}

#header-nav{
	width:auto;
	height: 70px;
	left:0px;
	bottom:0px;
	position:absolute;
	font-size:21px;
	color:	#26201c;
	text-shadow: 0px 2px 4px #ffffff;
	background-color:#f5debc;	
	box-shadow: 0px -2px 5px #3f322c;

}

#header-nav ul{
	list-style:none;
	text-align:left;
	margin-top:10px;
}

#header-nav li{
	display:inline;	
	padding: 10px;
	background-color:#f5debc;
	margin-right:10px;
	margin-left:10px;
}

#header-nav a{
	color:#26201c;
	text-decoration:none;
}

#header-nav a:hover{
	color:#565214;
}

#right-bar{
	float:right;
	width:25%;
	height:100%;
	position:relative;	
	text-align:center;
	display:block;
	margin-top:24px;
	border-left:#a7916f dashed 2px;
}

#left-bar{
	float:left;
	height:100%;
	width:70%;
	position:relative;	
	display:block;
	padding-left: 10px;
}

.upcoming-event{
	padding-bottom:15px;
}

#footer {
	position:fixed;
	bottom:0px;
	background-color:#a7916f;
	font-size:11px;
	color:#FFFFFF;
	width:835px;
	text-align:left;
	padding:15px;
	
}



