/* ------------------------------------ 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: #971b2f;
	--secondary: #550f1a;
	--hover: #811728;
	--white: #ffffff;
	--black: #000;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background: #fff;
	color: var(--black);
}

p {
	font-weight: 600;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}

svg {
	display: block;
	max-width: 50%;
	height: auto;
	margin: auto;
}

.container {
	max-width: 1200px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 10px 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;
}

#hover-button {
	position: fixed;
	bottom: 50px;
	right: 20px;
	z-index: 1000;
}

#hover-button .button2 {
	border: 1px solid var(--primary);
}

.button {
	padding: 10px 30px;
	display: inline;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 5px;
	font-weight: bold;
	background: white;
}

.button:hover {
	background: var(--primary);
	color: white;
}

.button2 {
	padding: 10px 30px;
	display: inline;
	color: var(--white);
	border-radius: 5px;
	font-weight: bold;
	background: var(--primary);
}

.button2:hover {
	background: #fff;
	color: var(--primary);
	border: 1px solid var(--primary);
}

.button3 {
	padding: 10px 30px;
	display: inline;
	color: white;
	border: 1px solid white;
	border-radius: 5px;
	font-weight: bold;
}

.button3:hover {
	background: white;
	color: var(--primary);
}

.button4 {
	padding: 2px 10px;
	background: var(--primary);
	border-radius: 5px;
	font-weight: bold;
	color: white;
	border: 1px solid white;
}

.button4:hover {
	background: var(--hover);
}

#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;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.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(--primary);
}

.bold {
	font-weight: bold;
}

table {
	width: 100%;
	margin-bottom: 10px;
	table-layout: auto;
}

th,
td {
	padding: 5px 10px;
	border-bottom: 4px solid var(--primary);

}

tr {
	border-bottom: 4px solid #333 !important;
}

th {
	background: var(--primary);
	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;
}

.header{
display: grid;
grid-template-columns: 1fr 1fr;
justify-content: space-evenly;
align-items:center;
	 h1,p{
		margin: 2px;
	}
}

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

	.grid-cols-3,
	.grid-cols-4 {
		grid-template-columns: 1fr 1fr;
		justify-content: space-evenly;
	}

}

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

	.grid-cols-4,
	.grid-cols-3 {
		display: block;
	}

	.grid-cols-2 {
		display: block;
	}
}


/* --------------------------------- END SETTINGS -------------------------------------*/

/* ------------------------------------- NAVBAR --------------------------------------*/
.logo-img{
 width: 150px;
}
.sticky-bar{
	display: none;
}
.sticky-2{
	display: none;
}
.sticky-bar2{
	display: block;
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--primary);
	color: #fff;
	}
.sticky-bar2 .container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: space-evenly;
	justify-content:center;
	align-items:center;
	padding: 5px 30px;
}
.sticky-icons{
	display: flex;
	justify-content: right;
	color: white !important;
}
.sticky-icons2{
	display: flex;
	justify-content: center;
	color: white !important;
}
.sticky-icons i{
	color: white !important;
}
.sidepanel {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}
.sidepanel a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  color: #333;
  display: block;
  transition: 0.3s;
  margin: 4px 30px;
  border-bottom: 1px solid #e1e1e1;
  
}
.sidepanel a:hover {
  color: var(--primary);
  font-weight: bold;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  background: #f2f2f2;
  border: 0;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: white;
  color: var(--primary);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}

.openbtn:hover {
  background-color: #fff;
  color: var(--primary);
}

/* --------------------------- END NAVBAR ------------------------------------------------------ */

/* ---------------------------- BANNER ----------------------------------------------------------*/
.area-box {
	box-shadow: 0 0 8px #333;
	background-color: #f2f2f2;
	border-radius: 15px;
	align-items: center;
}

.area-header {
	height: 400px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: white !important;
	z-index: 2;
	border-radius: 15px 0 0 15px;
}

.area-header-overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.area-header-overlay h2 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--primary);
}

.area-heading {
	color: black;

	a {
		color: var(--primary);
	}

	a:hover {
		color: black;
	}
}

.area-more {
	color: var(--primary);
	font-weight: bold;
}

.area-more:hover {
	color: black;
}

.area-box-content {
	padding: 15px;
	max-height: 400px;
	overflow: auto;
}

.lodge-list-a {
	display: block;
	border-radius: 10px;
	border: 1px solid var(--primary);
	color: var(--primary);
	padding: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}

.lodge-list-a:hover {
	color: white;
	background: var(--primary);
}

#why {
	background: var(--primary);
	color: white !important;

	p {
		font-size: 25px;
	}

	.container {
		padding: 0 30px;
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
}

.why-content {
	padding: 45px 0;
}

.why-img {
	position: relative;
}

.why-img img {
	position: absolute;
	bottom: 0;
	left: 50px;
}

.area-banner {
	height: 400px;
	color: white !important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.area-banner h2 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--primary);
}

.lodge-card {
	border-radius: 15px;
	box-shadow: 0 0 10px #333;
}

.lodge-card img {
	border-radius: 15px 15px 0 0;
}

.lodge-text h3 {
	color: var(--primary);
}

.lodge-text .button2 {
	padding: 15px 80px;
}

.lodge-text p {
	margin: 8px 0;
}

.view-lodge a {
	text-decoration: underline;
}

.view-lodge {
	padding: 8px 0;
}

.lodge-boxes {
	margin-bottom: 20px;
	border: 1px solid var(--primary);
	border-radius: 15px;
	background: #f2f2f2;
}

.media-description {
	padding: 20px;
	margin-bottom: 10px;

	b {
		color: var(--primary);
	}
}

.media-description p {
	margin: 8px 0;
}

.lite-vid {
	border-radius: 15px 15px 0 0;
}

.gallery-card {
	border-radius: 15px;
	border: 1px solid var(--primary);

	img {
		border-radius: 15px 15px 0 0;
	}
}

.grey-section {
	background: #f2f2f2;
	padding: 30px 0;
}

.owl-carouse {
	padding: 70px;
}

.owl-stage {
	margin-left: auto !important;
	margin-right: auto !important;
}

.owl-item {
	padding: 10px;
}

.owl-nav {
	display: flex;
	justify-content: center;
}

button.owl-prev,
button.owl-next {
	font-size: 40px !important;
	margin: 10px;
	border-radius: 50%;
	width: 50px;
	height: auto;
	font-weight: bold;
	background-color: #e3e3e3 !important;
	color: var(--primary) !important;
	border: 1px solid var(--primary) !important;
}

button.owl-prev:hover,
button.owl-next:hover {
	background-color: var(--primary) !important;
	color: white !important;
}

button.owl-prev {
	position: absolute;
	top: 80px;
	left: -45px;
}

button.owl-next {
	position: absolute;
	top: 80px;
	right: -45px;
}

.owl-dots {
	display: flex;
	justify-content: center;
}

button.owl-dot {
	color: var(--primary) !important;
	font-size: 40px !important;
}

.email-card {
	border: 1px solid var(--primary);
	border-radius: 15px;
	padding: 20px 10px;
	background: #f2f2f2;
	margin-bottom: 10px;
	position: relative;

	h4 {
		margin: 0;
		color: #333;
	}

	a {
		font-weight: bold;
		color: var(--primary);
		display: inline;
		position: relative;
		overflow-wrap: break-word;
	}
}

/* --------------------------------------- END BANNER ----------------------------------------------------------------------*/

/*---------------------------------------ROOM SECTIONS ---------------------------------------------------------------------*/
.boxes {
	display: flex;
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.boxes2 {
	display: flex;
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: start;
}

.box {
	padding: 30px 30px;
	background: var(--secondary);
	display: inline;
	border-radius: 15px;
	box-shadow: 4px 5px 8px #333;
}

.box:hover {
	background: #3b7c59;
	color: white;
}

.photos-section {
	height: 400px;
	overflow: auto;
	padding: 5px;
}

/*------------------------------------END ROOM SECTIONS ---------------------------------------------------------------------*/

/*----------------------------------------BOOKING FORM ---------------------------------------------------------------------*/
.booking-form {
	padding: 20px;
	border-radius: 15px;
}

.contact-form {
	border-radius: 15px;
	padding: 20px;
}

.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="tel"],
input[type="email"],
textarea,
select {
	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 {
	padding: 15px 15px;
	margin-bottom: 50px;
	border-top: 1px solid var(--primary);
}

.icon {
	font-size: 30px;
}

footer .icon i {
	color: var(--primary);
}

/*----------------------------------------END FOOTER ---------------------------------------------------------------------*/

.accommodation {
	background: #e2e2e2;
	padding: 15px;
	border-radius: 10px;
	position: relative;
}

.removeAccommodation {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 0 10px 0 0;
	background: var(--primary);
	color: white;
	border: 0;
}

.quote-section {
	background-color: #f2f2f2;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 0 8px black;
}

.season-section {
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 10px;
}

.quote-acc {
	background-color: white;
	padding: 5px 20px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.quote-total {
	color: var(--primary);
	background-color: white;
	padding: 20px;
}

.book-btn {
	padding: 10px;
	background-color: var(--primary);
	color: white;
	border-radius: 4px;
	border: none;
	width: 100%;
}

#addAccommodation {
	color: var(--primary);
	margin: 10px;
	cursor: pointer;
}

#addAccommodation:hover {
	text-shadow: 0 0 2px var(--hover);
}

/*----------------------------------------MEDIA SCREENS ---------------------------------------------------------------------*/

@media only screen and (max-width: 900px) {
	.area-header {
		height: 200px;
		border-radius: 15px 15px 0 0;
	}

	.area-box-content {
		max-height: 100%;
	}

	.lodge-list {
		height: 100%;
	}

	.sticky-bar2 {
		display: none;
	}

	.sticky-2 {
		display: block;
		position: sticky;
		top: 56px;
		z-index: 1000;
		padding: 10px;
		background: white;
	}

	.sticky-bar {
		display: block;
		position: sticky;
		top: 0;
		z-index: 1000;
		background-color: var(--primary);
		color: #fff;
	}

	.sticky-bar .container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-content: space-evenly;
		justify-content: center;
		align-items: center;
		padding: 5px 15px;
	}

	.why-img img {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.lodge-card {
		margin-bottom: 25px;
	}

	svg {
		max-width: 100%;
	}
}

/*----------------------------------------END MEADIA SCREENS---------------------------------------------------------------------*/

