:root {
	--primary-color: #384029;  /* Dark olive green from logo */
	--secondary-color: #ffffff; /* White */
	--accent-color: #626B58;   /* Lighter olive green */
	--text-color: #333333;
	--light-bg: #F5F5F5;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text-color);
	line-height: 1.6;
}

.navbar {
	background-color: var(--primary-color);
	padding: 0.5rem 0;
	height: 80px; /* Fixed height for navbar */
}

/* Logo styling */
.navbar-brand {
	position: relative;
	padding: 0;
	margin: 0;
}

.navbar-brand img {
	height: 120px; /* Adjust based on your logo size */
	width: auto;
	position: absolute;
	top: -20px; /* Makes logo "hang" below navbar */
	left: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

/* Navigation items styling */
.navbar-nav {
	margin-left: auto;
	padding-right: 1rem;
}

.navbar-nav .nav-item {
	margin: 0 0.5rem;
}

.navbar-nav .nav-link {
	color: var(--secondary-color) !important;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--secondary-color) !important;
}

/* Active nav item */
.navbar-nav .nav-item.active .nav-link {
	background-color: rgba(255, 255, 255, 0.2);
}

.navbar-light .navbar-toggler {
	border-color: var(--secondary-color);
}

.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .dropdown-toggle::after {
	margin-left: 0.5rem;
}

.navbar-nav .dropdown-menu {
	min-width: 150px;
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
	background-color: rgba(74, 80, 67, 0.1);
}

.navbar-nav .dropdown-item.active {
	background-color: rgba(74, 80, 67, 0.15);
	color: var(--primary-color);
	font-weight: 500;
}

section {
	padding: 6rem 0;  /* Increased padding */
}

h2 {
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 3rem;
	position: relative;
	display: block;  /* Changed from inline-block */
	text-align: center;
	width: 100%;
}

h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;  /* Center the line */
	transform: translateX(-50%);  /* Center the line */
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
}

h2.section-title {
	font-size: 2.0rem;
	text-align: center;
	position: relative;
	margin-bottom: 50px;
	color: var(--primary-color);
	display: inline-block;
	padding: 0 15px;
}

h2.section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg,
	transparent 0%,
	var(--primary-color) 50%,
	transparent 100%);
	opacity: 0.3;
}

.hero-slider {
	margin-top: 80px; /* Keep this for navbar spacing */
	max-height: 600px;
	overflow: hidden;
	position: relative;
}

.carousel-inner {
	height: 600px; /* Fixed height */
}

.carousel-item {
	height: 100%;
	background-color: var(--primary-color); /* Background color while images load */
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* This maintains aspect ratio while covering the area */
	object-position: center; /* Centers the image */
}

/* Optional: Add a subtle overlay to make text more readable if you add any */
.carousel-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
	pointer-events: none;
}

/* Enhance carousel controls */
.carousel-control-prev,
.carousel-control-next {
	width: 5%;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
	opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(0,0,0,0.3);
	padding: 2rem;
	border-radius: 50%;
}

/* Optional: Add animation for slide transitions */
.carousel-item {
	transition: transform 0.6s ease-in-out;
}

.amenity-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.gallery-item {
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 8px;
	overflow: hidden;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.activity-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
	border-left: 5px solid var(--primary-color);
	box-shadow: 0 3px 15px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-card .quote-icon {
	color: var(--primary-color);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	opacity: 0.3;
}

.testimonial-card .testimonial-text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: #555;
	flex-grow: 1;
}

.testimonial-card .testimonial-author {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-card .author-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--light-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-card .author-image i {
	color: var(--primary-color);
	font-size: 1.5rem;
	opacity: 0.5;
}

.testimonial-card .author-info {
	flex-grow: 1;
}

.testimonial-card .author-name {
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
	font-size: 1rem;
}

.testimonial-card .author-location {
	color: #777;
	font-size: 0.9rem;
	margin: 0;
}

.testimonial-card .rating {
	color: #ffc107;
	font-size: 0.8rem;
	margin-top: 0.5rem;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	padding: 0.75rem 2rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

.form-control {
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(0,0,0,0.1);
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(74, 80, 67, 0.25);
}

footer {
	background-color: var(--primary-color);
	color: var(--secondary-color);
	padding: 3rem 0;
}

/* Section backgrounds */
.bg-light {
	background-color: var(--light-bg) !important;
	background-image: linear-gradient(to right, rgba(74, 80, 67, 0.05) 1px, transparent 1px),
	linear-gradient(to bottom, rgba(74, 80, 67, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
}

/* Modal styling */
.modal-content {
	border-radius: 15px;
	border: none;
}

.modal-body {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#modalImage {
	max-height: 90vh;
	object-fit: contain;
}

.modal-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.modal-nav-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.prev-btn {
	left: 20px;
}

.next-btn {
	right: 20px;
}

.modal-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	font-size: 1.2rem;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.modal-header {
	background-color: var(--primary-color);
	color: white;
	border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
	color: white;
}

.form-label {
	font-weight: 500;
	color: var(--primary-color);
}

.card {
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 10px;
}

/* Custom section spacing */
.section-title {
	text-align: center;
	margin-bottom: 4rem;
}

/* Contact Section Styling */
.contact-info {
	padding: 2rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	flex-shrink: 0;
}

.contact-icon i {
	color: white;
	font-size: 1.2rem;
}

.contact-details h5 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact-details p {
	margin-bottom: 0;
	color: #666;
}

.contact-details a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-details a:hover {
	color: var(--accent-color);
}

/* Form Styling */
.contact-form {
	padding: 2rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
}

.input-group-text {
	background-color: var(--primary-color);
	border: none;
	color: white;
}

.form-control {
	border: 1px solid rgba(0,0,0,0.1);
	padding: 0.75rem;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(74, 80, 67, 0.25);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	padding: 0.75rem 2rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

/* Form validation styling */
.form-control:focus {
	box-shadow: none;
	border-color: var(--primary-color);
}

.was-validated .form-control:invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid {
	border-color: #198754;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.alert {
	margin-top: 1rem;
	transition: all 0.3s ease;
}

.social-link {
	color: var(--secondary-color);
	font-size: 1.5rem;
	transition: all 0.3s ease;
	display: inline-block;
	padding: 0.5rem;
}

.social-link:hover {
	color: var(--secondary-color);
	transform: translateY(-3px);
	opacity: 0.8;
}

.social-link i {
	transition: all 0.3s ease;
}

.social-link:hover i {
	text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.back-to-top {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	border: none;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background-color: var(--accent-color);
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
	font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.navbar-brand img {
		height: 100px; /* Slightly smaller logo on mobile */
		top: -15px;
	}

	.navbar-collapse {
		background-color: var(--primary-color);
		padding: 1rem;
		border-radius: 8px;
		margin-top: 60px; /* Increased margin to avoid logo overlap */
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.navbar-nav .nav-item {
		margin: 0.25rem 0;
	}

	/* Optional: Add a subtle animation for the dropdown */
	.navbar-collapse {
		transition: all 0.3s ease;
		opacity: 0;
		transform: translateY(-10px);
	}

	.navbar-collapse.show {
		opacity: 1;
		transform: translateY(0);
	}

	.navbar-toggler {
		border: none;
		padding: 0.5rem;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar-nav .dropdown-menu {
		background-color: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		text-align: center;
	}

	.navbar-nav .dropdown-item {
		color: var(--secondary-color);
	}

	.navbar-nav .dropdown-item:hover,
	.navbar-nav .dropdown-item.active {
		background-color: rgba(255, 255, 255, 0.1);
		color: var(--secondary-color);
	}

	.ms-lg-auto {
		margin-top: 0.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 0.5rem;
	}
}

@media (max-width: 768px) {
	.carousel-inner {
		height: 400px; /* Shorter height on mobile */
	}

	.contact-info, .contact-form {
		padding: 1.5rem;
	}

	.contact-item {
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}

	footer .col-md-6:first-child {
		margin-bottom: 1rem;
	}

	.back-to-top {
		bottom: 15px;
		right: 15px;
		width: 35px;
		height: 35px;
	}
}

.container {
	max-width: 1140px;
}

/* Date input styling */
input[type="date"] {
	position: relative;
	padding: 0.375rem 0.75rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	right: 10px;
	cursor: pointer;
}

.partner_logo {
	max-height: 50px;
	height: auto;
}
