
/* ------------------------------------ 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: #04aa6d;
  --hover: #3b7c59;
  --white: #ffffff;
  --black: #333;
}

body{
	padding:0;
	margin:0;
	font-family: 'Open Sans', sans-serif;
	background: var(--primary);
	color: var(--black);
}
img{
	display:block;
	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: #3b7c59;
	color: var(--white);
}
.button2{
	background: var(--primary);
	color: var(--black);
	padding: 10px 30px;
	border-radius: 10px;
	display: inline;
	box-shadow: 4px 5px 8px #333;
}
.button2:hover{
	background: #3b7c59;
	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;
	gap: 10px;
	flex-wrap: wrap;
	justify-content:left;
}

.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;
	margin: 10px 0;
}
th, td {
  padding: 5px 10px;
  border-bottom: 2px solid var(--secondary);
  text-align:center;
}
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;
	}

}
@media only screen and (max-width: 768px) {
	.grid-cols-4, .grid-cols-3{
		display:block;
	}
}


/* --------------------------------- END SETTINGS -------------------------------------*/

/* ------------------------------------- NAVBAR --------------------------------------*/
.navbar{
	
	padding: 10px 50px;
	background: var(--secondary);
	position: sticky;
	top: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	box-shadow: 1px 1px 7px #000;
	z-index: 2;
	color:white;
	min-height: 100px;	
}
.navlinks{
	display:flex;
	justify-content: end;
	align-items:center;
}
.ham-nav{
	padding: 10px 20px;
	position: sticky;
	top: 0;
	display:none;
	z-index: 2;
}
.hamburger{
	display:none;
	justify-content: end;
	align-items:center;
}

.ham-links{
	display: none;
	position: sticky;
	top: 80px;
	z-index: 2;
}
.hamburger a{
	font-size: 20px;
	padding: 10px 10px;
	border-radius: 10px;
	background: var(--hover);
}

.newham{
	display: flex;
	justify-content: end;
	align-items: center;
}
#hover-menu{
	font-size: 20px;
	padding: 10px 15px;
	border-radius: 15px;
	background: var(--hover);
}


.navbar .active {
	border-bottom:1px solid #fff;
	background: var(--secondary);
}
.navlinks a {
	padding: 10px 30px;
	border-radius: 10px;
}
.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 10px 30px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  border-radius: 15px;
}
#hover-menu .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 10px 30px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  border-radius: 15px;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #3b7c59;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 15px;
  z-index: 2;
  overflow:auto;
  max-height:600px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  right: 20px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 15px;
  z-index: 2;
  overflow:auto;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 15px;
}
.dropdown-menu a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 15px;
}


.dropdown-content a:hover {
  background-color: var(--secondary);
  color:white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#hover-menu:hover .dropdown-menu {
  display: block;
}

/* --------------------------- END NAVBAR ------------------------------------------------------ */

/* ---------------------------- BANNER ----------------------------------------------------------*/

.banner{
	background-image: url("../../assets/images/elephant.jpg");	
	height: 550px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: white !important;
}
.park-banner{	
	height: 350px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: white !important;
}
.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3); 
  z-index: 1; 
  display: flex !important;
  justify-content: center;
  align-items:center;
  color:white !important;
}

/* --------------------------------------- END BANNER ----------------------------------------------------------------------*/

/*--------------------------------------- HOME CARDS ---------------------------------------------------------------------*/
.home-card{
	border-radius: 20px;
	height: 350px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	box-shadow: 10px 10px 8px var(--black);
}
.card-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); 
  z-index: 1; 
  display: flex !important;
  justify-content: center;
  align-items:center;
  color:white;
  border-radius: 20px;
}

/*--------------------------------------END HOME CARDS ---------------------------------------------------------------------*/
/*-------------------------------------- LODGE CARDS ---------------------------------------------------------------------*/
.lodge-card{
	border-radius: 15px;
	box-shadow: 0 0 10px var(--black);
}

.lodge-card:hover{
	box-shadow: 0 0 20px var(--black);
	border: none;
}
.lodge-card img{
 border-radius: 15px 15px 0 0;
}
.lodge-card-text .button{
 width:100%;
 box-shadow: none;
 padding: 15px 15px;
 border-radius: 10px;
}
.lodge-card-text{
	color: #000;
	padding: 20px;
	text-align: center;
	display: grid;
}
.lodge-location{
	color: #04aa6d;
	margin-bottom: 0px !important;
	margin-top: 7px;
}
.lodge-card-img{
	border-radius: 15px 15px 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display:flex;
	align-items: end;
}
.lodge-card-overlay {
  width: 100%;
  background-color: rgba(0,0,0,0.5); 
  z-index: 1; 
  color:white;
  padding: 10px 20px;
}
/*--------------------------------------END LODGE CARDS ---------------------------------------------------------------------*/
/*---------------------------------------ROOM SECTIONS ---------------------------------------------------------------------*/
.boxes{
	display:flex;
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
	justify-content:center;
}
.box{
	padding: 30px 30px;
	background: var(--secondary);
	display: inline;
	border-radius: 15px;
	box-shadow: 4px 5px 8px #333;
}
.box:hover{
	background: #3b7c59;
	color: white;
}
.room-section{
	border-radius: 15px;
	position:static;
}
.primary{
	background: var(--secondary);
	color: var(--primary);
}

.owl-carousel {
	padding: 30px 20px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}
.owl-stage-outer{
	position:relative;
	border-radius: 15px;
}


/*------------------------------------END ROOM SECTIONS ---------------------------------------------------------------------*/

/*-------------------------------------------GALLERY---------------------------------------------------------------------*/


.gallery-slider{
	padding: 0 30px;
}
.slick-slide{
    margin: 10px;
}
.slick-prev:before, .slick-next:before {
	color: var(--secondary);
	font-size: 40px;
}
.slick-next {
    right: 18px;
}
.slick-prev {
    left: 0;
}

/*------------------------------------END GALLERY ---------------------------------------------------------------------*/

/*--------------------------------------ACCORDIONS ---------------------------------------------------------------------*/
.accordion {
  background-color: var(--secondary);
  color: var(--white);
  cursor: pointer;
  padding: 30px 30px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: max-height 3s ease-in-out;
  border-radius: 15px;
  margin-bottom: 15px;
}

.area-accordions .accordion {
  background-color: var(--primary);
  color: var(--secondary);
  cursor: pointer;
  padding: 30px 30px;
  width: 100%;
  text-align: left;
  border-top: 2px solid var(--secondary);
  outline: none;
  transition: max-height 3s ease-in-out;
  border-radius: 5px;
  margin-bottom: 0;
}

.accordion i{
	float: right;
	font-size: 30px;
}

.active, .accordion:hover {
  background-color: #3b7c59;
}

.area-accordions .accordion:hover {
  background-color: #04aa6d;
  color: white;
}

.panel {
  padding: 0 35px;
  background-color: var(--primary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  margin-bottom: 15px;
}

/*--------------------------------------END ACCORDIONS ---------------------------------------------------------------------*/

.fa-map-marked-alt{
	font-size: 20px;
}
.please-enquire{
	color: var(--secondary);
	text-decoration: underline;
	font-weight: bold;			}
/*----------------------------------------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="tel"], input[type="date"], input[type="email"], 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{
 background: var(--hover);
 padding: 15px 55px;
 color: white;
}
.icons{
	font-size: 30px;
}

/*----------------------------------------END FOOTER ---------------------------------------------------------------------*/

/*----------------------------------------MEDIA SCREENS ---------------------------------------------------------------------*/

@media only screen and (max-width: 900px) {
	.owl-carousel {
		padding: 10px;
	}
	.navlinks{
		display:none;
	}
	.ham-nav{
	display:grid;
	}
	.hamburger{
		display:flex;
	}
	.hamburger:hover .ham-links{
	  display: flex;
	}
	.ham-links{
		display:none;
		justify-content:center;
		padding: 35px;
		background: var(--secondary);
		border-top: 2px solid var(--hover);
		transition: max-height 3s ease-in-out;
	}
	.ham-links a {
	padding: 10px 30px;
	border-radius: 10px;
	margin: 15px 0;
	}
	.ham-links a:hover{
	  background-color: #3b7c59;
	}
	.navbar{
	grid-template-columns: 1fr;
	position: relative;
	box-shadow: none;	
	}
	#whatsapp-button{
		display: none;
	}
	#whatsapp-button2{
		padding: 5px 5px;
	}

}
@media only screen and (max-width: 768px) {
	.lodge-card{
		margin-bottom: 25px;
	}
}
/*----------------------------------------END MEADIA SCREENS---------------------------------------------------------------------*/
