* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* font-family: Roboto; */
}

body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: normal;
}

ul {
  margin: 0;
  padding: 0;
}

/* ================================================================= CUSTOM COLORS & STYLES ================================================================= */

:root {
  /* Primary logo colors */
  --nature-green: #3c6e47; /* Dark Green */
  --nature-light-green: #8bcd8b; /* Light Green */
  --nature-beige: #f5f5dc; /* Beige */
  --nature-brown: #7c4c3b; /* Soft Brown */

  /* Variations/Highlights */
  --nature-green-hover: #2e4d32; /* Darker green for hover states */
  --nature-light-green-hover: #72b672; /* Darker light green */
  --nature-light-beige: #f1f1e6; /* Lighter beige */
  --nature-lightest-beige: #fafaf5; /* Very light beige for backgrounds */

  /* Accents */
  --nature-green-accent: #5a7f56; /* Accent Green */
  --nature-dark-brown: #4a2c1f; /* Darker brown for contrast */
}

html {
  scroll-behavior: smooth;
}

.container {
  padding: 15px 60px;
}

img {
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 15px 15px;
  }

  .offcanvas-body,
  .offcanvas-header {
    background-color: var(--nature-light-beige);
    z-index: 10000 !important;
  }
  .search {
    z-index: 0 !important;
  }
  #right-sidebar {
    margin-left: 0px !important;
    padding: 5px 12px;
  }
}

* {
  font-family: Roboto;
}

a {
  text-decoration: none;
  color: var(--nature-light-green);
}

a:hover {
  color: var(--nature-light-green-hover);
}

.btn {
  background-color: var(--nature-green) !important;
  border-color: var(--nature-green-accent) !important;
  color: white !important;
}

.btn:hover {
  background-color: var(--nature-light-green-hover) !important;
  border-color: var(--nature-dark-brown) !important;
}

#right-sidebar * {
  line-height: 150%;
}

.menu-item-has-children > a::after {
  margin-left: 8px;
}

.dropdown-item {
  padding: 10px 10px;
  border-radius: 4px;
  color: var(--nature-light-green) !important;
}

.dropdown-menu {
  display: none;
} 

 .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.page-link {
  color: var(--nature-light-green);
}

.page-link.current {
  background-color: var(--nature-green);
}

.content-area * {
  /* line-height: 130%; */
}

article {
  margin: 20px 5px;
}

/* ================================================================= HOME PAGE CONTENT ================================================================= */

#main-nav {
  position: fixed;
  transition: all 0.3s ease;
  /* border-top: 1px solid var(--nature-brown); */
  max-height: 7dvh;
  /* text-transform: uppercase; */
  font-weight: bold;
  /* background: #8cc7ce; */
  background-color: #fff;
  /* background-color: #2c4f39;  */
  z-index: 10000 !important;
  padding-right: 20px;
}

#main-nav.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

.nav-link {
  color: var(--nature-light-green);
  color: white;
  color: #8cc7ce;
}

.nav-link:hover {
  color: var(--nature-light-green-hover);
}

#navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  max-width: 60px;
  margin-left: 10px;
  padding: 5px;
}

.navbar-brand img:hover {
  scale: 101%;
}

.logo-text {
	color: #8cc7ce;
}

.main-bg {
  position: relative;
  overflow: hidden;
}

.main-bg img {
  width: 100%;
  max-width: 100vw;
  height: 100vh;

  position: relative;
  top: 0;
  left: 0;
}

/* Overlay */
.main-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity here */
  z-index: 1;
}

.main-text {
  position: absolute;
  z-index: 5;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.main-text h1 {
  font-size: 3.5rem;
  text-wrap: none;
  /* font-family: Open Sans; */
}

h1.main-title {
  color: #103565;
}

#hostaway-booking-widget {
  position: absolute !important;

  top: 55%;
  left: 50%;
  width: 750px;
  transform: translate(-50%, -50%);
  z-index: 1; 
}

.mountain {
  max-width: 90px;
}

.main-info {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  padding: 40px 120px;
}

.main-info > * {
  margin: 0 auto;
}

.main-info h1 {
  margin-bottom: 20px;
}

.desc-border {
  padding-bottom: 40px;
  border-bottom: 1px solid grey;
}

.custom-search-group {
  position: relative;
}
/* 
.search-form .search-field {
  padding-left: 40px;
  border-radius: 20px;
  height: 40px;
}

.search-form .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nature-brown);
  font-size: 1.2rem;
  z-index: 5000;
  background-color: transparent;
  border: transparent;
}

.search-form .search-field::placeholder {
  color: var(--nature-brown);
  opacity: 1;
} */
.booking-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 1rem;
  /* background: #f3f3f3; */
  border-radius: 8px;
  align-items: center;
  z-index: 1000;
  position: absolute !important;

  top: 55%;
  left: 50%;
  width: 90%;
  max-width: 750px;
  transform: translate(-50%, -50%);
}

.booking-bar input,
.booking-bar select,
.booking-bar button {
  flex: 1 1 150px;
  padding: 0.5rem;
  border: 1px solid #ccc !important;
  border-radius: 4px;
  min-width: 120px;
  box-sizing: border-box;
}

.booking-bar button {
  background-color: #2e4d32;
  color: white;
  cursor: pointer;
  border: none;
  flex-grow: 0;
  flex-shrink: 0;
}

.booking-bar button:hover {
  background-color: #3c6e47;
}

.booking-bar * {
  z-index: 10000;
}

/* Optional: Better stacking on very small screens */
@media (max-width: 500px) {
  .booking-bar {
    flex-direction: column;
    /* align-items: stretch; */
	  display: block;
	  padding: 0.5rem;
	  max-height: 55vh;
	  flex-wrap: nowrap;
  }

  .booking-bar input, 
	.booking-bar button {
    width: 100%;
  }
	
	

  .main-text h1 {
    /* display: absolute; */
    margin-bottom: 120px !important;
  }
}



  

.calendar-widget {
  display: flex;
}

.calendar-widget > * {
  margin: 0 auto;
}

.content-block {
  width: 100%;
  padding: 60px 20px;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.content-inner.left-image .image {
  order: 1;
}

.content-inner.left-image .text {
  order: 2;
}

.content-inner.right-image .image {
  order: 2;
}

.content-inner.right-image .text {
  order: 1;
}

.image {
  flex: 1;
  min-width: 300px;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.my-image-gallery-home-1 {
	min-width: 100%;
}

.swiper-slide-home img {
	height: auto !important;
}

.text {
  flex: 1;
  min-width: 300px;
}

.text .caption {
  display: block;
  font-size: 14px;
  color: #c5875e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #103565;
}

.text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.retreat-info {
  margin-bottom: 20px;
}

.retreat-info .meta {
  font-weight: 500;
  color: #444;
  margin-bottom: 10px;
  font-size: 16px;
}

.amenities {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenities h3 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.amenities li {
  background-color: #e0e0e0;
  color: #333;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
}

.show-amenities-btn {
  margin-left: auto;
  margin-right: auto;
}

.cancellation-policy {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.cancellation-policy * {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


.final-desc {
  margin-bottom: 80px;
  /* background-color: #f4f4f4; */

}

.house-rules * {
  /* margin-left: auto; */
  /* margin-right: auto !important; */
  /* text-align: center; */
}

/*Swiper*/
.swiper-container {
	width: 50%;
	max-width: 300px;
	/* height: 300px; */
	margin: 0 auto;
	position: relative;
  }
  
  .swiper-slide img {
	width: 100%;
	height: auto;
	/* object-fit: contain; */
	border-radius: 12px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
	color: #3c6e47 !important;
	font-size: 24px !important; /* smaller arrow symbol */
  }  

  .swiper-button-next::after,
  .swiper-button-prev::after {
	font-size: 30px !important; /* Adjust size as needed */
	font-weight: 700 !important;
	color: #3c6e47 !important;
	background-color: #fff !important;
	border-radius: 50%;
	padding: 8px;
	color: #000; /* Change arrow color if needed */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  }


  /* Hide all slides except the active one */
.swiper-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease;
  }
  
  .swiper-slide-active {
	opacity: 1 !important;
	visibility: visible !important;
  }

  .swiper-slide img {
	width: 100%;
	height: 280px;
	display: block;
	object-fit: cover;
  }
  
  .swiper-pagination-bullet {
	background: #3c6e47 !important;
	opacity: 0.4;
	transition: opacity 0.3s ease;
  }
  
  .swiper-pagination-bullet-active {
	opacity: 1;
  }

  .my-image-gallery2 {
	margin-top: 20px;
  }

  .my-image-gallery div div img {
	/* width: 300px; */
  }

  .swiper-home img {
	width: 300px;
  }

.properties-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  /* margin-top: 2rem; */
  align-items: center;
}

.property-card {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  height: auto;
  align-items: flex-start;
  justify-content: flex-end;
  height: 260px !important;
  margin-top: 4rem;
  /* flex-basis: 30%; */
}

.property-card .swiper-container {
  width: 100%;
  height: auto;
}

.properties-top {
  display: flex;
  flex-direction: column;
  margin-left: 2%;
}

.properties-top h2 {
	margin-top: 10px;
	margin-left: 8px;
	color: #103565;
}

.property-filter {
	display: flex;
	flex-direction: column;
	flex-grow: none;;
}

.property-filter button {
	width: 10%;
}

.retreat-info {
  margin-top: 15px;
}

.retreat-info .meta {
  font-weight: bold;
  margin-bottom: 10px;
}

.retreat-info .amenities {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.retreat-info .amenities li {
  background-color: #f2f2f2;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.retreat-listing-info {
	/* display: flex;
	flex-direction: column;
	margin-left: auto !important;
	margin-right: auto; */
	padding-left: 10%;
}

.why-book {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.why-title {
    font-size: 2.2rem;
    color: #103565;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #103565;
}

.why-item p {
    font-size: 0.95rem;
    color: #444;
}

.image-gallery {
	padding-bottom: 20px;
}

.image-gallery-div {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.image-gallery h2 {
	margin-top: 40px;
	color: #103565;
	margin-left: auto;
	margin-right: auto;
}

/* Image Gallery Section */
/* .image-gallery {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.image-gallery h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-card {
  width: 22%; 
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 6px;
  object-fit: contain;
}

.gallery-card p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

.gallery-card:hover {
  transform: translateY(-5px); 
} */

.wp-block-latest-posts__featured-image {
	width: 300px;
}

.wp-block-latest-posts__post-title {
	font-size: large;
}

.wp-block-latest-posts__featured-image img {
	height: 300px;
	width: 400px !important;
	object-fit: cover;
}

.footer {
  background-color: var(--nature-green);
  color: white;
}

.navbar-brand-2 img {
  width: 100px !important;
  margin-left: 120px;
}

.logo-footer {
  max-width: 120px;
  display: inline-flex;
  margin-left: 120px;
}

.logo-footer:hover {
  scale: 101%;
}

.footer-content {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.tagline {
  /* flex-grow: 1; */
  margin-left: 90px !important;
}

.footer-middle {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
}

.footer-right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-evenly;
}

.footer-right i {
  font-size: 20px;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
}

.footer-copyright p {
  margin: 20px auto;
  color: white !important;
}

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


  #hostaway-booking-widget {
    width: auto;
	max-width: 100%;
    height: auto;
    margin-top: 10px;
  }
	
	#main-nav {
		min-height: 10vh;
		margin-bottom: 20px;
	}

  .navbar-toggler {
    position: static;
    /* top: 55px; */
    right: 20px;
    /* border-color: #8cc7ce; */
    /* background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10'd='M4 8h24M4 16h24M4 24h24' /%3E%3C/svg%3E"); */
    /* background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,102,203, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important; */
    border-color: #8cc7ce !important;
    z-index: 10000;
  }


  .navbar-toggler-icon {
    color: #8cc7ce !important;
  }

  .nav-link {
	color: black;
  }

  #main-nav {
	position: static;
	/* top: 0; */
	max-width: 100vw;
	z-index: 1030;
  padding-bottom: 15px;
  }  

  .main-bg img {
    min-height: auto;
    object-fit: cover;
  }

  .main-info {
    padding: 10px 20px;
  }

  .navbar-brand-2 img {
    margin-left: auto;
    margin-right: auto;
  }

  #navbarNavDropdown {
	z-index: 10000;
	background-color: #fff !important;
	padding: 10px 20px;
  }



  .main-text h1 {
    /* font-size: 16px; */
    font-size: 40px;
    margin-bottom: 200px;
    text-align: center;
  }

	.content-block {
	max-width: 100%;
	padding: 10px 5px;
  }
  
  .content-inner {
	max-width: 100vw;
	/* margin: 0 auto; */
	display: flex;
	/* gap: 40px; */
	align-items: center;
	flex-wrap: wrap;
  }

  .content-inner {
    flex-direction: column;
    text-align: center;
  }

  .swiper-container {
	max-width: 90vw !important;
	overflow: hidden;
  }

  ul.amenities {
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	justify-content: center;
  }

  .image,
  .text {
    order: unset !important;
  }

  .text {
    padding-top: 20px;
  }

  .logo-footer {
	margin-left: auto;
	margin-right: auto;
  }

  .footer-content {
    display: block;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .footer-middle {
    margin-bottom: 20px;
  }

  .footer-copyright p {
	padding-left: 10px;
	padding-right: 10px;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .gallery-card {
    width: 45%; /* Two cards per row on medium screens */
  }
}

@media (max-width: 768px) {
  .gallery-card {
    width: 100%; /* One card per row on small screens */
  }
}


/* **** About Us ****** */


.about-us {
	margin-top: 60px;
	padding: 60px 20px;
	background-color: #f9f9f9;
  }
  
  .about-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
	gap: 40px;
	flex-wrap: wrap;
  }
  
  .about-text {
	flex: 1 1 450px;
  }
  
  .about-text h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #103565;
  }
  
  .about-text p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #333;
  }
  
  .about-image {
	flex: 1 1 400px;
	text-align: center;
  }
  
  .about-image img {
	width: 100%;
	max-width: 450px;
	border-radius: 12px;
	object-fit: cover;
  }
  


/*** Video Gallery *****/

.video-gallery {
	background-color: #f4f4f2;
	padding: 60px 20px;
	text-align: center;
  }
  
  .gallery-header h2 {
	font-size: 32px;
	color: #103565;
	margin-bottom: 10px;
  }
  
  .gallery-header p {
	font-size: 16px;
	color: #555;
	margin-bottom: 40px;
  }
    

  .video-gallery {
	padding: 60px 20px;
	background: #f9f9f9;
	text-align: center;
  }
  
  .gallery-heading {
	font-size: 2rem;
	margin-bottom: 40px;
	color: #103565;
  }
  
  .video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .youtube-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	background: #000;
  }
  
  .youtube-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
  }

  
/**** FAQ Page ******/

.faq-section {
	background-color: #f9f9f9;
	padding: 60px 20px;
  }
  
  .container {
	max-width: 800px;
	margin: 0 auto;
  }
  
  .faq-title {
	text-align: center;
	font-size: 2rem;
	color: #103565;
	margin-bottom: 40px;
  }
  
  .faq-item {
	margin-bottom: 15px;
	border-bottom: 1px solid #ccc;
  }
  
  .faq-question {
	width: 100%;
	background: none;
	border: none;
	outline: none;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	padding: 15px;
	cursor: pointer;
	color: #103565;
	transition: background 0.3s ease;
  }
  
  .faq-question:hover {
	background-color: #e8f0fe;
  }
  
  .faq-answer {
	display: none;
	padding: 0 15px 15px;
	color: #444;
	font-size: 1rem;
	line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
	display: block;
  }

  

  /***** Blog Page ******/

  h1.entry-title {
	color: #103565;
  }

  .more-padding {
	margin-top: 100px !important;
	padding: 60px 120px !important;
  }

  @media screen and (max-width: 768px) {
	.more-padding {
		padding: 10px 20px;
	  }	
  }


  /********* Contact Us Page ***********/
  .contact-page {
	padding: 3rem 1rem;
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
  }
  
  .contact-page h1 {
	text-align: center;
	font-size: 2.5rem;
	color: #103565;
	margin-bottom: 0.5rem;
  }
  
  .contact-page .intro {
	text-align: center;
	max-width: 800px; /* Increased max-width */
	margin: 0 auto 3rem auto;
	color: #444;
	font-size: 1.1rem;
  }
  
  .contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
  }
  
  #wpcf7-f102-o1, .contact-info {
	flex: 1 1 350px; /* Adjusted for more space */
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	max-width: 600px; /* Set max-width for both form and info */
  }
  
  #wpcf7-f102-o1 h2, .contact-info h2 {
	font-size: 1.5rem;
	color: #103565;
	margin-bottom: 1rem;
  }
  
  #wpcf7-f102-o1 label {
	display: block;
	margin: 1rem 0 0.5rem;
	font-weight: bold;
  }
  
  #wpcf7-f102-o1 input,
  #wpcf7-f102-o1 textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
  }

  #wpcf7-f102-o1 input:focus, #wpcf7-f102-o1 textarea:focus {
	border-color: #8cc7ce !important;
	box-shadow: none !important;
  }
  
  #wpcf7-f102-o1 button, #wpcf7-f102-o1 > form > p:nth-child(6) > input {
	margin-top: 1.5rem;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	background-color: #8cc7ce !important;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  #wpcf7-f102-o1 button:hover {
	/* background-color: #0b2a4c; */
  }
  
  .contact-info p {
	margin: 0.75rem 0;
	color: #333;
	font-size: 1rem;
  }
  
  .map {
	margin-top: 1.5rem;
	border-radius: 10px;
	overflow: hidden;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.contact-wrapper {
	  flex-direction: column;
	}
  
	#wpcf7-f102-o1, .contact-info {
	  max-width: 100%; /* Full width for smaller screens */
	  flex: 1 1 100%; /* Flex-basis 100% for full-width sections */
	}
  }
  

  /********* All Properties ***********/

  .properties {
	/* margin-top: 7dvh; */
	/* display: block; */
	/* flex-direction: column; */
	margin-top: 7dvh !important;
	background-color: #f9f9f9;
  }

  .properties-top {
	/* margin-top: 200px; */
	padding-top: 10px;
  }

  .property-filter {
	margin-bottom: 20px;
	padding: 10px;
  }
  .property-filter label {
	margin-right: 15px;
	cursor: pointer;
  }
  
  #clear-filters {
	/* margin-left: 10px; */
	padding: 10px 20px;
	background: var(--nature-green);
	color: white;
	border: 1px solid #ccc;
	cursor: pointer;	
	border-radius: 10px;
	text-wrap: nowrap;
  }
  #clear-filters:hover {
	background: #ddd;
  }
  
  .listing-gallery {
	margin-top: 7vh;
	padding: 20px 0px;
	display: flex;
	margin-left: 2%;
	margin-right: 2%;
	align-items: start;
	justify-content: center;
	background-color: #f9f9f9;
  }

  .listing-gallery-left{
	flex-basis: 40%;
	margin-right: 1%;
  }

  .listing-gallery-right {
	flex-basis: 40%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	position: relative;
  }
  
  .listing-gallery-right img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 8px;

  }

  .listing-flex {
	padding-top: 20px;
	display: flex;
	margin-left: 3%;
	margin-right: 3%;
	flex-grow: 1;
  }

  .listing-details {
	flex-basis: 40%;
	margin-left: 10%;
  }

  .listing-calculator {
	flex-basis: 40%;
	position: relative;

  }

  /* .listing-calculator div {
	position: fixed;
  } */

  .listing-description {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	max-width: 700px;
	margin: auto;
	padding: 20px;
  }
  
  .listing-description h4 {
	margin-top: 1.2em;
	font-size: 1.1em;
	color: #103565;
  }
  
  .listing-description ul {
	padding-left: 20px;
	margin: 0.5em 0 1em;
  }
  
  .listing-description ul li {
	margin-bottom: 0.3em;
  }
  
  .full-description {
	display: none;
	margin-top: 1em;
  }

  .full-description ul li {
	margin-right: 20px;
	margin-left: 20px;
  }

  .open-album {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgb(255, 255, 255, 0.8);
    color: black;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    z-index: 10000;
    transition: background 0.3s ease;
}

.open-album:hover {
    filter: brightness(1.3);
	color: white;
}

  

  .toggle-btn {
	background: none;
	border: none;
	color: #8cc7ce;
	cursor: pointer;
	font-weight: bold;
	padding: 0;
	margin-top: 10px;
	display: inline-block;
  }

  .toggle-btn:hover {
	background: none;
  }

  #page > section > div.listing-flex > div.listing-details > button {
	background-color: none !important;
  }

  .calculator {
	padding-left: 20%;
	padding-right: 20%;
  }

  .calculating-div {
	display: flex;
	gap: 10px;
  }

  .calculating {
	background-color: var(--nature-green);
	width: 200px;
	margin: 20px auto;
	border-radius: 10px;
  }
  
  .calculating:hover {
	background-color: var(--nature-green-hover);
  }

  .amenities {
	font-family: Arial, sans-serif;
	padding: 20px;
  }
  
  .amenities h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
  }
  
  .amenities-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding-bottom: 40px;
	border-bottom: 1px solid #8cc7ce;;
  }
  
  
  .column {
	flex: 1;
  }
  
  .amenity {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 18px;
  }
  
  .amenity i {
	margin-right: 10px;
	font-size: 20px;
	color: #8cc7ce; /* Green color for icons */
  }
  
  .amenity:last-child {
	margin-bottom: 0;
  }
  

  .show-amenities-btn {
	padding: 10px 20px;
	background-color: transparent;
	color: black;
	font-size: 16px;
	margin-top: 20px;
	max-width: 210px;
	border-radius: 10px;
	cursor: pointer;
	border: 2px solid #8cc7ce; /* Added full border declaration */
	margin-left: 5%;
	font-weight: 400;
  }
  
  .amenities-popup {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: rgba(0,0,0,0.5);
  }
  
  .amenities-popup-content {
	background: #fff;
	margin: 50px auto;
	padding: 30px;
	border-radius: 8px;
	max-width: 700px;
	max-height: 90%;
	overflow-y: auto;
	position: relative;
  }
  
  .amenities-popup-content h3 {
	text-align: center;
	margin-bottom: 20px;
  }
  
  .amenities-popup-content h4 {
	margin-top: 20px;
	font-size: 18px;
	color: #8cc7ce;
  }
  
  .amenities-popup-content ul {
	margin: 10px 0;
	padding-left: 20px;
	list-style-type: disc;
  }
  
  .close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #888;
  }
  
  
  /* Mobile responsive (stack images vertically) */
  @media (max-width: 768px) {
	.listing-gallery-right {
	  grid-template-columns: 1fr;
	}

	.listing-flex {
	  flex-direction: column;
	}

	.listing-gallery {
		flex-direction: column;
	}

	.listing-gallery-left div a img {
		margin-bottom: 10px;
	}

	.listing-details {
		margin-left: 0px;
	}

	.house-rules {
		/* text-align: center; */
		/* flex-direction: row; */
		margin-left: auto;
		margin-right: auto;
	}

  }
  

  .house-rules {
	font-family: Arial, sans-serif;
	padding: 10px 20px;
  }
  
  .house-rules h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
  }
  
  .rules-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
  }
  
  .column {
	flex: 1;
  }
  
  .rule {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 18px;
  }
  
  .rule i {
	margin-right: 10px;
	font-size: 20px;
	color: #8cc7ce;
  }
  
  .cancellation-policy h4 {
	font-size: 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
  }
  
  .cancellation-policy h4 i {
	margin-right: 10px;
	font-size: 20px;
	color: #8cc7ce;
  }
  
  .cancellation-policy p {
	font-size: 16px;
	margin: 5px 0;
  }

  .cancellation-policy p:last-of-type {
	padding-bottom: 40px;
	/* border-bottom: 1px solid #8cc7ce; */
  }


  .guest-reviews {
	font-family: Arial, sans-serif;
	padding: 20px;
	/* border-top: 1px solid #ddd; */
  }
  
  .guest-reviews h3 {
	text-align: center;
	margin-bottom: 15px;
	font-size: 24px;
  }
  
  .average-rating {
	text-align: center;
	margin-bottom: 25px;
	font-size: 18px;
  }
  
  .average-rating i {
	color: #f5a623;
	margin-left: 5px;
  }
  
  .review {
	background-color: #f9f9f9;
	border-left: 4px solid #8cc7ce;
	padding: 15px;
	border-radius: 8px;
	margin: 0 auto;
	max-width: 700px;
  }
  
  .positive-comment {
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 1.5;
  }
  
  .review-footer {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	/* color: #555; */
  }
  
  .review-footer .rating i {
	color: #f5a623;
	margin-left: 4px;
  }

  .guest-reviews {
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 20px;
	border-bottom: 1px solid #8cc7ce;
	border-top: 1px solid #8cc7ce;
	padding-top: 3%;
	padding-bottom: 3%;
  }
  
  @media (max-width: 768px) {
	.review-footer {
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 5px;
	}
  }
  
  
  /* Responsive for small screens */
  @media (max-width: 768px) {
	.rules-container {
	  flex-direction: column;
	}

	.property-card {
		margin-top: 200px;
	}

	#clear-filters {
		width: 150px;
	}
  }
  

