/* ------------------------------------ SETTINGS -------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Oleo+Script:400|Open+Sans:300,300italic,600,600italic,800");

:root {
  --primary: #f2f2f2;
  --secondary: #4aa2bc;
  --hover: #3b7c59;
  --white: #ffffff;
  --black: #333;
  --grey: #e3e2e4;
}

body{
	padding:0;
	margin:0;
	font-family: 'Open Sans', sans-serif;
	background: var(--primary);
	color: var(--black);
}
img{
	max-width: 100%;
	height: auto;
	border-radius: 15px;
}
.container{
	max-width: 1200px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 30px 30px;
}

.contact-us{
	max-width: 700px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 30px 30px;
}

h1, h2, h3 {
	margin: 0;
}
a {
	text-decoration:none;
	color: var(--white);
}

.button{
	padding: 10px 30px;
	border-radius: 10px;
	display: inline;
	background: var(--secondary);
	color: var(--white);
	box-shadow: 4px 5px 8px #333;
	border: none;
}
.button:hover{
	background: var(--white);
	color: var(--black);
}
.button2{
	background: var(--primary);
	color: var(--black);
	padding: 10px 30px;
	border-radius: 10px;
	display: inline;
	box-shadow: 4px 5px 8px #333;
}
.button2:hover{
	background: var(--secondary);
	color: var(--white);
}
#whatsapp-button {
    position: fixed;
    left: 15px;
    top: 120px;
    font-size: 0.9em;
    z-index: 2;
	background: var(--secondary);
	border-radius: 100px;
	padding: 5px 10px;
	display:flex;
	align-items:center;
	color: white;
	border: 2px solid white;
}
#whatsapp-button2 {
    font-size: 0.9em;
    z-index: 2;
	background: var(--secondary);
	border-radius: 100px;
	padding: 5px 10px;
	display:flex;
	align-items:center;
	justify-content: center;
	color: white;
	border: 2px solid white;
}
.flex-box{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:center;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.text-center{text-align: center;}
.p-1{padding: 5px;}
.p-2{padding: 10px;}
.p-3{padding: 15px;}
.p-4{padding: 20px;}
.p-5{padding: 25px;}
.m-1{margin: 5px;}
.m-2{margin: 10px;}
.m-3{margin: 15px;}
.m-4{margin: 20px;}
.m-5{margin: 25px;}
.mb-1{margin-bottom: 5px;}
.mb-2{margin-bottom: 10px;}
.mb-3{margin-bottom: 15px;}
.mb-4{margin-bottom: 20px;}
.mb-5{margin-bottom: 25px;}
.font-1{font-size: 20px;}
.font-2{font-size: 30px;}
.font-3{font-size: 40px;}
.font-4{font-size: 50px;}
.font-5{font-size: 60px;}
.gap-1{gap: 5px;} 
.gap-2{gap: 10px;}
.gap-3{gap: 15px;}
.gap-4{gap: 20px;}
.gap-5{gap: 25px;}
.flex{display: flex;}
.items-center{align-items:center;}
.justify-center{justify-content:center;}
.border{border: 3px solid var(--secondary);}
.bold{font-weight: bold;}

table{
	width: 100%;
	text-align: left;
}
th, td {
  padding: 5px 10px;
  border-bottom: 4px solid var(--secondary);
}
th {
  background: var(--secondary);
  color:white;
}


.grid-cols-4{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
justify-content: space-evenly;
height: 100%;
}
.grid-cols-3{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
justify-content: space-evenly;
}
.grid-cols-2{
display: grid;
grid-template-columns: 1fr 1fr;
justify-content: space-evenly;
}
.grid-cols-1{
display: grid;
grid-template-columns: 1fr;
justify-content: space-evenly;
}

@media only screen and (max-width: 900px) {
	.grid-cols-3, .grid-cols-4{
		grid-template-columns: 1fr 1fr;
		justify-content: space-evenly;
	}
		.grid-cols-2{
		display:block;
	}
	
	.hamburger{
		display: block !important;
		font-size: 25px;
		font-weight: bold;
		position: absolute;
		right: 15px;
		top: 0;
		color:var(--white);
		padding: 10px;
	}
	.nav-links{
		display: none;
	}

}
@media only screen and (max-width: 768px) {
	.grid-cols-4, .grid-cols-3{
		display:block;
	}
}


/* --------------------------------- END SETTINGS -------------------------------------*/

nav{
	background: var(--primary);
	border-bottom: 2px solid var(--secondary);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index:2;
}

.hamburger{
	display:none;
}

.nav-links a{
	padding: 25px 40px;
	background: var(--primary);
	color: var(--black);
	display:flex;
	align-items:center;
	font-weight:bold;
}
.nav-links a:hover{
	background: var(--secondary);
	text-decoration: underline;
	color: var(--white);
}
.active{
	background: var(--secondary) !important;
	color: var(--white) !important;
}

/* ---------------------------- BANNER ----------------------------------------------------------*/

.banner{
	background: #e3e2e4;	
	height: 450px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: black !important;
	display: flex;
	align-items:center;
	text-align:center;
}
.banner-text{
	max-width: 1000px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 30px 30px;
}
.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.1); 
  z-index: 1; 
  display: flex !important;
  justify-content: center;
  align-items:center;
  color:white !important;
}

/* --------------------------------------- END BANNER ----------------------------------------------------------------------*/

/* --------------------------------------- HOME PAGE ----------------------------------------------------------------------*/
.about-text{
	display:flex;
	align-items: center;
	padding: 20px;
}
.accommodation-section{
	background: var(--grey);
	margin: 30px 0;
	padding: 20px 0;
}
.section-card{
	height: 300px;
	border-radius: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.card-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.0); 
  z-index: 1; 
  display: flex !important;
  justify-content: center;
  align-items:center;
  color:white !important;
  border-radius: 15px;
}

#more-cards{
	display:none;
}
/* --------------------------------------- END HOME PAGE ----------------------------------------------------------------------*/

.flex-btns{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:left;
	gap: 10px;
}
.boxes{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:center;
	gap: 10px;
}
.room-section{
	padding: 20px;
 	border-radius: 15px;
}

.primary{
	background: var(--secondary);
	color: white;
}
.acc-img{
	display: flex;
	align-items: center;
	justify-content:center;
}

.activity-block{
	align-items: center;
}

.owl-carousel {
	padding: 10px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}
.owl-stage-outer{
	position:relative;
	border-radius: 15px;
}


/*----------------------------------------BOOKING FORM ---------------------------------------------------------------------*/
.booking-form{
	border-radius: 15px;
	padding: 20px;
}
.contact-form{
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 0 10px var(--black);
}
.enquire{
	box-shadow: 0 0 10px var(--black);
	border-radius: 15px;
	padding: 20px;
	text-align: start;
}
input[type="submit" i] {
	border: none;
}

input[type="text"], input[type="date"], input[type="email"], input[type="tel"], textarea {
	width: 100%;
	padding: 15px;
	border-radius: 10px;
	border: 1px solid #ccc;
	margin-top:10px;
}
input [type="checkbox"]{
	width: 10%;
}

* {
	box-sizing: border-box;
}

/*----------------------------------------BOOKING FORM ---------------------------------------------------------------------*/
/* --------------------------------------- FOOTER ----------------------------------------------------------------------*/

.footer{
	height: 100px;
	background: var(--secondary);
	color: var(--white) !important;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mad-link{
	font-weight: bold;
}

/* --------------------------------------- END FOOTER ----------------------------------------------------------------------*/


.newgall {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  img{
  	width: 100%;
  }	
}

.newgall{
	display: flex;
	gap: 10px;
	align-items: stretch;
	height: auto;
	img {
		border-radius: 2px;
		margin: 0;
		}
}
.thumbnails{
	display: grid;
	grid-template-columns: 1fr;
	width: 25%;
	overflow: auto;
	gap: 5px;
}
.galslides{
	width: 75%;
	height:100%;
	position: relative;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--primary);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(255,255,255,0.7);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: var(--primary);
  color: white;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 2px 16px;
  color: white;
  background: rgba(0,0,0,0.2);
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
	width: 100%;
	img{
		width: 100%;
	}
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}



/*----------------------------------------MEDIA SCREENS ---------------------------------------------------------------------*/

@media only screen and (max-width: 900px) {
		.owl-carousel {
		padding: 0;
	}
	.newgall{
		display: block;
	}
	.thumbnails{
		display: flex;
		overflow-x: auto;
        white-space: nowrap;
		width: 100%;
	}
	.galslides{
		width: 100%;
	}
	.column{
		flex-shrink: 0;
	    width: 20%;
	}
	.prev,
	.next {
	  padding: 10px;
	  font-size: 20px;
	  top: 60%;
	}
	.next {
	  right: 0;
	}
	.caption-container {
	  width: 100%;
	  p{
	  	 margin: 5px 0;
		 font-size: 400;
	  }
	}
}
/*----------------------------------------END MEADIA SCREENS---------------------------------------------------------------------*/