:root{
  /* Resort design tokens (map to Tailwind theme) */
  --resort-bg: #F8F8F6;
  --resort-primary: #5E7553;    /* buttons, CTAs */
  --resort-secondary: #A4B787;  /* secondary surfaces */
  --resort-accent: #C7A47B;     /* highlights */
  --resort-text: #2E2E2E;       /* headings */
  --resort-subtext: #444444;    /* paragraph text */
  --resort-border: #E3E3E3;     /* subtle borders */
  --resort-hover: #8DBDB5;      /* gentle hover tint */
  --resort-contrast: #ffffff;   /* high-contrast surface/text */
  /* Booking-specific tokens */
  --resort-booked: #b91c1c;     /* reserved / booked — warm red */
  --resort-available: #0b6623;  /* available — deep green */
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  background-color: var(--resort-bg);
  color: var(--resort-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--resort-text);
}

p, span, div, button, input, textarea, select, a {
  font-family: 'Montserrat', sans-serif;
}

.font-sans {
    font-family: 'Montserrat', sans-serif !important;
}

.font-serif {
    font-family: 'Playfair Display', serif !important;
}

.font-tinos {
  font-family: 'Tinos', serif !important;
}

header {
	background: none;
	padding: 5px;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

i {
	padding: 5px;
}

.contact-info {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 10;
	padding: 10px;
	border-radius: 5px;
}

.contact-details {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.phone-number,
.email {
	margin: 0;
	font-size: 18px;
	color: var(--resort-contrast);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}

.phone-number {
	margin-right: 10px;
}

.email-link {
	color: white;
	text-decoration: underline;
}

.email-link:hover {
	color: var(--resort-accent);
	text-decoration: none;
}

.logo-resort {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.logo-image {
    width: 250px;
    height: 80px;
    display: block;      /* makes margin auto work */
    margin: 5% auto 0;   /* top 5%, horizontal auto, bottom 0 */
}

.menu-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  z-index: 1050;
  cursor: pointer;
}

.menu-icon:hover {
  background-color: var(--resort-secondary) !important;
}

.menu-icon.scrolled {
  background-color: var(--resort-primary);
  color: #ffffff;
}

/* Circular text SVG */
.circular-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  color: #ffffff !important;
}

/* Letter spacing */
.circular-text text {
  letter-spacing: 2px; /* spacing between letters */
  dominant-baseline: middle; /* vertical alignment along path */
  color: whitesmoke;
}

/* Center icon in the circle */
.circular-menu-icon {
  position: absolute;
  top: 50%;
  left: 50%;
}
.circular-menu-icon i {
  color: var(--resort-contrast);
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translate(-50%, -50%); /* initial centering */
}
.menu-icon:hover .circular-menu-icon i {
  transform: translate(-50%, -50%) rotate(15deg); /* combine translate + rotate */
}

/* Rotate icon on scroll if needed */
.menu-icon.scrolled .circular-menu-icon i {
  transform: translate(-50%, -50%) rotate(0deg); /* keep centered while rotating */
}

.bottom-text {
	position: absolute;
	text-align: center;
	width: 90%;
	bottom: 20px;
	left: 20px;
}

.chat-bubble {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 1000;
}

.bubble-bg {
	background-color: rgba(199,164,123,0.08); /* gentle warm tint using accent */
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 8px 24px rgba(46,46,46,0.06);
	transition: transform 0.28s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease;
}

.bubble-bg:hover {
	transform: translateY(-4px) scale(1.06);
	box-shadow: 0 14px 40px rgba(46,46,46,0.10);
}

.chat-link {
	text-decoration: none;
	color: var(--resort-contrast);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.chat-icon {
	font-size: 30px;
	margin-bottom: 2px;
	margin-top: 20px;
}

.chat-text {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bubble-bg:hover .chat-text {
	opacity: 1;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.678);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
	}
}

.center-lines {
	position: absolute;
	width: 2px;
	height: 40px;
	background-color: var(--resort-contrast);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.center-lines::before,
.center-lines::after {
	content: "";
	display: block;
	width: 2px;
	height: 40px;
	background-color: var(--resort-contrast);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(30deg);
}

#menu-icon.active:before {
	/* content: '\2716'; */
	transform: rotate(0deg);
}

#video-section {
	position: relative;
	height: 85%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

#video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#video-container video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.content-section {
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	margin-top: 5%;
	margin-bottom: 8%;
	position: relative;
	z-index: 1;
}

.content-section h2 {
	color: var(--resort-primary);
}

.content-section p {
	color: var(--resort-subtext);
	line-height: 1.5;
}

/* Section 2 */

.section-heading {
	text-align: left;
	margin-top: 50px;
	margin-bottom: 20px;
	margin-left: 3%;
	color: var(--resort-primary);
	font-family: 'Playfair Display', serif;
}

.row-container {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-left: 50px;
}

.para-padding {
	padding-top: 10px;
	padding-bottom: 60px;
	max-width: 90%;
}

.column {
	flex: 1;
}

.image-column {
	order: 1;
}

.text-column {
	order: 2;
	padding: 0 20px;
	text-align: center;
	margin-top: 100px;
}

.carousel-icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-text {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: -3px;
	font-family: 'Exo', sans-serif;
	font-weight: bolder;
	font-size: 20px;
}

.column-image {
	/* width: 100%;
    height: auto; */
	width: 720px !important;
	height: 550px !important;
}

.image-column-up {
	order: 3;
	margin-top: -40px;
}

.same-line {
	display: flex;
}

/*Section 3*/

.image-carousel {
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.carousel-image {
	width: 100%;
	height: 600px;
	display: none;
}

.floating-button {
	position: absolute;
	top: 75%;
	transform: translateY(-50%);
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.5);
	color: var(--resort-contrast);
	padding: 10px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}

.floating-button1 {
	left: 30%;
}

.floating-button2 {
	right: 30%;
}

.image-counter {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
	color: var(--resort-contrast);
	font-size: 30px;

}

/* Explore section enhancements */
.explore-slide { position: relative; overflow: hidden; }
.explore-image { transition: transform 1.2s cubic-bezier(.2,.9,.2,1); will-change: transform; }
.explore-content { transform: translateZ(0); }

/* slight zoom on active slide to make parallax more pronounced */
.swiper-slide-active .explore-image { transform: scale(1.04); }

/* floating svg animation */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-12px) rotate(-3deg); } 100% { transform: translateY(0px); } }
.animate-float { animation: float 6s ease-in-out infinite; }

/* Progress bar appearance */
.explore-progress {
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	background: linear-gradient(45deg, var(--resort-primary), var(--resort-accent));
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .explore-image { height: 50vh !important; }
  .swiper-slide .lg\:col-span-5 { padding-top: 1rem; padding-bottom:1rem; }
}

@media (max-width: 768px) {
	header {
		flex-direction: column;
		text-align: center;
	}

	.content-section {
		padding: 10px;
		margin: 5px;
	}

	.contact-info {
		left: 10px;
		top: 10px;
	}

	.contact-details {
		flex-direction: column;
		align-items: flex-start;
	}

	.phone-number {
		margin-right: 0;
		margin-bottom: 5px;
	}

	.phone-number,
	.email {
		font-size: 15px;
	}

	.logo-image {
		margin-top: 100px !important;
		height: 50px;
		width: 130px;
		
	}

	#menu-icon {
		order: 2;
		align-self: flex-end;
	}

	#logo-resort {
		order: 3;
		margin-top: 0px !important;
	}

	#logo-resort h1 {
		margin: 0;
		padding: 0;
		font-size: medium;
	}

	#video-section {
		max-height: 75%;
	}

	.bottom-bubble-text {
		width: 90%;
		left: 5%;
		bottom: 5%;
	}

	.bubble {
		padding: 7%;
		width: 30px;
		font-size: 12px;
	}

	.image-column {
		min-width: 90%;
	}

	.text-column {
		order: 3;
	}

	.image-column-up {
		order: 2;
		min-height: 100%;
		margin-left: 10px;
	}

	.carousel-icon-container i {
		margin: 0 5px;
	}

	.floating-button {
		font-size: 14px;
	}

	.row-container {
		flex-wrap: wrap;
	}

	.column {
		flex-basis: 80%;
	}

	.image-column-up {
		order: 3;
		width: 100%;
		margin-top: 20px;
	}

	.content-section {
		padding: 10px;
	}

	#carousel1 .column.image-column {
		margin-bottom: 20px;
	}

	.column-image {
		width: 100% !important;
		height: auto !important;
	}

	.image-column-up img {
		width: 100%;
		max-height: 50vh;
		/* Adjusted the max-height for improved image size */
	}

	#menu-options .sub-menu {
		position: absolute;
		/* Change to static positioning for small screens */
		display: contents !important;
		/* Show submenu items */
		background-color: transparent;
		/* Reset background color */
		border-radius: 0;
		/* Reset border radius */
		top: 0 !important;
	}

	.review-info {
		text-align: center;
		/* Align content at center for small screens */
	}

	.reviewer-name {
		text-align: center;
		/* Align reviewer name at center for small screens */
	}

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

	.customer-image-round {
		margin: 0 auto 10px auto;
		/* Center customer image */
	}

	.review-content {
		padding: 15px;
		/* Reduce padding for small screens */
	}

	.review-images {
		justify-content: center;
	}

	.review-image {
		width: 100px;
		/* Adjust image size for small screens */
		height: 100px;
		/* Adjust image size for small screens */
		margin: 5px;
		/* Adjust margin for small screens */
	}

	.same-line {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

}

.menu-container {
	position: fixed;
	height: 100vh;
	width: 100%;
	background: linear-gradient(180deg, rgba(164,183,135,0.18), rgba(94,117,83,0.12));
	top: 0;
	left: 0;
	z-index: 1000;
	color: var(--resort-contrast);
	display: none;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(6px);
	overflow-y: auto;
}

.main-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.main-menu>li {
	position: relative;
	margin-bottom: 20px;
}

.main-menu>li>span {
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.main-menu>li:hover>span {
	background-color: var(--resort-bg);
	color: var(--resort-text);
}

.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--resort-contrast);
	border-radius: 15px;
	padding: 15px;
	min-width: 200px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.main-menu>li:hover .sub-menu {
	display: block;
	animation: fadeIn 0.3s ease-out;
}

.sub-menu li {
	margin-bottom: 10px;
}

.sub-menu li:last-child {
	margin-bottom: 0;
}

.sub-menu a {
	display: block;
	padding: 8px 15px;
	color: var(--resort-text);
	text-decoration: none;
	font-size: 16px;
	transition: all 0.2s ease;
	border-radius: 8px;
}

.sub-menu a:hover {
	background-color: var(--resort-bg);
	color: var(--resort-text);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px) translateX(-50%);
	}

	to {
		opacity: 1;
		transform: translateY(0) translateX(-50%);
	}
}

/* Responsive design */
@media (max-width: 768px) {
	.menu-container {
		padding-top: 120px;
	}
	
	.main-menu {
		width: 100%;
		padding: 20px;
	}
	
	.logo-resort {
		z-index: 101;
	}
	
	.resort-title {
		pointer-events: none;
	}

	.action-container {
		bottom: 70px;
		right: 10px;
		gap: 10px;
		flex-direction: column;
		align-items: flex-end;
	}


}

/* Scrollbar colors using theme */
::-webkit-scrollbar-track {
	background: var(--resort-bg);
}

::-webkit-scrollbar-thumb {
	background: rgba(44,44,44,0.25); /* subtle thumb using neutral */
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(44,44,44,0.35);
}

/* dots & neutral indicators */
.dot { background-color: var(--resort-border); }
.dot.active { background-color: var(--resort-subtext); }

/* small neutral text & card colors */
.highlight-card {
    background: var(--resort-bg);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 200px;
    border: 1px solid var(--resort-border);
}

.highlight-card h4 { color: var(--resort-text); }
.highlight-card p { color: var(--resort-subtext); }

/* subtle icon / meta color */
.contact-options h2 i,
.location-details h2 i,
.contact-options h3 i,
.location-details h3 i {
	color: var(--resort-border);
}

/* reviewer name use accent rather than gold for cohesion */
.reviewer-name { color: var(--resort-accent) !important; }

/* replace light separators with theme border */
.highlight-item { border-right: 1px solid var(--resort-border); }

.highlight-content p,
.highlight-desc,
.service h3,
.content-section p,
.review-rating p,
.highlight-card p {
    color: var(--resort-subtext);
}

/* gallery hover shadow tuned to theme */
.gallery-item:hover { box-shadow: 0 18px 50px rgba(46,46,46,0.06); }

/* small neutral overrides */
.highlight-icon { color: var(--resort-primary); }

/* ensure map-frame border uses theme */
.map-frame { border: 1px solid var(--resort-border); background: var(--resort-bg); }

/* footer / secondary surfaces stay subtle using secondary */
footer { background: linear-gradient(180deg, rgba(164,183,135,0.06), rgba(248,248,246,0.06)); }

/* keep transitions consistent */
* { transition: color 0.18s ease, background 0.18s ease; }

.action-container {
	position: fixed;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	/* margin: 0 10px; */
	margin-bottom: 10px;
	z-index: 100;
}

.action-button {
	width: 90px;
	height: 50px;
	margin-right: 5px;
	border: none;
	background: var(--resort-primary);
	color: var(--resort-contrast);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	z-index: 101;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(94,117,83,0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.action-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 50px rgba(94,117,83,0.10);
	background: linear-gradient(45deg, var(--resort-primary), var(--resort-accent));
}

.btn-enquire {
	background: linear-gradient(45deg, var(--resort-primary), var(--resort-accent)) !important;
	color: var(--resort-contrast);
}

.icon-button {
	width: 60px;
	height: 60px;
	margin-right: 10px;
	border: none;
	border-radius: 50%;
	background: var(--resort-accent);
	color: var(--resort-contrast);
	font-size: 40px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 101;
	box-shadow: 0 10px 30px rgba(46,46,46,0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.icon-button:hover {
	transform: translateY(-4px) scale(1.03);
	filter: brightness(1.03);
}

.btn-whatsapp {
	background: #41e37a;
}

.icon-button svg {
	width: 40px;
	height: 40px;
}

.text-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.6;
	padding: 20px;
}

.text-container-2 {
	max-width: 200px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.6;
}

#carousel-container {
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
}

.row-container {
	flex: 0 0 auto;
	display: flex;
	flex-direction: row;
	margin-right: 20px;
}

.column {
	flex: 1;
}

.column .text-column h3 {
	margin-top: 500px;
}

.image-column-up {
	overflow-x: hidden;
}

.review {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 100%;
	box-sizing: border-box;
	padding: 20px;
	transform: translateY(0);
	box-shadow: 0 10px 30px rgba(94,117,83,0.06);
	border-radius: 12px;
	background: var(--resort-contrast);
}

.review:hover {
	transform: translateY(-6px);
}

.review-info {
	margin: auto;
}

.reviewer-name {
	color: var(--resort-accent) !important;
}

.review-rating {
	text-align: center;
	color: #333;
}

.review-rating h3 {
	margin-bottom: 10px;
}

.review-rating p {
	text-align: justify;
	color: var(--resort-subtext);
}

.customer-image-round {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	margin: 10px;
}

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

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

.review-content {
	display: block;
	align-items: center;
	justify-content: space-between;
	max-width: 800px;
	padding: 30px;
}

.review-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}

.review-image {
	width: 150px;
	height: 150px;
	margin: 10px;
	border-radius: 5px;
}

.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.service {
	width: 400px;
	height: 300px;
	margin: 20px;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 50px rgba(46,46,46,0.06);
}

.service-image {
	width: 100%;
	height: 100%;
	max-height: 266px;
	object-fit: cover;
}

.service h3 {
	margin: 0;
	/* Add this to remove default margin */
	padding: 10px;
	/* Add padding to create space between text and image */
	text-align: center;
	/* Center-align the text */
	color: var(--resort-subtext);
}

/* Location Details */
.content-section-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 10px;
	background-color: var(--resort-contrast);
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(46,46,46,0.04);
}

.contact-options {
	margin-left: 10px;
}

.contact-options,
.location-details,
.map-container {
	flex: 1;
	min-width: 200px;
	padding: 10px;
	background-color: var(--resort-bg);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--resort-border);
}

.contact-options h2,
.location-details h2,
.contact-options h3,
location-details h3 {
	color: var(--resort-primary);
	margin-bottom: 10px;
	font-family: 'Playfair Display', serif;
}

.contact-options p,
.location-details p {
	color: var(--resort-subtext);
	margin-bottom: 15px;
	line-height: 1.5;
}

.contact-options h2 i,
.location-details h2 i,
.contact-options h3 i,
.location-details h3 i {
	margin-right: 10px;
	color: var(--resort-border);
}

/* Map Container and Frame Styles */
.map-container {
	position: relative;
	overflow: hidden;
}

.map-frame {
	position: relative;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(46,46,46,0.06);
	border: 1px solid var(--resort-border);
	background: var(--resort-bg);
}

.map-frame:before,
.map-frame:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-size: cover;
}

.map-frame:before {
	top: -10px;
	left: -10px;
}

.map-frame:after {
	top: -10px;
	right: -10px;
}

.map-frame iframe {
	width: 100%;
	height: 350px;
	border: none;
	border-radius: 5px;
}

.p-20 {
	padding: 20px;
}

.fs-30 {
	font-size: 30px;
}

/* Hide the default scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--resort-bg);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(44,44,44,0.25); /* subtle thumb using neutral */
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(44,44,44,0.35);
}

.slider {
	position: relative;
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
}

.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	flex: 0 0 auto;
}

.dots-container {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.dot {
	height: 15px;
	width: 15px;
	margin: 0 5px;
	background-color: var(--resort-border);
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
}

.dot.active {
	background-color: var(--resort-subtext);
}

.gallery-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px auto;
	width: 80%;
}

.gallery-item {
	width: 30%;
	margin-bottom: 20px;
	position: relative;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-item:hover .overlay {
	opacity: 0.08;
}

.gallery-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 50px rgba(46,46,46,0.06);
}

.gallery-item img {
	width: 100%;
	height: auto;
}

.image-caption {
	margin-top: 100px;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity .3s;
}

.overlay h3 {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.section2-heading {
	font-size: 30px !important;
}

/* Image and text scroll */

.content-section-txt-img {
	height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.text-column-left {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.text-content-right {
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	position: absolute;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
	filter: blur(20px);
}

.text-content-right.active {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

.text-content-right.exit {
	opacity: 0;
	transform: translateY(-50px);
	filter: blur(20px);
}

.image-column-right {
	flex: 1;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.image-wrapper-right {
	width: 80vmin;
	height: 80vmin;
	position: relative;
	overflow: hidden;
}

.image-wrapper-right img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.5s ease;
	opacity: 0;
}

.image-wrapper-right img.active {
	opacity: 1;
}

/* Review card styling */
.line-clamp-5 {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	line-clamp: 5; /* standard property for compatibility */
	-webkit-box-orient: vertical;
	box-orient: vertical;
	overflow: hidden;
}

.review-text-container {
	height: 140px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--resort-accent);
	opacity: 0.32;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	width: 30px;
	border-radius: 5px;
}

.swiper-container {
	overflow: visible;
	padding-bottom: 50px;
}

@media (max-width: 768px) {
	.review-text-container {
		height: 120px;
	}
}

/* For the location section */
@keyframes spin-slow {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.animate-spin-slow {
	animation: spin-slow 30s linear infinite;
}

/* Improve map container responsiveness */
@media (max-width: 1024px) {
	.grid-cols-1>div[data-aos="fade-left"] {
		margin-top: 2rem;
	}
}

/* Subtle hover effects for location card */
.bg-gradient-to-r.from-\[\#c6897e\].to-\[\#867a6f\] {
	background-size: 200% 200%;
	background-position: 0% 0%;
	transition: background-position 0.5s ease-in-out;
}

.bg-gradient-to-r.from-\[\#c6897e\].to-\[\#867a6f\]:hover {
	background-position: 100% 0%;
}

/* Add to the bottom of your styles.css file */
/* Reduce paint operations by using hardware acceleration where possible */
.transform, 
.transition,
.animate-spin-slow,
.hover\:scale-105:hover {
  will-change: transform;
  transform: translateZ(0);
}

/* Reduce animation work for mobile devices */
@media (max-width: 768px) {
  .animate-spin-slow {
    animation-duration: 60s;
  }
  
  .transition {
    transition-duration: 0.5s;
  }
  
  /* Reduce or eliminate animations on mobile */
  .card-hover:hover {
    transform: scale(1.02);
  }
}

/* Add containment to reduce layout recalculations */
.carousel,
.slider,
#explore-carousel,
.content-section-txt-img {
  contain: content;
}

#day-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.airbnb-listing-highlights {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}
.airbnb-listing-highlights::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
}
.highlight-card {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--resort-bg);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 200px;
    border: 1px solid var(--resort-border);
}
.highlight-icon {
    font-size: 20px;
    background: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: var(--resort-primary);
}
.highlight-card h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--resort-text);
}
.highlight-card p {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--resort-subtext);
}

/* Home section of new card - show service quality */

.property-highlights {
    background: var(--resort-bg);
    margin: 1rem auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 28px rgba(46,46,46,0.04);
    border-radius: 12px;
    max-width: 1200px;
    border: 1px solid var(--resort-border);
}

.highlight-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 0 1rem;
}

.highlight-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-right: 1px solid var(--resort-border);
    position: relative;
    background: transparent;
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item:first-child {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.laurel {
    font-size: 1.25rem;
    color: var(--resort-accent);
    transform: rotate(10deg);
}

.laurel:last-child {
    transform: rotate(-10deg);
}

.highlight-text {
    font-weight: 600;
    margin: 0 0.5rem;
    color: var(--resort-text);
    font-size: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--resort-primary);
}

.highlight-content {
    flex: 1;
}

.highlight-content strong {
    font-size: 0.95rem;
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 0.85rem;
    color: var(--resort-subtext);
    margin: 0;
    line-height: 1.4;
}

.highlight-desc {
    font-size: 0.85rem;
    color: var(--resort-subtext);
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .highlight-container {
        flex-direction: column;
	display: grid;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 1rem 0;
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
    
    .highlight-item:first-child {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .highlight-badge {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}

.floating-action {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  color: var(--resort-contrast);
  background-color: var(--resort-accent);
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  cursor: pointer;
  font-size: 20px;
}

.calendar-modal {
  position: fixed;
  left: 40px;
  bottom: 86px;
  z-index: 10000;
  display: none;
  min-width: 320px;
  max-width: 420px;
  background: var(--resort-contrast);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  font-family: inherit;
}

.calendar-modal.open {
  display: block;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--resort-contrast);
  border-bottom: 1px solid var(--resort-border);
}

.calendar-loading, .calendar-empty { text-align: center; padding: 24px 0; color: var(--resort-subtext); }

/* Calendar day base */
.calendar-day {
  height: 40px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 4px;
  position: relative;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  color: var(--resort-text);
}
.calendar-day:disabled { cursor: default; opacity: 0.9; }
.calendar-day.past { background: var(--resort-border); color: rgba(0,0,0,0.45); }
.calendar-day.unavailable { background: var(--resort-booked); color: var(--resort-contrast); }
.calendar-day.available { background: var(--resort-available); color: var(--resort-contrast); }

/* Legend dot styles */
.legend-dot { width:10px; height:10px; border-radius:50%; display:inline-block; }
.legend-available { background: var(--resort-available); }
.legend-reserved { background: var(--resort-booked); }

/* Carousel indicator active style helper (for JS class toggles) */
.indicator.active { opacity: 1 !important; }
.bg-resort-accent { background-color: var(--resort-accent) !important; }




