@charset "UTF-8";
/* CSS Document */

body {
	background-image: url(./images/background.png);
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {font-family: 'Oswald', sans-serif;margin:0 0 0.5em;}
img {max-width:100%;}
p {margin:0 0 0.5em;}
a:link,a:visited {color:#094186;text-decoration:none;}
a:hover {color:#326aae;}

.negativ {
	color:#fff;
}
.negativ a:link,
.negativ a:visited {
	color:#FFF;
	text-decoration:none;
}

.negativ a:hover {	color:#FFF;}

.negativ .dugme {
    border: 2px solid #FFF;
    color: #FFF;
}

.negativ .dugme:hover {
	background: rgba(255, 255, 255, 1);
    color: #094186;
}




.wrapper {
	width:1200px;
	margin:0 auto;
	overflow:hidden;
}

#header {
	background: #a54c70ab;
	padding:10px;
}

.logo {
	display: table-cell;
	vertical-align: middle;
	font-size: 25px;
	font-weight:bold;
}

#nav {
	overflow: hidden;
}
#nav ul {
	list-style:none;
	margin:0;
	padding:0;
	overflow: hidden;
}
#nav ul li {
	float:left;
}

.dugme {
	background: rgba(9, 65, 134, 0);
    border: 2px solid #094186;
    border-radius: 10px;
    color: #094186;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
	padding: 9px 16px 9px;
	margin:10px 5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.dugme:hover {
	background: rgba(9, 65, 134, 1);
	color:#fff;
}

#prvi {
	background:url(images/cinema.jpg) center center no-repeat;
	background-size:cover;
	text-align:center;
	padding: 0 0 50px;
	color:#ffffff;
	font-weight: bold;
	text-shadow: #000000 6px 3px 15px;
}

#prvi h1 {
	font-size:60px;
	margin-bottom:20px;
}

#drugi {
	padding:100px 0;
	text-align:center;
	overflow:hidden;
}

/*Klasa za pop-up prozor*/
.tri {
	width:350px;
	height:350px;
	position:relative;
	overflow:hidden;
	margin:40px 75px 0 0;
	float:left;
}

.tri img{
	border-radius: 5px;
}

.tri:nth-of-type(3n) {
	margin-right:0;
}

.triTekst {
	position:absolute;
	left:65px;
	top:350px;
	padding:25px;
	width:170px;
	height:300px;
	background:rgba(255,255,255,0.9);
    transition: all 0.6s ease;
	overflow-y: auto;
}

.tri:hover .triTekst {
	top:35px;
	background:rgba(255,255,255,0.8);
}

#about {
	background:url(images/about.jpg) center center no-repeat;
	background-size:cover;
	padding:120px 0;
}

#footer {
	background: #7c463e54;
	padding:20px 0;
	text-align:center;
	font-size:12px;
}

#topLink {
	display:inline-block;
	right:50px;
	color:#fff;
	background: #ddad7b;
	padding:10px;
    transition: all 0.2s ease;
    border: 1px solid black;
    border-radius: 5px;
}

#topLink:hover {
	color:#094186;
	background:#fff;
}

#topLink.down {
	bottom:0;
}

#videoback {
	position:relative;
	overflow:hidden;
	text-align:center;
}

#bgvid {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width:auto;
	height:auto;
	z-index: -100;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: url(video/background.jpg) no-repeat;
	background-size: cover;
}

/* responsive i menu:*/

#respmenu {
	display:none;
}

@media screen and (min-width:1024px) and (max-width:1260px) {
	.wrapper {
		width:960px;
	}
	.tri {
		width:300px;
		height:257px;
		margin-right:30px;
	}
	.triTekst {
		top:257px;
		width:250px;
	}
}
@media screen and (min-width:768px) and (max-width:1023px) {
	.wrapper {
		width:680px;
	}
	.tri {
		width:auto;
		height:auto;
		margin:40px 0;
		padding:0;
		float:none;
		background:#eee;
	}
	.tri img {
		float:left;
	}
	.triTekst {
		position:relative;
		transition:none;
		top:0;
		left:0;
		float:right;
		width:270px;
	}
}
@media screen and (max-width:767px) {
	.wrapper {
		width:80%;
	}
	#header {
		text-align:center;
		height:auto;
	}
	#nav,
	.logo {
		float:none;
	}
	#nav ul li {
		float:none;
	}
	#nav ul li a {
		display:block;
		margin:7px 5px;
	}
	#respmenu {
		display:block;
		background:rgba(255,255,255,0.1);
		padding:10px;
    	border-radius: 25px;
	}
	#nav ul {
		display:none;
	}
	.tri {
		width:auto;
		height:auto;
		margin:40px 0;
		padding:0;
		float:none;
		background:#eee;
	}
	.tri img {
		float:none;
	}
	.triTekst {
		position:relative;
		transition:none;
		top:0;
		left:0;
		float:right;
		width:auto;
		height:auto;
		display:block;
	}
}




















