/********************************************************************************
*************** FONTS ***********************************************************
*********************************************************************************/
@font-face {
	font-family: 'Bebas Neue';
	src: url('../fonts/bebas/regular.woff2') format('woff2'),
		url('../fonts/bebas/regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
  font-family: Calibri-Light;
  src: url("../fonts/calibri/light.woff2") format("woff2"), 
  	url("../fonts/calibri/light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/********************************************************************************
*************** BASE ***********************************************************
*********************************************************************************/
body {
	background: #fff;
	color: #204264;
	font-size: 36px;
	line-height: 48px;
	font-family: Calibri-Light;
}

[class^="container-"] { 
	padding-left: 15px; 
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	width: 100%; 
}

.container-1400 {
	max-width: 1430px;
}



.container-920 {
	max-width: 950px;
}


/********************************************************************************
*************** MAIN MENU *******************************************************
*********************************************************************************/
#main-menu {
	padding: 0;
}

#main-menu .navbar-brand {
	background: #204264;
	padding: 30px 40px;
}

#main-menu .navbar-nav {
	align-items: center;
}

#main-menu .nav-link {
	font-size: 18px;
	line-height: 25px;
	color: #000;
}

#main-menu .nav-book {
	color: #000;
	padding: 12px 25px;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(6px);
}

#main-menu .nav-book:hover {
	background: rgba(255, 255, 255, 0.9)
}

#main-menu .navbar-toggler {
	background: #fff;
	border-radius: 0;
}

#main-menu .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/********************************************************************************
*************** SECTIONS ********************************************************
*********************************************************************************/
.section-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.section-copy h1 {
	font-family: 'Bebas Neue';
	font-weight: normal;
	font-size: 72px;
	line-height: 72px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 45px 0;
}

.section-copy h2 {
	font-family: 'Bebas Neue';
	font-weight: normal;
	font-size: 48px;
	line-height: 67px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 25px 0;
}

.section-copy h5 {
	font-family: 'Bebas Neue';
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
	margin: 0 0 25px 0;
}

.section-copy p {
	color: rgba(255,255,255,0.8);
	font-size: 24px;
	line-height: 52px;
	margin: 0;
}

/********************************************************************************
*************** PAGE HERO ********************************************************
*********************************************************************************/
.page-hero {
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.page-hero.subpage {
	margin-bottom: 120px;
}

.page-hero .bg-image {
	width: 100%;
	z-index: 1;
}

.page-hero .section-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	max-width: 535px;
	text-align: center;
	width: 100%;
}

@keyframes panning {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 100%;
  }
   50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 0 100%;
  }
  200% {
    background-position: 0 0;
  }
}


#upoznaj-riverland {
	background-repeat: no-repeat;
	background-size: 110%;
	background-image: url('../images/home-hero.jpg');
	animation: panning 20s infinite linear;
}

/********************************************************************************
*************** HOME FEATURES ****************************************************
*********************************************************************************/
.home-features {
	position: relative;
	padding-bottom: 200px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: 100% 50%;
	background-image: url('../images/bg-features.jpg');
}

.home-features .content {
	position: relative;
	top: 200px;
	left: 0;
	z-index: 2;
	width: 100%;
}

.home-features .section-copy {
	text-align: center;
	margin: 0 auto 100px auto;
	max-width: 920px;
}

.home-features .feature {
	margin-bottom: 100px;
}

.home-features h4 {
	font-family: 'Bebas Neue';
	font-weight: normal;
	font-size: 36px;
	line-height: 48px;
	text-transform: uppercase;
	color: #0C5270;
	margin: 25px 0 0 0;
	text-align: center;
}

.home-features h4 a {
	color: #0C5270;
}


.home-features .image-zoom {
	overflow: hidden;
}

.home-features .image-zoom img {
  transition: transform .5s ease;
}

.home-features .image-zoom:hover img {
  transform: scale(1.5);
}

/********************************************************************************
*************** BOOK SECTION ***************************************************
*********************************************************************************/
.book-section {
	position: relative;
	height: 100vh;

	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/bg-book.jpg');
}

.book-section h5 {
	color: rgba(32,66,100,0.8);
}

.book-section h2 {
	color: #204264;
}

.book-section .section-copy {
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	max-width: 920px;
	text-align: center;
	width: 100%;
	padding: 0 15px;
}

/********************************************************************************
*************** TEXT SECTION ****************************************************
*********************************************************************************/
.text-section {
	margin-bottom: 100px;
}

.text-section h4 {
	font-family: 'Bebas Neue';
	font-size: 48px;
	line-height: 62px;
	color: #204264;
	margin-bottom: 30px;
}

.text-section p {
	font-size: 36px;
	line-height: 48px;
	color: #204264;
	margin-bottom: 45px;
}

/********************************************************************************
*************** GALLERY SECTION *************************************************
*********************************************************************************/
.gallery-section {
	margin-bottom: 90px;
}

.gallery-section .image {
	margin-bottom: 40px;
}

/********************************************************************************
*************** FOOTER *********************************************************
*********************************************************************************/
footer {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/bg-footer.jpg');
	min-height: 444px;
}

footer .section-content {
	position: absolute;
	top: -220px;
	left: 0;
	z-index: 2;
	width: 100%;
}

footer .section-copy {
	text-align: center;
	margin: 0 auto;
	max-width: 920px;
}

footer .section-copy h5 {
	color: #204264;
}

footer .section-copy h2 {
	color: #204264;
}

footer .copyright {
	overflow: hidden;
	padding: 50px 50px 20px 50px;
}

footer .copyright p {
	font-size: 18px;
	line-height: 27px;
	text-transform: uppercase;
	margin: 0;
}

footer .copyright a {
	color: #204264;
	text-decoration: underline;
}

/********************************************************************************
*************** CUSTOM BUTTONS ***************************************************
*********************************************************************************/
.btn-start {
	border: 1px solid #fff;
	color: #fff;
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
	border-radius: 0;
	padding: 20px 35px;
}

.btn-start:hover {
	background: #fff;
	color: #204264;
}

.btn-book {
	display: block;
	border: 1px solid #fff;
	padding: 50px 20px 35px 20px;
	font-family: 'Bebas Neue';
	font-size: 72px;
	line-height: 72px;
	color: #924B02;
	text-transform: uppercase;
}


/***************************************************************************************************
*************** RESPONSIVE *************************************************************************
***************************************************************************************************/
@media only screen and (max-width : 1200px) {
	.book-section .section-copy {
		top: 80px;
	}
}

@media only screen and (max-width : 992px) {

	#main-menu .navbar-brand {
		padding: 15px 20px;
	}

	.section-copy h1 {
		font-size: 63px;
		line-height: 66px;
	}

	.home-features .content {
		top: 40px;
	}

	.home-features .section-copy {
		margin: 0 auto 45px auto;
	}

	.section-copy p {
		font-size: 22px;
		line-height: 40px;
	}

	.home-features .feature {
		margin-bottom: 60px;
	}

	#upoznaj-riverland { 
		background-size: 160%;
	}
	
}

@media only screen and (max-width : 767px) {

	#main-menu .navbar-brand {
		max-width: 100px;
	}

	.section-copy h1 {
		font-size: 58px;
		line-height: 58px;
		margin-bottom: 20px;
	}

	.btn-start {
		padding: 12px 30px;
	}

	.btn-book {
		font-size: 58px;
		line-height: 58px;
	}

	.home-features {
		padding-bottom: 60px;
	}

	.home-features .feature {
		margin-bottom: 40px;
	}

	.home-features h4 {
		font-size: 32px;
		line-height: 44px;
	}

	.home-features .section-copy {
		padding: 0 15px;
	}

	.section-copy p {
		font-size: 20px;
		line-height: 32px;
	}

	footer {
		min-height: 200px;
	}

	footer .section-content {
		top: -120px;
	}

	.text-section p {
		font-size: 24px;
		line-height: 36px;
	}

	.gallery-section,
	.text-section {
		margin-bottom: 50px;
	}

	#upoznaj-riverland { 
		background-size: 140%;
		background-image: url('../images/mobile/home-hero-767.jpg');
	}

}

@media only screen and (max-width : 480px) {

	#upoznaj-riverland { 
		background-size: cover;
		background-image: url('../images/mobile/home-hero-480.jpg');
	}

	.btn-book {
		font-size: 36px;
		line-height: 36px;

	}

	.home-features { 
		background-size: 100% 30%;
		background-image: url('../images/mobile/bg-features-480.jpg');
	}

	.home-features .col-6 {
		display: block;
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}

	.section-copy h1 {
		font-size: 48px;
		line-height: 54px;
	}

	.section-copy h2 {
		font-size: 35px;
		line-height: 49px;
	}

	.btn-start {
		font-size: 22px;
		line-height: 30px;
		padding: 10px 23px;
	}

	.book-section .section-copy {
		top: 40px;
	}

	.page-hero.subpage {
		margin-bottom: 60px;
	}

	.text-section p {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.gallery-section,
	.text-section {
		margin-bottom: 30px;
	}

	footer {
		min-height: 150px;
	}

}








