/*
Copyright (c) 2014
version: 1.0
author: christian sahm
*/

/* base.css: basic layout and fonts, target: desktop screen */


/* BASICS */

* {
	margin:0;
	padding:0;
	line-height: 1.4em;
}

html, body{
	height: 100%;
	background-color: #000000;
	color: #eeeeee;
    font-family:"proxima-nova", sans-serif !important;
    font-weight:300;
	font-size: 14px;
}

a {
	text-decoration: none;
	border-bottom: 0px;
	color: #ffffff;
    -webkit-transition:color 0.6s;
    -moz-transition:color 0.6s;
    transition:color 0.6s;
}
a:focus {
    outline: 0px;
}
a:active {
	outline: 0px;
}
a:hover {
	color: #dddddd;
}


h1,h2,h3,h4,h5,h6 {
    font-family:"proxima-nova", sans-serif !important;
	font-weight:300;
}

h1 {
    font-size:3em;
}

h2 {
    font-size:2.6em;
}

h3,h4,h5,h6 {
    font-size:1.2em;
}
h1,h2,h3 {
    /* bottom margin based on font size */
    margin:0;
}

.versal {
    text-transform: uppercase;
    font-family: "Arrow" !important;
}

.script {
    font-size: 2.1em;
    line-height: 2em;
    margin-left: 0.1em;
    font-weight: 400;
    font-family: "jbt-annabelle", serif !important;
}


strong {
    /*bringing boldness back to headers and the strong element*/
    font-weight:700;
    font-style: italic;
}

blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:1em 0;
}

small {
	font-size: 0.9em;
}

ol li {
	/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}
ul li {
	/* UL's LIs no markers*/
	list-style: none;
	padding-bottom: 2px;
}
dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	border:1px solid #000;
	padding: 0.5em 1em 0.5em 0;
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated margin to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,table,pre {
	/*so things don't run into each other*/
	margin-bottom:1em;
}
label { 
	display: block;
}

form p {
	font-size: 0.9em;
}



img {
	border: 0;
}


.shadow {
    -moz-box-shadow: 0 -4px 6px rgba(0,0,0, 0.4);
    -webkit-box-shadow: 0 -4px 6px rgba(0,0,0, 0.4);
    box-shadow:  0 -4px 6px rgba(0,0,0, 0.4);
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555');
}

/* basic layout */


#doc{
	text-align: center;
	position: relative;
	height:auto !important; /* Important Regel für moderne Browser */
	height:100%; /* Mindesthöhe für den IE */
	min-height: 100%; /* Mindesthöhe für moderne Browser */
	overflow: hidden !important; /* FF Scroll-leiste */
	width: 100%;

}



/* HEADER */


#hdpic {
    background: #000000 url("/img/bg_head.jpg") top center repeat;
    height: 125px;
	width: 100%;
	margin:0;
	padding:0;
	text-align: center;
	overflow: hidden;
}

#navi_wrapper {
    position: absolute;
    z-index: 901;
    top: 122px;
    background: transparent url("/img/bg_head.jpg") center center repeat;
    width: 100%;
    margin:0;
    padding:0;
    text-align: center;
    overflow: hidden;
    -moz-box-shadow: 0 6px 8px rgba(0,0,0, 0.4);
    -webkit-box-shadow: 0 6px 8px rgba(0,0,0, 0.4);
    box-shadow:  0 6px 8px rgba(0,0,0, 0.4);
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555');
}

#navi {
	margin: 0 auto;
	width: 600px;
	height: 40px;
	padding: 0;	
	text-align: center;
}


#logo_sign {
    width: 600px;
    margin: 0 auto;
    margin-top: 8px;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
}


ul#navi1  {
	margin:0 auto;
	padding:0;
    width: 600px;
	display: inline;
}

#hd.stuck ul#navi1 {
    margin-top: 6px !important;
}

#navi1 li {
    margin:0;
    padding:0;
	float: left;
}

li.navi_left {
	width:200px;
}
li.navi_center {
	width:200px;	
}
li.navi_right {
	width:180px;	
}


.nav {
    font-family: "jbt-annabelle", serif !important;
	display: block;
    font-size: 1.4em;
    font-weight: 400;
	padding: 16px 0 0 0;
	color: #ffffff;
	height: 30px;
	float: left;
}

.nav.left {
    max-width: 85px;
    text-align: left;
    margin-top: -10px;
	padding-right: 20px;
}

.nav.center {
    width: 180px;
    text-align: center;
    margin-top: -10px;
}

.nav.right {
    width: 180px;
    text-align: right;
    margin-top: -10px;
}

.ios a.nav {
	font-size: 1.6em;
	min-width: 4em;
}

a.nav:hover {
	color: #cccccc !important;
}


/* CONTENT */


#brandstory h1 {
    color: #FFFFFF;
    text-shadow: 2px 2px #111111;
    margin: 40px 0 -40px 0;
}

#brandstory, #portfolio, #looks, #campaign{
    background: #000000 url("/img/1c.jpg") bottom center no-repeat fixed;
    width: 100%;
    color: #fff;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-box-shadow: 0 0 10px 4px rgba(0,0,0, 0.4);
    -webkit-box-shadow: 0 0 10px 4px rgba(0,0,0, 0.4);
    box-shadow:  0 0 10px 4px rgba(0,0,0, 0.4);
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555');
}

#brandstory, #campaign {
    background: #000000 url("/img/0c.jpg") center center no-repeat fixed;

}
.ios #brandstory, .ios #portfolio, .ios #looks, .ios #campaign{
    background: #000000 url("/img/1c.jpg") top center repeat;
    background-size: 150% auto;
    min-height: 800px;
    -moz-box-shadow: 0 0 10px 4px rgba(0,0,0, 0.4);
    -webkit-box-shadow: 0 0 10px 4px rgba(0,0,0, 0.4);
    box-shadow:  0 0 10px 4px rgba(0,0,0, 0.4);
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=90, Color='#555555');
}

.ios #brandstory, .ios #campaign {
    background: #000000 url("/img/0c.jpg") top center repeat;
}

.para {
    width: 100%;
    height: 1000px;
    color: #fff;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.ios .para {
    height: 800px !important;
}

#para1 {
    background: #000000 url("/img/2c.jpg") bottom center no-repeat fixed;
}

.ios #para1 {
    background: #000000 url("/img/2c.jpg") top center no-repeat;
    background-size: 150% auto;
}

#para2 {
    background: #000000 url("/img/3c.jpg") bottom center no-repeat fixed;
}

.ios #para2 {
    background: #000000 url("/img/3c.jpg") top center no-repeat;
    background-size: 150% auto;
}

#para3 {
    background: #000000 url("/img/4c.jpg") bottom center no-repeat fixed;
}

.ios #para3 {
    background: #000000 url("/img/4c.jpg") top center no-repeat;
    background-size: 150% auto;
}

.story{
    margin: 0 auto;
    padding: 0;
    margin-top: 100px;
    overflow: auto;
}

#brandstory .story{
    margin-top: 0px;
}


#wrapper1, #wrapper2, #wrapper3, #wrapper4, #contact {
    width: 900px;
    text-align: left;
    position: relative;
    left: 50%;
    margin-left: -450px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.wrapperh {
    width: 900px;
    text-align: left;
    position: absolute;
    z-index: 10;
    left: 50%;
    margin-left: -450px;
    margin-top: -90px;
}

#wrapper1 .copy, #wrapper2 .copy, #wrapper3 .copy, #wrapper4 .copy, #contact .copy  {
    width: 700px;
    padding: 50px;
    background-color: rgba(0,0,0,0.6);
    clear: both;
}

#wrapper1 .copy {
    margin: 60px 50px;
}

.wrapperh h2 {
    color: #ffffff;
    margin-left: 140px;
}

.wrapperh .signet {
    float: left;
    margin-left: 60px;
}

#wrapper2 .copy {
    margin: -100px 50px 0 50px;
}

#wrapper3 .copy {
    margin: 0 50px 0 50px;
}

#wrapper4 .copy {
    margin: 0 50px 0 50px;
}

#contact .copy {
    margin: 0 50px 0 50px;
    background-color: rgba(255,255,255,0.15);
}

#contact {
    height: 300px;
}