/********** BASIC COMING SOON **********/
/********** BY AMIT JAKHU **********/
/********** WWW.AMITJAKHU.COM **********/

/********** FONTS **********/
@import url(http://fonts.googleapis.com/css?family=Lobster|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);

/********** SELECTION **********/

::selection {
	color: #fff;
	background: #008fd5; /* Safari */
}

::-moz-selection {
	color: #fff;
	background: #008fd5; /* Firefox */
}

#header ::selection {
	color: #008fd5;
	background: #fff; /* Safari */
}

#header ::-moz-selection {
	color: #008fd5;
	background: #fff; /* Firefox */
}

/********** GENERAL **********/

* {
	margin: 0;
	padding: 0;
	border: none;
}

body {
	background: #f3f3f3;
	
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	text-align: left;
	color: #4a4a4a;
}

a {
	color: #008fd5;
	text-decoration: none;
}

a:hover {
	border-bottom: 1px solid #008fd5;
}

.inner-container {
	width: 600px;
	margin: 0 auto;
	position: relative;
}

/********** ANIMATION **********/

a, .input, .button, #footer {
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/********** HEADER **********/

#header {
	background: #008fd5;
	border-bottom: 3px solid #fff;
}

#header .inner-container {
	height: 400px;
	padding: 75px 30px 100px 30px;
}

/********** LOGO **********/

#header #logo {
	width: 140px;
	height: 90px;
	background: #fff;
	display: block;
	padding: 25px 0;
	margin: 0 auto;
	cursor: default;
	
	font-family: 'Lobster', Georgia, serif;
	font-size: 46px;
	line-height: 31px;
	font-weight: 400;
	text-align: center;
	color: #008fd5;
	
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

*+html #header #logo {
	height: 70px;
	padding: 30px 0;
}

#header #logo span {
	font-size: 21px;
	line-height: 21px;
}

/********** TAGLINE **********/

#header .tagline {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 30px;
	line-height: 38px;
	text-align: center;
	color: #fff;
	margin: 20px 0 60px 0;
}

/********** COMING SOON **********/

#header .coming-soon {}

#header .coming-soon h3 {
	font-family: 'Lobster', Georgia, serif;
	font-size: 72px;
	line-height: 80px;
	font-weight: 400;
	text-align: center;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
	color: #fff;
	margin-bottom: 25px;
}

#header .coming-soon p {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
	color: #fff;
}

/********** CONTENT **********/

#content {}

#content .inner-container {
	padding: 50px 30px;
}

/********** NEWSLETTER **********/

#content #newsletter {}

#content #newsletter p {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 19px;
	text-align: left;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
	color: #4a4a4a;
	margin-bottom: 15px;
}

#content #newsletter p em {
	font-style: normal;
	color: #008fd5;
}

/********** FORM ELEMENTS **********/

/********** INPUT FIELD **********/

#content #newsletter .input {
	margin-right: 10px;
}

.input {
	width: 370px;
	background: #e6e6e6;
	border: 1px solid #fff;
	padding: 15px 35px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: inset 0 1px 4px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0 1px 4px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 1px 4px rgba(0,0,0,0.5);
	
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-align: left;
	text-shadow: 1px 1px 0 rgba(255,255,255,1.0);
	color: #626262;
}

.input:hover {
	background: #fff;
}

.input:focus {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.25);
	color: #444444;
	
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.25);
	-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.25);
}

/********** BUTTON **********/

.button {
	/* Gradient */
	background-color: #008fd5;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#008fd5), to(#006ba0));
	background-image: -webkit-linear-gradient(top, #008fd5, #006ba0);
	background-image:    -moz-linear-gradient(top, #008fd5, #006ba0);
	background-image:     -ms-linear-gradient(top, #008fd5, #006ba0);
	background-image:      -o-linear-gradient(top, #008fd5, #006ba0);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008fd5', endColorstr='#006ba0',GradientType=0 ); /* ie6-ie9 */
	
	border: 1px solid #0b648f;
	display: inline-block;
	padding: 13px 35px;
	cursor: pointer;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: inset 0 0 1px rgba(255,255,255,1.0);
	-moz-box-shadow: inset 0 0 1px rgba(255,255,255,1.0);
	-webkit-box-shadow: inset 0 0 1px rgba(255,255,255,1.0);
	
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.6);
	color: #fff;
}

.button:hover {
	background-color: #01689a;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#01689a), to(#008fd5));
	background-image: -webkit-linear-gradient(top, #01689a, #008fd5);
	background-image:    -moz-linear-gradient(top, #01689a, #008fd5);
	background-image:     -ms-linear-gradient(top, #01689a, #008fd5);
	background-image:      -o-linear-gradient(top, #01689a, #008fd5);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01689a', endColorstr='#008fd5',GradientType=0 );
}

*+html .button /* ie7 only */ {
	padding: 10px 12px;
}

/********** Footer **********/

#footer {
	margin-bottom: 50px;
	display: block;
	opacity: 0.3;
	filter: alpha(opacity=30); /* ie */
	position: relative;
}

#footer:hover {
	opacity: 1.0;
	filter: alpha(opacity=100);
}

#footer .inner-container {
	padding: 10px 0;
}

/********** COPYRIGHT **********/

#footer .copyright {
	position: absolute;
	left: 0;
}

#footer .copyright, #footer .copyright a {
	font-size: 12px;
	line-height: 19px;
	text-shadow: 1px 1px 0 rgba(255,255,255,1.0);
}

#footer .copyright a {
	color: #4a4a4a;
}

#footer .copyright a:hover {
	color: #008fd5;
	border: none;
}

/********** SOCIAL MEDIA **********/

#footer .social-media {
	position: absolute;
	right: 0;
}

#footer .social-media a {
	width: 33px;
	height: 24px;
	display: inline-block;
	background: url(../images/social-media.png) no-repeat;
	overflow: hidden;
}

#footer .social-media a:hover {
	border: none;
}

#footer .social-media .facebook {
	background-position: 0px 0px;
	margin-right: 5px;
}

#footer .social-media .twitter {
	background-position: -33px 0px;
}

#footer .social-media a span /* Tooltip */ {
	width: 125px;
    height: auto;
	display: block;
	padding: 7px 12px;
	position: absolute;
	bottom: 25px;
	left: -180px;
	pointer-events: none;
	opacity: 0;
	filter: alpha(opacity=0);
	transition: all 0.5s ease-in-out;
	
	background: #e6e6e6;
	border: 1px solid #fff;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: 11px;
	line-height: 16px;
	text-align: center;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);;
	color: #4a4a4a;
}

#footer .social-media a:hover span {
	opacity: 1.0;
	filter: alpha(opacity=100);
	bottom: 5px;
}

/********** DOWNLOAD BUTTON (DEMO ONLY) **********/

.download {
	display: block;
	position: fixed;
	right: 25px;
	bottom: 25px;
	padding: 5px;
	
	font-weight: 700;
	font-size: 11px;
	text-align: right;
	text-decoration: none;
	color: rgba(0,0,0,0.5);
	text-shadow: 1px 1px 0 rgba(256,256,256,0.5);
}

.download:hover {
	color: rgba(0,0,0,0.75);
	text-shadow: 1px 1px 0 rgba(256,256,256,0.5);
	border: none;
}

.download:focus {
	bottom: 24px;
}