/*   
	Site: 		Caliber Club
	URL: 		http://caliberclubgame.com/
	Author: 	Matthew J. Stellato
	Author URL:	http://matthewstellato.com
	Version: 	1.0
*/


/*  Getting Organized // Base Structure & Styles
---------------------------------------------------------- */
@import url("reset.css");
@import url("fancybox.css");

html, body {
	height: 100%
}

#cc {
	min-height: 100%;
	background: rgba(255,255,255,.5)
}

body {
	font-size: 15px;
	line-height: 20px;
	color: #000;
	font-family: "Lucida Grande", arial, sans-serif;
	background: #141416 url(../img/bg-body.jpg) no-repeat top center fixed;
	background-size:cover;
	text-align: center;
	-webkit-text-size-adjust: 100%;
}

p {
	padding: 0 0 20px 0;
	color:#000;
}

a {
	text-decoration: none;
	color: #eda129;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);	
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

a:hover {
	color: #F6CF93;
}

.coming {
	padding-bottom:50px;
	color: #eda129;
}

strong {
	font-weight: 600;
}

.wrap {
	max-width: 400px;
	margin: 0 auto;
	padding: 20px;
	position: relative;
}

.wrap:after {
	content:'';
	display: block;
	clear: both;
}

/*img {
	border: none;
}*/

/*article {
	padding:40px 0 100px
}*/

.mobile {
	display: none;
}

.desktop {
	display: block;
}



/* Header 
-----------------------------------------------------------*/
header {
	padding:20px 30px;
	min-width: 820px;
	position: relative;
}

h1 {
	margin:0 auto 20px;;
}

/*h1,
h1 a {
	height: 48px;
	width: 48px;
	background: url(../img/logo.png) no-repeat 0 0;
	background-size:100%;
}*/

h1 a {
	display: block;
	text-indent: -9999em;
}



/* Typogrphy 
-----------------------------------------------------------*/

h2 {
	font-family: "futura-pt",sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size:32px;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom:25px;
}

/*h3 {
	font-weight: bold;
	font-size:18px;
	padding:20px 0 5px;
	line-height: normal;
}*/





/* Layout
-----------------------------------------------------------------*/
/*section {
	padding:40px 0;
	border-top:1px solid rgba(255,255,255,.1);
}*/

.btn {
	margin: 20px 0;
	display: inline-block;
	opacity: 1;
}

.btn:hover {
	opacity: .5;
}

#facts ul {
	text-align: left
}

#facts li {
	padding:0 0 8px 0;
	overflow: hidden
}

#facts ul strong {
	display: inline-block;
	width: 35%;
	float: left;
	text-align: right;
	color:rgba(255,255,255,.5);
}

#facts ul span {
	display: block;
	margin-left:40%;
}


/* Gallery
-----------------------------------------------------------------*/

.gallery ul:after {
	content: '';
	display: block;
	clear: both;
}

.gallery li {
	float: left;
	margin:0 3% 3% 0;
	width: 22.7%;
}

.gallery li.last {
	margin-right:0;
}

.gallery a {
	display: block;
	box-shadow: 0 0 15px rgba(0,0,0,.6)
}

.gallery a:hover {
	display: block;
	box-shadow: 0 0 15px rgba(246,207,147,.5)
}

.gallery img {
	display: block;
	width: 100%;
}



/* Footer 
-----------------------------------------------------------*/
footer {
	padding:10px 0;
	background: #000;
	text-align: left;
	margin-top:-80px
}

footer .press {
	float: right;
}

footer a {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #FFF;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.home {
	background: #20021D
}

.home img {
	width: 100%;
}

/* Media Queries ------------------------------------------------------------------------- */
@media (min-width: 1400px) {

}

/* Tablet ------------------------------------------------------------------------- */
@media (max-width: 1024px) {

}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 540px) {
	.gallery li, .gallery li.last {
		width: 46%;
		margin:2%;
	}
	
	.gallery li a, .gallery li a:hover {
		box-shadow: none;
		cursor: default;
	}
	
	footer a {
		padding:15px;
	}
	
	.mobile {
		display: block;
	}
	
	.desktop {
		display: none;
	}

	#facts ul {
		font-size:13px
	}
	
	.gallery {
		position: relative;
	}
	
/*
	.gallery:after {
		content: '';
		display: block;
		position: absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		z-index: 100;
	}
*/
	
}


