/**

Main Blue #66A3FF
Secondary Gray #535353
Tertiary Gray #888888

**/
body {
	margin: 0;
	/*background-color: #66A3FF;*/
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	
	overflow-x: hidden;
}

body#home-page {
	background-image: url('../img/camping2.jpg');
}

body#golf-tournament {
	background-image: url('../img/golfing.jpg');
}

body#photo-gallery {
	background-image: url('../img/gallery-bg.jpg');
}

body#contact-us {
	background-image: url('../img/contactus.jpg');
}

body#nolans-story {
	background-image: url('../img/camo-bg.jpg');
}

a {
	text-decoration: none;
	color: inherit;
}

.site-title {
	font-size: 60px;
	text-align: center;
	padding: 30px 0 30px 0;
	font-family: 'Bubblegum Sans', cursive;
	color: #FFFFFF;
}

.topbar {
	background-image: url('../img/camo.jpg');
	background-size: cover;
	margin-bottom: 50px;
	box-shadow: 0px 10px 10px #000000;
}

.navbar {
	width: 100%;
	text-align: center;
	color: #FFFFFF;
}

.nav-item {
	display: inline-block;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	padding: 10px 50px 10px 50px;
}

.nav-item a {
	transition: color 0.5s;
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
}

.nav-item#active {
	color: #FFFFFF;
}

.nav-item a:hover {
	color: #FFFFFF;
}

.camo-green {
	color: #566957;
}

.camo-gray {
	color: #9E9C8D;
}

.camo-brown {
	color: #644C45
}

.camo-black {
	color: #6F6D7C;
}

.body-content-wrapper {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
	
	min-height: 100%;
    height: auto !important;
    height: 100%;
	margin-bottom: -50px;
}

/**
*** Home Page ***
**/

.nolans-story-banner {
	margin: 0 auto;
	width: 90%;
	background-color: rgba(83, 83, 83, 0.5);
	padding: 10px;
	color: #FFFFFF;
}

.nolans-story-photo {
	display: inline-block;
	text-align: left;
	vertical-align: text-top;
	width: 250px;
	height: auto;
	border-radius: 150px;
}

.nolans-story-text {
	display: inline-block;
	width: 71%;
	text-align: left;
	margin-left: 20px;
	vertical-align: text-top;
}

@media screen and (max-width: 450px) {
	.nolans-story-text {
		width: 90%;
		margin-left: 0;
	}
}

.nolans-story-title {
	font-weight: bold;
	font-size: 30px;
}

.nolans-story-button {
	background-color: #888888;
	color: #FFFFFF;
	padding: 5px;
	width: 110px;
	padding: 5px;
	text-align: center;
	
	transition: background-color 0.5s;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
}

.nolans-story-button:hover {
	background-color: #000000;
}

.home-page-content-blocks {
	width: 100%;
	color: #FFFFFF;
}

.content-block {
	display: inline-block;
	width: 250px;
	padding: 10px;
	vertical-align: text-top;
	background-color: rgba(83, 83, 83, 0.5);
	margin: 10px 20px;
}

.content-block-title {
	font-weight: bold;
	font-size: 25px;
	margin: 10px 0;
}	

.content-block-description {
	margin: 10px 0;
}

.content-block-button {
	background-color: #838383;
	padding: 5px;
	
	transition: background-color 0.5s;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
}

.content-block-button:hover {
	background-color: #000000;
}

/*** Testimonials ***/
.testimonials {
	text-align: center;
	padding: 30px 0 30px 0;
	color: #FFFFFF;
	background-color: rgba(83, 83, 83, 0.5);
}

.testimonial-text {
	display: none;
	opacity: 0;
	
	font-size: 30px;
	font-style: italic;
	max-width: 90%;
	height: 175px;
	margin: 0 auto;
	
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

@media screen and (max-width: 826px) {
	.testimonial-text {
		height: 200px;
	}
}

@media screen and (max-width: 669px) {
	.testimonial-text {
		height: 350px;
	}
}

@media screen and (max-width: 413px) {
	.testimonial-text {
		height: 400px;
	}
}

@media screen and (max-width: 360px) {
	.testimonial-text {
		height: 450px;
	}
}

.testimonial-text.first {
	display: block;
	opacity: 1;
}

.testimonial-signature {
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
}

#full-testimonials {
	transition: color 0.5s;
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
}

#full-testimonials:hover {
	color: #000000;
}
/*** Testimonials ***/

.news {
	padding: 10px;
	color: #FFFFFF;
}

.news-section-heading {
	font-size: 25px;
	font-weight: bold;
}

.news-article {
	background-color: rgba(83, 83, 83, 0.5);
	padding: 10px;
	margin: 5px 0;
}

.article-title {
	font-weight: bold;
	font-size: 25px;
	text-align: left;
}

.article-content {
	font-size: 20px;
	text-align: left;
}

.article-content a {
	text-decoration: underline;
	
	transition: color 0.5s;
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
}

.article-content a:hover {
	color: #000000;
}

.more-links {
	padding: 10px;
	color: #FFFFFF;
	/*background-color: rgba(83, 83, 83, 0.5);*/
}

.more-links-heading {
	font-weight: bold;
	font-size: 25px;
}

.more-link {
	font-weight: bold;
    font-size: 20px;
	text-decoration: underline;
	padding: 10px;
}

/**
*** Golf Tournament ***
**/
.golf-tournament-list {
	/*padding: 100px 0px;*/
	
	padding: 75px 30px 75px 30px;
}

.golf-tournament {
	width: 100%;
	color: #FFFFFF;
	/*background-color: rgba(83, 83, 83, 0.5);*/
	padding-bottom: 100px;
	
}

.golf-tournament-image {
	display: inline-block;
	vertical-align: text-top;
	position: relative;
	right: 75px;
	
	max-width: 300px;
	min-width: 200px;
	height: auto;
}



@media screen and (max-width: 1077px) {
	.golf-tournament-image {
		right: 10px;
	}
}

@media screen and (max-width: 875px) {
	.golf-tournament-image {
		right: 0px
	}
}

@media screen and (max-width: 863px) {
	.golf-tournament-image {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 360px) {
	.golf-tournament-image {
		width: 250px;
		height: auto;
	}
}

.golf-tournament-text {
	display: inline-block;
	vertical-align: text-top;
	max-width: 500px;
	position: relative;
}

.golf-tournament-title {
	font-weight: bold;
	font-size: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #FFFFFF;
}

.golf-tournament-description {
	padding: 15px 0;
}

.golf-tournament-button {
	background-color: #FFFFFF;
	color: #000000;
	width: 186px;
	padding: 5px;
	/*position: absolute;
	right: 0px;*/
	margin: 0 auto;
	
	transition: color 0.5s, background-color 0.5s;
	-webkit-transition: color 0.5s, background-color 0.5s;
	-moz-transition: color 0.5s, background-color 0.5s;
}

.golf-tournament-button:hover {
	background-color: #000000;
	color: #FFFFFF;
}

/**
*** /Golf Tournament ***
**/

/**
*** Photo Gallery *** 
**/
.photo-gallery-wrapper {
	padding-top: 75px;
}

.album {
	color: #FFFFFF;
	margin-bottom: 50px;
}

.album-banner {
	position: relative;
	background-color: rgba(83, 83, 83, 0.3);
	height: 110px;
	width: 100%;
	margin-bottom: 10px;
	
	transition: background-color 0.5s;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
}

.album-banner:hover {
	cursor: pointer;
	background-color: rgba(83, 83, 83, 1);
}

.album-title {
	position: relative;
	left: 25px;
	font-size: 25px;
	font-weight: bold;
	width: 100%;
	line-height: 75px;
	text-align: left;
}

.album-count {
	position: absolute;
	top: 0px;
	right: 25px;
	line-height: 75px;
	font-size: 25px;
	font-weight: bold;
}

.album-open {
	
}

.open {
	display: block;
}

.close {
	display: none;
}

.gallery-preview {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 10px;
}

@media screen and (max-width: 690px) {
	.album-banner {
		height: auto;
		padding-bottom: 13px;
	}
	
	.album-title {
		left: 0px;
		text-align: center;
		line-height: 50px;
	}
	
	.album-count {
		position: initial;
		line-height: 50px;
		font-size: 20px;
		font-weight: normal;
	}
	
	.gallery-preview {
		margin-bottom: 10px;
	}
}

/**
*** /Photo Gallery *** 
**/

/**
*** Contact Us ***
**/

ul.contact-form {
	position: relative;
	list-style: none;
	padding: 0;
	/*top: 100px;*/
	width: 500px;
	margin: 0 auto;
	margin-top: 100px;
	color: #FFFFFF;
	font-weight: bold;
}

ul.contact-form li {
	text-align: left;
}

ul.contact-form input {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 50px;
	height: 25px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 0;
}

ul.contact-form textarea {
	height: 300px;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 20px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 0;
}

.error {
	color: #FF0000;
}

input.submit {
	background-color: rgba(255, 255, 255, 1);
	border: 0;
	font-size: 20px;
	color: #000000;
	padding: 5px 15px;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	
	transition: background-color 0.5s, color 0.5s;
	-webkit-transition: background-color 0.5s, color 0.5s;
	-moz-transition: background-color 0.5s, color 0.5s;
}

input.submit:hover {
	cursor: pointer;
	background-color: #000000;
	color: #FFFFFF;
}

#button {
	/*position: relative;
	top: 100px;*/
}

#mail_success {
	position: absolute;
	width: 100%;
	text-align: center;
	font-size: 50px;
	color: #FFFFFF;
	top: 200px;
	background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 499px) {
	ul.contact-form {
		width: 90%;
	}
}

/**
*** /Contact Us ***
**/

/**
*** Footer ***
**/
.footer {
	min-height: 50px;
	background-color: #000000;
	color: #FFFFFF;
	text-align: center;
}

.footer-text {
	line-height: 50px;
}

.footer-sub-text {
	font-size: 15px;
	padding: 10px;
}

.footer-sub-text a.ddd-link {
	font-weight: bold;
	text-decoration: underline;
	
	transition: color 0.5s;
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
}

.footer-sub-text a.ddd-link:hover {
	color: #C2272D;
}

.footer-push {
	height: 100px;
}
/**
*** /Footer ***
**/

/**
*** Nolans Story ***
**/
.nolans-story {
	position: relative;
	top: 50px;
	background-color: rgba( 83, 83, 83, 0.5);
	color: #FFFFFF;
	padding: 10px;
}

.story-heading {
	font-weight: bold;
	font-size: 25px;
}

.story-image {
	display: block;
	margin: 40px auto;
	
}

.story-body {
	text-align: left;
}

/**
*** /Nolans Story ***
**/