/* Hero Section */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 5%;
	position: relative;
	background-image: url('../images/hero-background.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.hero-section::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(6, 52, 26, 0.45);
	backdrop-filter: contrast(1.1) brightness(1.1);
}

.hero-content {
	flex: 1;
	padding-left: 51%;
	text-align: right;
	position: relative;
}

.hero-subtitle {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--secondary-color);
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
	text-shadow: 0 0 40px var(--bg-color);
}

.hero-content h1 {
	font-family: "Playfair Display", serif;
	font-size: 4rem;
	margin-bottom: 1.5rem;
	color: var(--primary-lighter);
	line-height: 1.2;
	font-weight: 600;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	line-height: 1.8;
	color: var(--primary-color);
	max-width: 82%;
	margin-left: auto;
	text-shadow: 0 0 40px var(--bg-color);
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
		max-width: 100%;
	}
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 992px) {
	.hero-section {
		flex-direction: column;
		height: auto;
		padding: 3rem 5%;
	}

	.hero-content {
		width: 100%;
		padding-left: 0;
		text-align: center;
		display: flex;
    	flex-direction: column;
    	justify-content: center;
		align-items: center;
	}

	.hero-content button, .hero-content a[role="button"] {
		width: fit-content;
	}

	.hero-content p {
		margin-left: auto;
		margin-right: auto;
		max-width: 90%;
	}

	.hero-subtitle {
		display: none;
	}

	.hero-section:before {
		mix-blend-mode: multiply;
		background: linear-gradient(transparent, rgba(6, 52, 26, 0.9) 50%);
	}
}

/* Testimonials */

.testimonials-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 0 3rem;
}

.testimonial-carousel {
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
	min-height: 220px;
	border-radius: 8px;
}

.testimonial-slide {
	display: flex;
	align-items: center;
	width: 100%;
	opacity: 0;
	position: absolute;
	transition: opacity 0.7s ease;
	padding: 2rem;
}

.testimonial-slide.active {
	opacity: 1;
	position: relative;
}

.testimonial-author {
	flex: 0 0 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-right: 2.5rem;
	border-right: 1px solid #e3d9bf;
}

.author-image {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1.2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 3px solid white;
}

.author-info {
	text-align: center;
}

.author-info h4 {
	color: #124734;
	margin-bottom: 0.3rem;
	font-weight: 500;
	font-size: 1.15rem;
}

.author-info p {
	color: #777;
	font-size: 0.85rem;
	position: relative;
	padding-bottom: 0.8rem;
}

.author-info p:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 1px;
	background-color: #e3d9bf;
}

.testimonials hgroup > h2 {
	margin-bottom: 1.5rem;
}

.testimonials hgroup > h2::after, .our-accomodations hgroup > h2::after {
	content: none;
}

.testimonial-content {
	flex: 0 0 70%;
	padding-left: 2.5rem;
	position: relative;
}

.testimonial-text {
	font-style: italic;
	color: #333;
	font-size: 1.05rem;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.testimonial-quote {
	display: block;
	color: #e3d9bf;
	font-size: 5rem;
	line-height: 0;
	margin-bottom: 1rem;
	font-family: Georgia, serif;
	position: absolute;
	top: -1.5rem;
	left: 1rem;
	z-index: 0;
	opacity: 0.4;
	user-select: none;
}

.testimonial-nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 30%;
	transform: translateY(-50%);
	left: 0;
	z-index: 10;
	pointer-events: none;
}

.nav-arrow {
	background-color: rgba(255, 255, 255, 0.9);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #124734;
	font-weight: bold;
	font-size: 1.3rem;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	pointer-events: auto;
	border: 1px solid rgba(227, 217, 191, 0.3);
}

.nav-arrow:hover {
	background-color: #fff;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
	color: #0d3526;
}

.nav-prev {
	left: -22px;
	position: absolute;
}

.nav-next {
	right: -22px;
	position: absolute;
}

.testimonial-indicators {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ddd;
	margin: 0 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background-color: #124734;
	transform: scale(1.3);
}

.our-accomodations {
	background-color: var(--primary-lighter);
}

.our-accomodations hgroup {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.see-more {
	color: #124734;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 0.5rem 2.5rem;
    transition: all 0.3s ease;
}

.see-more::after {
	content: " →";
	position: absolute;
	transform: translateX(10px);
	transition: transform 0.3s ease-out;
}

.see-more:hover::after {
	transform: translateX(20px);
}

.our-accomodations h2 {
	text-align: left;
}

.our-accomodations h2::after {
	left: 0;
	transform: none;
}

.rooms-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.room-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 15px 30px #e3d9bf;
	transition: all 0.4s ease;
	position: relative;
}

.room-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px #e3d9bf;
}

.room-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.room-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	border: 10px solid white;
}

.room-card:hover .room-image img {
	transform: scale(1.08);
}

.room-tag {
	position: absolute;
    top: 1.3rem;
    right: 1.2rem;
	background-color: rgba(18, 71, 52, 0.85);
	color: white;
	padding: 0.4rem 0.8rem;
	font-size: 0.8rem;
	border-radius: 20px;
	font-weight: 500;
}

.room-info {
	padding: 1.8rem;
}

.room-name {
	font-size: 1.5rem;
	color: #124734;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.room-description {
	color: #555;
	margin-bottom: 1.2rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.room-price {
	color: #124734;
	font-weight: 600;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
}

.price-period {
	font-size: 0.9rem;
	font-weight: 400;
	color: #777;
}

@media (max-width: 768px) {
	.our-accomodations hgroup {
		flex-direction: column;
    	margin-bottom: 2.9rem;
		align-items: flex-end;
	}

	.rooms-container {
		grid-template-columns: 1fr;
	}

	.testimonial-slide {
		flex-direction: column;
	}

	.testimonial-author {
		flex: 0 0 100%;
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}

	.testimonial-content {
		flex: 0 0 100%;
		padding-left: 0;
	}

	.testimonial-text {
		font-size: 0.95rem;
		text-align: center;
	}

	.testimonials-container {
		padding: 0 2rem;
	}
}

/* Facilities Section */

.facilities {
	background-color: var(--bg-color);
	margin-bottom: 20px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 2.7rem;
}

.facilities h2 {
	color: var(--primary-lighter);
}

.facilities-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.facility {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 160px;
	text-align: center;
	transition: all 0.3s ease;
}

.facility-icon {
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-size: 28px;
	border: solid 3px var(--primary-color);
}

.facility-name {
	color: var(--primary-lighter);
	font-family: "Montserrat", sans-serif;
	margin-top: 2px;
	margin-bottom: 0.3rem;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5rem;
}

/* Nearby Attractions */

.nearby-attractions h2,
.our-location h2 {
	font-size: 2.5rem;
	font-weight: 100;
}

.nearby-attractions p,
.our-location p {
	color: black;
	line-height: 1.4rem;
}

.nearby-attractions .subtitle,
.our-location .subtitle {
	color: var(--secondary-color);
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	font-weight: 800;
	text-align: center;
}

.nearby-attractions hgroup > .description {
	text-align: center;
	margin-bottom: 1.8rem;
}

.nearby-attractions .attractions-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.nearby-attractions .attraction-card {
	width: 260px;
	text-align: center;
	padding: 20px;
	border-radius: 5px;
	transition: transform 0.3s;
}

.nearby-attractions .attraction-card:hover {
	transform: translateY(-10px);
}

.nearby-attractions .attraction-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 5px;
	margin-bottom: 15px;
}

.nearby-attractions h3	{
	color: #0d422c;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.attraction-distance {
	color: var(--secondary-color);
	font-weight: bold;
	margin-bottom: 10px;
}

.attraction-desc {
	font-size: 0.9rem;
	color: #555;
}

#location p {
	color: black;
}

/* Location Section */

.our-location {
	margin-bottom: 2.7rem;
}

.location-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5em;
}

.location-content {
	flex: 1;
	padding-right: 40px;
}

.location-map {
	flex: 1;
	height: 400px;
	border-radius: 5px;
	overflow: hidden;
}

.location-list {
	list-style: none;
	margin: 20px 0;
}

.location-item {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.location-icon {
	margin-right: 15px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	font-size: 1.2rem;
}

.location-text {
	flex: 1;
	color: black;
}

.location-highlight {
	color: #0d422c;
	font-weight: bold;
}

.our-location a[role="button"] {
	border-radius: 3px;
}

/* Responsive */
@media (max-width: 992px) {
	.location-container {
		flex-direction: column;
	}

	.location-content {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.location-map {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 2rem;
	}
}
