@import url('https://fonts.googleapis.com/css?family=Lato|Oswald');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; 
}

html, body{
	height: 100%; 
}

body {
	font-family: 'Lato', sans-serif;
}

h1, h3 {
	font-family: 'Oswald', sans-serif;
}

/* === NAV INFO ===*/

nav{
	background: rgba(0, 0, 0, .7);
	text-align:center;
	position:fixed;
	top:0;
	left:0;
	z-index: 999;
	width:100%;
	padding: 10px 20px;
}

nav a:link, nav a:visited{
	color: #fff;
	text-decoration: none;
	margin:0 10px;
	border:none;
}

nav a:hover{
	color: tan;
}

nav a.active{
	border-bottom: solid 2px #fff;
}

/* === SECTION INFO ===*/

section {
	width:100%;
	height:100%;
	background-color: black;
	position:relative;
}

/* === SECTION ONE ===*/

.homebg{
	background: url(../images/white.jpg) fixed center center no-repeat;
	background-size: cover;
}

.photobg{
	background: url(../images/photo.jpg) fixed center center no-repeat;
	background-size: cover;
}

.bookbg{
	background: url(../images/books.jpg) fixed center center no-repeat;
	background-size: cover;
}

.filmbg{
	background: url(../images/film.jpg) fixed center center no-repeat;
	background-size: cover;
}


#s1 h1 {
	font-family: 'Oswald', sans-serif;
	font-weight: normal;
	font-size: 118px;
	color:#eee;
	text-shadow: 2px 2px 2px #333;
	line-height: 120px;
	padding-bottom: 400px;
}

#s1 header{
	width: 60%;
	text-align:center;
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

/* === SECTION TWO ===*/

#s2{
	padding:1.5% 1.5%;
	background: #fff;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	height:auto;
}

@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.box {
  min-height: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.col {
  position: relative;
  min-height: 1px;
  min-width: 300px;
  padding-right: 15px;
  padding-left: 15px;
  width: 33%;
  text-align: center;
  display: inline-block;
 }

.glyphicon {
  position: relative;
  top: 1px;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size:50px;
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-film:before {
  content: "\e009";
}


/* === SECTION THREE ===*/

.homebg-bottom{
	background: url(../images/vin.jpg) fixed center center no-repeat;
	background-size: cover;
	height: auto;
}

.photobg-bottom{
	background: url(../images/photo-bottom.jpg) fixed center center no-repeat;
	background-size: cover;
	height: auto;
}

.bookbg-bottom{
	background: url(../images/books-bottom.jpg) fixed center center no-repeat;
	background-size: cover;
	height: auto;
}

.filmbg-bottom{
	background: url(../images/film-bottom.jpg) fixed center center no-repeat;
	background-size: cover;
	height: auto;
}

#s3{
	padding: 3% 1.5%;
}

#s3 article{
	width: 60%;
	margin: 0 1.5%;
	min-width: 300px;
	background: rgba(255, 255, 255, .7);
	float:left;
	padding: 1.5%;
	margin-bottom: 100px;
	border-radius:10px;
}

#s3 article h1{
	font-size: 42px;
}

#s3 article p{
	margin-bottom: 1.5%;
	font-size: 18px;
	line-height: 24px;
}

#s3 aside{
	width: 20%;
	margin: 0 1.5%;
	min-width: 300px;
	background: rgba(255, 255, 255, .7);
	float:right;
	padding: 1.5%;
	border-radius:10px;
}

#s3 aside p {
	font-style: italic;
	margin-top: 1.5%;
}

.clearfix{
	clear:both;
}

footer{
	background: #333;
	padding: 10px 20px;
	color: #eee;
	text-align: center;
}


