/*!
Theme Name: the_clock_inn
Theme URI: http://underscores.me/
Author: Jakub Srněnský
Author URI: http://underscores.me/
Description: Description
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: the_clock_inn
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

the_clock_inn is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/



html,
body{
	margin:0px;
	padding:0px;
	font-family: Poppins,sans-serif;
	font-size:13px;
	line-height: 26px;
	scroll-behavior: smooth;
}

/***********************
Header
***********************/

.home #masthead{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	z-index: 9;
}

#masthead .container{
	display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 2% 0px 2%;
}

#masthead img{
	width: 160px;
    height: auto;
}

/***********************
Menu
***********************/

#site-navigation{
	margin-left:auto;
}

#site-navigation button{
	display:none;
}

#site-navigation .menu{
	display: flex;
	padding:0px;
	list-style: none;
}

#site-navigation ul li{
	padding-left:15px;
}

#site-navigation ul a{
	font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    color: black;
    position: relative;
}

.home #site-navigation ul a{
	color: white;
}

#site-navigation.toggled ul a{
	color: black;
}

#site-navigation ul a::after{
	content:"";
	position: absolute;
	width: 0px;
	height:2px;
	border-radius: 100px;
	background-color:black;
	bottom:-10px;
	left:0px;
	transition: all .3s linear;
}

.home #site-navigation ul a::after{
	background-color:white;
}

#site-navigation ul a:hover::after{
	width:100%;
	transition: all .3s linear;
}

#site-navigation ul li.book a{
	background-color:#FFBF00;
	font-size: 16px;
	border-radius:100px;
	padding:15px 20px;
	color:white;
}

#site-navigation ul li.book a:hover::after{
	display:none;
}

#site-navigation ul li.book a:hover{
	background-color:#000080;
}

@media all and (max-width: 900px){
	#site-navigation button{
		display: flex;
    	align-items: center;
		border: 0;
    	background: transparent;
    	color: black;
    	font-weight: 800;
	}

	.home #site-navigation button{
		color: white;
	}
	
	#site-navigation.toggled button{
		position: absolute;
		z-index: 9;
		right: 13px;
		top: 26px;
		color: black
	}

	#site-navigation .menu{
		display: none;
	}

	#site-navigation.toggled .menu{
		display: block;
	}

	#site-navigation.toggled{
		display: block;
		position: fixed;
    	left: 0;
    	top: 0;
    	width: 100%;
    	height: 100%;
		background-color: rgb(255,255,255,0.9);
		padding-top: 15%;
		z-index: 99999;
	}

	#site-navigation ul li{
		padding:0px;
	}

	#site-navigation ul li a{
		color: black;
		text-align: center;
		width: 100%;
		display: inline-block;
		padding: 10px 0px;
	}

	#site-navigation ul li.book a{
		width: auto;
		margin: 0 auto;
		display: table;
		margin-top: 10px;
	}

	#site-navigation ul a:hover::after{
		display:none;
	}
}

.candle{
	display: inline-block;
	margin-right: 7px;
	width: 27px;
	height: 27px;
}
			
.bar1, .bar2, .bar3 {
	width: 25px;
	height: 3px;
	background-color: black;
	transition: 0.4s;
	margin-top: 4px;
}

.home .bar1, .home .bar2, .home .bar3{
	background-color: white;
}
				
.toggled .bar1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 5px);
	transform: rotate(-45deg) translate(-5px, 5px);
	background-color:#303447;
}
				
.toggled .bar2 {
	opacity: 0;
}
				
.toggled .bar3 {
	-webkit-transform:rotate(45deg) translate(-5px, -5px);
	transform:rotate(45deg) translate(-5px, -5px);
	width:25px;
	background-color:#303447;
}

/***********************
Typography
***********************/

#slider h1{
	font-size: 45px;
    font-weight: bold;
    margin: 6px 0px 0px 0px;
}

h2{
	 font-size:35px;
	 font-weight: 600;
	 margin-bottom: 30px;
	 margin-top: 0px;
}

h3{
	font-size:25px;
	font-weight: 600;
	margin-top: 10px;
}

@media all and (max-width: 900px){
	#slider h1{
		font-size: 35px;
	}

	h2{
		font-size: 30px;
		margin-bottom: 12px;
	}
}

@media all and (max-width: 767px){
	#slider h1{
		font-size: 30px;
	}

	h2{
		font-size: 25px;
	}

	h3{
		font-size: 20px;
	}
}

@media all and (max-width: 550px){
	#slider h1{
		font-size: 25px;
	}

	h2{
		font-size: 20px;
	}

	h3{
		font-size: 18px;
	}
}

@media all and (max-width: 420px){
	#slider h1{
		font-size: 23px;
	}
}

/***********************
Buttons
***********************/ 

.kc_button{
	background-color:#429E9D;
	border-radius: 100px;
	color:white;
	padding:15px 25px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
}

.kc_button:hover{
	background-color:#FFBF00;
}

/***********************
Carousel
***********************/

.owl-item .item{
	height: 380px;
	overflow: hidden;
	object-fit: cover;
}

.owl-item .item img{
	height: 100%;
}

@media all and (max-width: 767px){
	.kc-carousel_images{
		margin:20px 0px 0px 0px;
	}
}

/***********************
Book Widget
***********************/

#book-widget{
	background-color:#FFBF00;
	font-size: 18px;
	top:0px;
	position: -webkit-sticky;
	position: sticky;
	z-index: fixed;
	padding: 1%;
	z-index: 8;
}

#book-widget .kc-col-container{
	display:flex;
	align-items: center;
}

#book-widget .kc-elm:nth-child(2){
	width: unset;
    white-space: nowrap;
}

@media all and (max-width: 767px){
	#book-widget{
		font-size: 15px;
	}
}

#book-widget .kc_button:hover{
	background-color:white;
	color:#FFBF00;
}

.kc_button.fixed{
	display: none;
}

@media all and (max-width: 550px){
	#book-widget{
		display:none;
	}

	.kc_button.fixed{
		position: fixed;
		display: block;
		right: 10px;
		bottom: 10px;
		background-color:#FFBF00;
		z-index: 9;
	}	

	.kc_button.fixed:hover{
		background-color:#429E9D;
		color:white;
	}
}

/***********************
Gallery
***********************/

.gallery{
	margin-top: 5%;
}

.gallery .kc_col-sm-6{
	margin-bottom: 15px;
}



/***********************
Max-Width
***********************/

.max-550 p{
	max-width: 550px;
	margin:0 auto;
}


/***********************
Padding and Order
***********************/

.section-padding{
	padding:130px 0px;
	display: inline-block;
}

.section-padding-room{
	padding-top:50px;
	margin-bottom:-20px;
}

@media all and (max-width: 900px){
	.section-padding{
		padding:70px 0px;
	}
}

@media all and (max-width: 767px){
	.order{
		display: flex !important;
		flex-wrap: wrap;
	}

	.order .kc_col-sm-6:nth-child(1){
		order: 2;
	}

	.section-padding{
		padding: 7% 0px;
		text-align: center;
	}

	.section-padding-room{
		padding-top: 30px;
	}
}

/***********************
Content
***********************/ 

#slider{
	font-size:18px;
	line-height: 30px;
	position: relative;
	display: flex;
}

@media all and (max-width: 767px){
	#slider{
		font-size: 15px;
	}
}

#slider .kc_col-sm-12{
	height: 100%;
}

#slider .kc_row.kc_row_inner::before{
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background: rgb(69,58,48);
	background: linear-gradient(150deg, rgba(69,58,48,0.8) 0%, rgba(58,49,41,1) 100%);
	opacity: 0.4;
}

#slider .kc_row.kc_row_inner{
	height: 720px;
    position: relative;
}

@media all and (max-width: 767px){
	#slider .kc_row.kc_row_inner{
		height: 520px;
	}
}

#slider .kc_row_inner .kc_wrapper{
	display: flex;
	flex-wrap: wrap;
    align-content: center;
    max-width: 1120px;
	margin: 0 auto;
	color: white;
}

#slider .kc_text_block{
	max-width: 650px;
}

#slider .kc_button{
	margin-top: 20px;
	background-color:#FFBF00;
}

#slider .kc_button:hover{
	background-color:#000080;
}

/* About us */

#about-us{	
	color:white;
	background: rgb(66,158,157);
	background: linear-gradient(135deg, rgba(66,158,157,1) 0%, rgba(60,145,145,1) 100%);
}


/* Rooms */

#rooms .kc_button{	
	margin-top: 5%;
}

/* Bar */

#bar{
	color:white;
	background: rgb(72,60,50);
	background: linear-gradient(150deg, rgba(72,60,50,1) 0%, rgba(58,49,41,1) 100%);
}

/* Contact */

#contact{
	position: relative;
	margin-top: -100px;
    margin-bottom: -100px;
}

#contact::before{
	content:"";
	position: absolute;
	width: 100%;
	height:80%;
	left:0px;
	top:50%;
	transform: translate(0%, -50%);
	background: rgb(238,238,238);
	background: linear-gradient(150deg, rgba(238,238,238,1) 0%, rgba(221,221,221,1) 100%);
	z-index:-1;
}

#contact .kc-wrap-columns{
	background-color: white;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.06);
	display: flex;
    width: 100%;
    flex-wrap: wrap;
}

#contact .kc_col-sm-6:nth-child(2) .kc-raw-code.kc-elm{
	height: 100%;
}

#contact iframe{
	border:0px;
}

#contact .kc_col-sm-6:nth-child(1){
	padding: 25px 40px;
}

#contact h2{
	margin-top:20px;
	margin-bottom: 30px;
}

#contact h2.margin-top{
	margin-top:40px;
}

#contact h3{
	margin: 35px 0px 15px 0px;
}

#contact .contact-sm{
	margin: 20px 0px 0px 12px;
}

#contact .contact-sm .kc_wrapper{
	display:flex;
	color:#00007F;
	font-size: 20px;
}

#contact .contact-sm .kc-elm{
	width: auto;
}

#contact .contact-sm i{
	color:#00007F;
	font-size: 35px;
	margin-right: 15px;
	position: relative;
    top: -4px;
}

#contact .contact-sm a{
	color:#00007F;
	text-decoration: none;
}

@media all and (max-width: 900px){
	#contact{
		margin-top: 0px;
		margin-bottom: 0px;
	}

	#contact .kc_col-sm-6{
		width:100%;
	}

	#contact .kc-container{
		padding:0px;
	}
	
	#contact::before{
		display:none;
	}

	#contact .kc-wrap-columns{
		box-shadow:unset;
	}

	#contact .kc_col-sm-6:nth-child(1){
		padding: 5% 7%;
	}

	#contact .kc_col-sm-6:nth-child(2) .kc-raw-code.kc-elm{
		height: 450px;
	}

	#contact .contact-sm .kc_wrapper{
		font-size: 17px;
	}
	
	#contact .contact-sm i{
		font-size: 27px;
		margin-right: 12px;
		position: relative;
		top: 1px;
	}
}

@media all and (max-width: 520px){
	#contact .kc_col-sm-6:nth-child(1){
		padding: 3% 2%;
	}
}

@media all and (max-width: 420px){
	#contact .contact-sm{
		margin-left:0px;
	}
}

/***********************
Contact Form
***********************/ 

.wpcf7{
	padding-bottom: 45px;
}

.wpcf7 fieldset{
	border:0px;
	padding-left: 0;
	padding-right: 0;
}

.wpcf7 textarea,
.wpcf7 input{
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	color:#000000;
	padding:18px;
	width: 100%;
	outline: none;
	font-weight: bold;
    font-size: 15px;
}

::-webkit-input-placeholder { /* Edge */
	color: #000080;
	font-size: 13px;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #000080;
	font-size: 13px;
  }
  
  ::placeholder {
	color: #000080;
	font-size: 13px;
  }

.wpcf7 textarea{
	border-radius: 27px;
	height: 150px;
}

.wpcf7 button[type="submit"]{
	background-color:#000080;
	color:white;
	padding:17px 40px 17px 40px;
	margin: 0 auto;
	display: table;
	width: auto;
	border: 0px;
	border-radius: 100px;
	font-weight: bold;
    font-size: 16px;
}

.wpcf7 button[type="submit"]:hover{
	background-color:#FFBF00;
}

/***********************
Footer
***********************/ 

.site-footer{
	color:white;
	padding: 30px 0px 30px 0px;
	background: rgb(72,60,50);
	background: linear-gradient(150deg, rgba(72,60,50,1) 0%, rgba(58,49,41,1) 100%);
	float: left;
	width: 100%;
	text-align: center;
}

.home .site-footer{
	padding: 140px 0px 30px 0px;
}

@media all and (max-width: 900px){
	.home .site-footer,
	.site-footer{
		padding: 30px 0px 30px 0px;
	}
}

.site-footer ul{
	display:flex;
	padding: 0;
    justify-content: center;
}

.site-footer ul li{
	list-style: none;
}

.site-footer ul li:not(:nth-child(1)) a::before{
	content:"";
	width:8px;
	height:8px;
	border-radius: 100px;
	background-color:white;
	position: absolute;
	display: inline-block;
	top: 6px;
    left: -4px;
}

.site-footer ul li a{
	color:white;
	text-decoration: none;
	position: relative;
	padding:0px 18px;
}

.site-footer .site-info{
	color:#A19B97;
	font-size: 13px;
	margin-top: 40px;
}

/***********************
404
***********************/ 

.search .site-main,
.error404 .site-main{
	height: 400px;
    background: rgb(66,158,157);
    background: linear-gradient( 135deg, rgba(66,158,157,1) 0%, rgba(60,145,145,1) 100%);
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	color:white;
	padding: 60px 1% 0px 1%;
}

.search .site-footer,
.error404 .site-footer{
	padding: 30px 1% 30px 1%;
}