@import "squelette.css";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	position: relative;
}
a {
	color: #FFF;
	text-decoration: none;
}

ul {
	list-style: none;
display: flex;}
body {
	background: #d7d0c6;
	font-family: 'Alegreya Sans SC', sans-serif;
	height: 100%;
	width: 100%;
	color: #FFF;
	font-weight: 200;
	overflow: hidden;
}

h4 {font-size: 22px;}

.top .overlay,
.top .background  {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/pattern.png) rgba(0, 0, 0, .15);
    opacity: 1;
}

.top .background {
	background-image: url(../img/background.png);
	background-size: cover;
	background-position: top;
}

.top {
	height: 100vh;
	z-index: 1;
	display: table;
	width: 100%;
	overflow: hidden;
}

.top .title {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	text-transform: uppercase;
}
.top .title h5 {
	font-weight: 300;
	letter-spacing: 3px;
	margin-bottom: 10px;
	font-size: 16px;
}
.top .title h1 {
	font-size: 6em;
	font-weight: 100;
	margin-bottom: 20px;
}

.btn {
	border: 1px solid rgb(255, 255, 255);
	padding: 8px 12px;
	    font-size: 0.786em;
	    cursor: pointer;
	    text-transform: uppercase;
	    letter-spacing: 2px;
	    text-align: center;
	    display: inline-block;
}



nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	transition-delay: 1s;
	transition: all 1s ease;
	height: auto;
	opacity: 1;
}
nav ul {
	text-align: center;
	line-height: 85px;
	float: right;
}
nav ul li {
	display: inline-block;
	text-transform: uppercase;
	font-size: 14px;
	padding: 0 10px;
	font-weight: 400;
	font-family: 'Lato', sans-serif;
}
nav ul li a {
	cursor: pointer;
}
nav a.logo {
	background-image: url(../img/logo.png);
	height: 77px;
	width: 69px;
	background-size: contain;
	display: block;
	margin-top: 7px;
	float: left;
}



section * {
}
section {
	padding: 20vh 0 10vh;
	min-height: 100vh;
	transition: all 1s ease-in-out;
	background-size: cover;
	overflow-y: scroll;
	height: 100vh;
}

section h1 {
	font-weight: 200;
}



section.resume {
	background-image: url(../img/people-say-bg.jpg);
}
.tab a {
	font-size: 1.5em;
	font-weight: 300;
	line-height: 2;
}


p {
	line-height: 1.6;
	margin: 30px 0;
	font-family: 'Lato';
	font-weight: 300;
	letter-spacing: .05em;
}
#bio p:first-child {
	margin-top: 0;
}

section.cours {
	background-image: url(http://www.flam-and-co.lu/wp-content/uploads/2013/08/photo.jpg);
	display: table;
	width: 100%;
	padding-top: 0;
}

a.flamandco {
	font-size: 32px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	font-weight: 400;
	letter-spacing: 2px;
	text-shadow: 0 0 10px #000;
}
a.flamandco span {
	display: block;
	font-size: 16px;
	font-weight: 200;
	text-shadow: 0 0 10px #000;
}
#formation > div {
	margin: 20px 0;
}

section.contact {
	opacity: 1;
	background-image: url(https://i.ytimg.com/vi/9ophgWK8dMs/maxresdefault.jpg);
	width: 100vw;
	padding-top: 0;
	margin: auto;
	transition: all 1s ease;
	height: 100%;
	padding: 20px;
	background-size: cover;
	height: 100vh;
}

.window {
	display: block;
	z-index: 1;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 400px;
}

form {
	width: 320px;
	margin: auto;
	overflow: hidden;
}
form * {
	color: #FFF;
}
form input, form textarea {
	background: transparent;
	border: 1px solid rgba(255,255,255, .5);
	height: 35px;
	width: calc(100% - 20px);
	margin: 10px;
	padding: 10px;
	outline: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}
form input:focus, form textarea:focus {
	border: 1px solid rgba(255,255,255, 1);
}
form textarea {
	height: 150px;
}

form input[type=submit]{
	background: #900;
	border: none;
	color: #FFF;
	padding: 8px 12px;
	font-size: 0.786em;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
}


body.contact section:not(.contact) {
}


.contact h3 {
	color: #fff;
	text-align: center;
	padding-top: 10px;
}

.col.half p {
	margin: 5px 0;
}

.cv-link {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .05em;
    padding-bottom: 10px;
    border-bottom: 1px solid;
}


/* transition active state (same for leave and enter) */
.barba-leave-active,
.barba-enter-active {
  transition: opacity 450ms ease;
}

/* initial state */
.barba-leave {
  opacity: 1;
}

.barba-enter {
  opacity: 0;
}

/* ending state */
.barba-leave-to {
  opacity: 0;
}

.barba-enter-to {
  opacity: 1;
}


#spectacles {
	display: flex;
	flex-direction: column;
}
.spectacle {
	padding-bottom: 50px;
}



@media screen and (max-width: 768px) {
	.wrapper {
		padding: 0 20px;
	}

	nav, nav .wrapper {
		    width: 100vw;
	}
	.top .title h1 {
		font-size: 3em;
	}

	nav a.logo {
		width: 100%;
		background-position: center;
		background-repeat: no-repeat;
	}
	nav ul {
		width: 100%;
		display: block;
		float: left;
	}
	ul.etabs {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 50px;
	}
	ul.etabs .tab a {
		font-size: 1.25em;
	}
	.spectacle .col {
		width: 100% !important;
		margin-right: 0 !important;
	}
}

