/** @format */

* {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
	* {
		scroll-behavior: smooth;
	}
}

body {
	background-color: #ffffff;
	padding-top: 35px; /* Adjust based on navbar height */
}

@media (max-width: 767px) {
	body {
		padding-top: 90px; /* Adjust for mobile */
	}
}

a {
	text-decoration: none;
}

/* Beginning of navbar */
.navbar {
	background-color: rgba(
		255,
		255,
		255,
		0.1
	); /* Semi-transparent white for glassmorphism */
	backdrop-filter: blur(10px); /* Blur effect for glassmorphism */
	-webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
	border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for glassmorphism */
	/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); Subtle shadow for depth */
	font-family: Raleway, Roboto, sans-serif;
	transition: background-color 0.5s ease-in-out,
		backdrop-filter 0.5s ease-in-out,
		-webkit-backdrop-filter 0.5s ease-in-out, border 0.5s ease-in-out,
		box-shadow 0.5s ease-in-out; /* Smooth transition for all properties */
	position: fixed; /* Ensure navbar stays at the top */
	width: 100%; /* Full width */
	top: 0; /* Stick to the top */
	z-index: 1000; /* Ensure it stays above other content */
}

.navbar.scrolled {
	background-color: #ffffff; /* Solid white background when scrolled */
	backdrop-filter: none; /* Remove blur when scrolled */
	-webkit-backdrop-filter: none; /* Remove blur for Safari */
	border-bottom: none; /* Remove border when scrolled */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adjust shadow for solid background */
}

.navbar-brand {
	transition: 0.5s ease-in;
}

.navbar-brand:hover {
	transform: scale(0.9);
}

.navbar-toggler i {
	background-color: transparent;
	border: none !important;
	transition: box-shadow 5s ease-in-out;
	color: #0b9538;
}

.navbar-toggler:focus {
	outline: none !important;
	box-shadow: none !important;
}

.navbar ul li {
	transition: 0.9s ease-in-out;
}

.navbar ul li a {
	color: #0b9538;
	font-size: 1.15rem;
}

.navbar ul li a:hover {
	color: #e9840c;
}

.navbar ul li:hover {
	transform: translateY(1px);
}

/* On mobile, always have a solid background without glassmorphism */
@media (max-width: 767px) {
	.navbar {
		background-color: #ffffff; /* Solid background on mobile */
		backdrop-filter: none; /* Remove glassmorphism on mobile */
		-webkit-backdrop-filter: none; /* Remove for Safari */
		border-bottom: none; /* Remove border */
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adjust shadow */
		position: fixed;
		top: 0; /* Ensure it stays at the top */
        width: 100%; /* Full width */
	}

	.navbar.scrolled {
		/*background-color: #ffffff; /* Ensure consistency */
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-bottom: none;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}

	.navbar ul li a {
		text-shadow: none; /* Remove shadow on mobile since background is solid */
	}
}

/* End of navbar and header */

#home {
	padding: 0;
}

#landing {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.content {
	color: #ffffff;
	padding: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content h1 {
	font-size: 4.3rem;
	margin-bottom: 20px;
	font-family: Raleway, Pacifico, Amita, sans-serif;
	text-align: left;
}

.content p {
	font-size: 2.22rem;
	line-height: 1.9;
	text-align: right;
	font-family: Raleway, Roboto, sans-serif;
}
/* End of landing */

/* start of commons */
.section-title {
	color: #e9840c;
	font-family: Sacramento, Raleway, Roboto, sans-serif;
	text-transform: capitalize;
	font-size: 4.8rem;
	margin: 0 0 16px 0;
}

.sub-title {
	color: #002729;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 2.15rem;
}

.link-btn {
	color: #e9840c;
	transition: transform 0.35s ease-in-out;
}

.link-btn:hover {
	color: #0b9538;
}


/* video {
	box-shadow: 2px 2px 6px #ffffff88;
	transition: transform 0.3s ease-in-out;
}

video:hover {
	cursor: pointer;
	transform: scale(0.98);
	box-shadow: 2px 2px 8px #000000b2;
} */

img:not(.footer-logo img):not(.navbar-brand img) {
	border-radius: 12px;
	box-shadow: 2px 2px 6px #ffffff88;
	transition: transform 0.3s ease-in-out;
	width: 100%; /* Ensure images take full width */
	object-fit: cover; /* Ensure proper scaling */
}

img:not(.footer-logo img):not(.navbar-brand img):not(.about-image img):not(
		.team-image img
	):not(.menu-item-image img):not(.image-column img):not(.carousel-item img) {
	cursor: pointer !important;
	transform: scale(0.98) !important;
	box-shadow: 2px 2px 8px #000000b2 !important;
}

/* Mobile adjustment for images (except logo) */
@media (max-width: 767px) {
	img:not(.navbar-brand img):not(.footer-logo img) {
		width: 100% !important; /* Full width on mobile */
		max-width: 100% !important; /* Ensure it doesn't exceed container */
	}
}

/* End of commons */

/* Beginning of about */
.about-section {
	min-height: 100vh;
	padding: 40px 0;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
}

.text-column {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-text {
	color: #002729;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

#about .image-column {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#about .image-column img {
	max-height: 90vh; /* Limits image height to fit within viewport on desktop */
	object-fit: cover; /* Ensures image scales nicely */
	width: 100%; /* Full width */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#about .about-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	#about .text-column,
	.image-column {
		padding: 15px;
	}

	#about .image-column img {
		max-height: 60vh; /* Adjusted height for tablets */
		width: 100%; /* Full width */
	}

	#about .content h1 {
		font-size: 3rem; /* Adjust landing h1 for smaller screens */
	}

	#about .content p {
		font-size: 1.5rem; /* Adjust landing p for smaller screens */
	}
}

@media (max-width: 767px) {
	#about .text-column {
		text-align: center; /* Center text on mobile */
	}

	#about .image-column img {
		max-height: 70vh; /* Adjusted height for mobile */
		width: 100%; /* Full width */
	}
}
/* end of about */

/* Start of restaurant Section */
.restaurant-section {
	min-height: 100vh;
	padding: 40px 0;
	background-color: #ffffff;
	display: flex;
	align-items: center;
}

.restaurant-text {
	color: #002729;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

#restaurant .text-column {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#restaurant .image-column {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#restaurant .image-column .row {
	width: 100%;
}

#restaurant .image-column img {
	max-height: 300px; /* Desktop height in pixels */
	object-fit: cover; /* Ensures images scale nicely */
	width: 100%; /* Full width of their grid cell */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	#restaurant .restaurant-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	#restaurant .text-column,
	.image-column {
		padding: 15px;
	}

	#restaurant .col-6 {
		width: 100%;
	}

	#restaurant .image-column img {
		max-height: 496px; /* Adjust image height for smaller screens */
		width: 100%; /* Full width */
	}
}

@media (max-width: 767px) {
	#restaurant .text-column {
		text-align: center; /* Center text on mobile */
	}

	#restaurant .image-column img {
		max-height: 496px; /* Further reduce image height on mobile */
		width: 100%; /* Full width */
	}

	#restaurant .image-column .col-6 {
		width: 100%; /* Ensure 2x2 grid on mobile */
	}
}

@media (max-width: 576px) {
	#restaurant .image-column .col-6 {
		width: 100%; /* Stack images vertically on very small screens */
		margin-bottom: 15px;
	}

	#restaurant .image-column img {
		max-height: 496px; /* Slightly larger images when stacked on mobile */
		width: 100%; /* Full width */
	}
}

/* End of restaurant */

/* Hero Section */
.hero-section {
	position: relative;
	background-image: url("../images/restaurant-2.jpg"); /* Replace with your image path */
	background-size: cover;
	background-position: center;
	height: 248px; /* Fixed height for desktop and tablet */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ffffff; /* White text for contrast */
	padding-top: 90px; /* Account for navbar height on desktop */
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2; /* Ensure content is above the overlay */
	padding: 15px; /* Reduced padding to fit within smaller height */
	max-height: 100%; /* Prevent overflow */
	overflow: hidden; /* Hide any overflow */
}

.hero-title {
	font-family: Sacramento, Raleway, Roboto, sans-serif;
	font-size: 36px; /* Reduced for smaller height */
	margin-bottom: 10px; /* Reduced margin */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Shadow for readability */
}

.hero-subtitle {
	font-family: Raleway, Roboto, sans-serif;
	font-size: 16px; /* Reduced for smaller height */
	margin-bottom: 15px; /* Reduced margin */
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Shadow for readability */
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 15px; /* Reduced gap */
}

.hero-btn {
	padding: 8px 16px; /* Smaller padding */
	font-family: Raleway, Roboto, sans-serif;
	font-size: 14px; /* Smaller font size */
	border-radius: 5px;
	transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.restaurant-btn {
	background-color: #e9840c; /* Orange for restaurant */
	color: #ffffff;
	border: none;
}

.restaurant-btn:hover {
	background-color: #d1740a; /* Darker orange on hover */
	transform: scale(1.05);
}

.bar-btn {
	background-color: #0b9538; /* Green for bar */
	color: #ffffff;
	border: none;
}

.bar-btn:hover {
	background-color: #09802f; /* Darker green on hover */
	transform: scale(1.05);
}

/* Responsive Adjustments for Hero */
@media (max-width: 991px) {
	.hero-title {
		font-size: 32px; /* Slightly smaller for tablets */
	}

	.hero-subtitle {
		font-size: 14px; /* Smaller for tablets */
	}

	.hero-btn {
		padding: 7px 14px; /* Smaller for tablets */
		font-size: 12px; /* Smaller for tablets */
	}
}

@media (max-width: 767px) {
	.hero-section {
		height: 350px; /* Maintain original height for mobile */
		padding-top: 70px; /* Account for navbar height on mobile */
	}

	.hero-title {
		font-size: 30px; /* Original size for mobile */
	}

	.hero-subtitle {
		font-size: 16px; /* Original size for mobile */
	}

	.hero-buttons {
		flex-direction: column; /* Stack buttons on mobile */
		gap: 15px; /* Original gap */
	}

	.hero-btn {
		padding: 8px 16px; /* Original padding for mobile */
		font-size: 12px; /* Original size for mobile */
	}
}

@media (max-width: 576px) {
	.hero-section {
		height: 300px; /* Original height for tiny screens */
	}

	.hero-title {
		font-size: 24px; /* Original size for tiny screens */
	}

	.hero-subtitle {
		font-size: 14px; /* Original size for tiny screens */
	}
}

/* End of Hero */

/* Menu Section */
.menu-section {
	padding: 40px 0; /* Vertical padding for spacing */
	background-color: #ffffff; /* White background for a clean look */
	/* min-height: 100vh; Full viewport height on desktop */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu-category {
	margin-bottom: 40px; /* Space between categories */
}

.menu-subcategory {
	margin-bottom: 30px; /* Space between subcategories */
}

.menu-subcategory-title {
	color: #0b9538; /* Green for subcategory titles */
	font-family: Raleway, Roboto, sans-serif;
	font-size: 24px; /* Adjusted for hierarchy */
	margin-bottom: 20px;
	text-align: center;
}

.menu-item {
	background-color: #f8f9fa; /* Light gray background for cards */
	border-radius: 12px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	height: 100%; /* Ensure cards are equal height */
	display: flex;
	flex-direction: row; /* Image beside content on desktop/tablet */
	overflow: hidden; /* Ensure rounded corners apply to children */
}

.menu-item:hover {
	transform: scale(1.05); /* Slight scale on hover */
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.menu-item-image {
	flex: 0 0 40%; /* Image takes 40% of the width on desktop/tablet */
	overflow: hidden; /* Ensure image doesn’t overflow */
}

.menu-item-image img {
	width: 100%; /* Full width of the container */
	height: 100%; /* Fixed height for consistency */
	object-fit: cover; /* Ensure image scales nicely */
	border-radius: 12px 0 0 12px !important; /* Rounded corners on the left side */
}

.menu-item-image img:hover {
	cursor: pointer;
	box-shadow: none;
}

.menu-item-content {
	flex: 1; /* Content takes remaining space */
	padding: 20px; /* Padding for text */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu-item-title {
	color: #e9840c; /* Orange for item titles */
	font-family: Raleway, Roboto, sans-serif;
	font-size: 18px;
	margin-bottom: 10px;
}

.menu-item-description {
	color: #002729;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
	flex-grow: 1; /* Allow description to fill space */
}

.menu-item-price {
	color: #0b9538; /* Green for prices */
	font-family: Raleway, Roboto, sans-serif;
	font-size: 16px;
	font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.menu-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	.menu-subcategory-title {
		font-size: 20px; /* Smaller for tablets */
	}

	.menu-item-title {
		font-size: 16px; /* Smaller for tablets */
	}

	.menu-item-description {
		font-size: 12px; /* Smaller for tablets */
	}

	.menu-item-price {
		font-size: 14px; /* Smaller for tablets */
	}

	.menu-item-image img {
		height: 100%; /* Smaller height for tablets */
		border-radius: 12px 12px 0 0 !important; /* Rounded corners on the left side */
	}
}

@media (max-width: 767px) {
	.menu-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	.menu-subcategory-title {
		font-size: 18px; /* Smaller for mobile */
	}

	.menu-item {
		flex-direction: column; /* Stack image on top on mobile */
		margin: 0 auto; /* Center cards when stacked */
		max-width: 400px; /* Limit width on mobile */
	}

	.menu-item-image {
		flex: none; /* Remove fixed width on mobile */
		width: 100%; /* Full width on mobile */
	}

	.menu-item-image img {
		height: 200px; /* Adjusted height for mobile */
		border-radius: 12px 12px 0 0; /* Rounded corners on top for mobile */
	}

	.menu-item-content {
		padding: 15px; /* Slightly less padding on mobile */
	}

	.menu-item-title {
		font-size: 14px; /* Smaller for mobile */
	}

	.menu-item-description {
		font-size: 12px; /* Smaller for mobile */
	}

	.menu-item-price {
		font-size: 12px; /* Smaller for mobile */
	}
}

@media (max-width: 576px) {
	.menu-subcategory-title {
		font-size: 16px; /* Smaller for tiny screens */
	}

	.menu-item-title {
		font-size: 12px; /* Smaller for tiny screens */
	}

	.menu-item-description {
		font-size: 10px; /* Smaller for tiny screens */
	}

	.menu-item-price {
		font-size: 10px; /* Smaller for tiny screens */
	}

	.menu-item-image img {
		height: 150px; /* Smaller height for tiny screens */
	}
}

/* End of menu */

/* Culture Section */
.culture-section {
	min-height: 100vh;
	padding: 40px 0;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
}

.culture-text {
	color: #002729;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

#culture .text-column {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#culture .image-column {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#culture .image-column .row {
	width: 100%;
}

#culture .image-column .col-6 img {
	max-height: 296px; /* Height for top two images */
	object-fit: cover; /* Ensures images scale nicely */
	width: 100%; /* Full width of their grid cell */
}

#culture .image-column .col-12 img {
	max-height: 346px; /* Larger height for bottom image */
	object-fit: cover; /* Ensures image scales nicely */
	width: 100%; /* Full width of the column */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.culture-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	#culture .text-column,
	.image-column {
		padding: 15px;
	}

	#culture .image-column .col-6 {
		width: 100%; /* Full width */
	}

	#culture .image-column .col-6 img {
		max-height: 496px; /* Adjust top images for smaller screens */
		width: 100%; /* Full width */
	}

	#culture .image-column .col-12 img {
		max-height: 496px; /* Adjust bottom image for smaller screens */
		width: 100%; /* Full width */
	}
}

@media (max-width: 767px) {
	#culture .text-column {
		text-align: center; /* Center text on mobile */
	}

	#culture .image-column .col-6 img {
		max-height: 496px; /* Further reduce top images on mobile */
		width: 100%; /* Full width */
	}

	#culture .image-column .col-12 img {
		max-height: 496px; /* Adjust bottom image on mobile */
		width: 100%; /* Full width */
	}
}

@media (max-width: 576px) {
	#culture .image-column .col-6,
	.image-column .col-12 {
		width: 100%; /* Stack all images vertically on very small screens */
		margin-bottom: 15px;
	}

	#culture .image-column .col-6 img {
		max-height: 496px; /* Consistent height when stacked on mobile */
		width: 100%; /* Full width */
	}

	#culture .image-column .col-12 img {
		max-height: 496px; /* Consistent height when stacked on mobile */
		width: 100%; /* Full width */
	}
}

/* End of culture */

/* Events Section */
.events-section {
	min-height: 100vh;
	padding: 40px 0;
	background-color: #ffffff;
	display: flex;
	align-items: center;
}

.carousel-column {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.carousel {
	max-width: 100%;
}

.carousel-item img {
	max-height: 500px; /* Desktop height in pixels */
	object-fit: cover; /* Ensure images scale nicely */
	width: 100%; /* Full width of carousel */
}

.carousel-caption {
	background-color: rgba(
		255,
		255,
		255,
		0.1
	); /* Semi-transparent white for glassmorphism */
	backdrop-filter: blur(10px); /* Blur effect for glassmorphism */
	-webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
	border: 3px solid rgba(255, 255, 255, 0.2); /* Subtle border for glassmorphism */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
	font-family: Raleway, Roboto, sans-serif;
	transition: background-color 0.5s ease-in-out,
		backdrop-filter 0.5s ease-in-out,
		-webkit-backdrop-filter 0.5s ease-in-out, border 0.5s ease-in-out,
		box-shadow 0.5s ease-in-out; /* Smooth transition for all properties */
	z-index: 1000; /* Ensure it stays above other content */
	border-radius: 12px;
	padding: 12px 8px;
}

.carousel-caption .link-btn{
	color: #e9840c; /* Orange for links */
	font-family: Raleway, Roboto, sans-serif;
	text-decoration: none;
}

.events-text {
	color: #002729;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.events-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	.carousel-column,
	.text-column {
		padding: 15px;
	}

	.carousel-item img {
		max-height: 496px; /* Adjust image height for smaller screens */
		width: 100%; /* Full width */
	}
}

@media (max-width: 767px) {
	.text-content {
		text-align: center; /* Center text on mobile */
	}

	.carousel-item img {
		max-height: auto; /* Further reduce image height on mobile */
		width: 100%; /* Full width */
	}

	.carousel-caption h3 {
		font-size: 1.5rem; /* Smaller title on mobile */
	}

	.carousel-caption p {
		font-size: 1rem; /* Smaller date on mobile */
	}

	.events-text {
		font-size: 1.1rem; /* Slightly smaller text */
	}
}

@media (max-width: 576px) {
	.carousel-item img {
		max-height: auto; /* Smallest height for tiny screens on mobile */
		width: 100%; /* Full width */
	}

	.carousel-caption h3 {
		font-size: 1.2rem;
	}

	.carousel-caption p {
		font-size: 0.9rem;
	}
}

/* End of Events */

/* Services Section */
#services {
	padding: 0;
}

.services-section {
	padding: 40px 0;
	background: linear-gradient( 
		135deg,
		#f9e5cc 0%,
		#d4f0dc 100%
	); /* Light orange to light green gradient */
	min-height: 100vh; /* Full viewport height on desktop */
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(233,132,12,0.1)" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,170.7C384,160,480,160,576,176C672,192,768,224,864,213.3C960,203,1056,149,1152,133.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center; */
    background-size: cover;
    z-index: 0;
}

.service-card {
	background: rgba(
		255,
		255,
		255,
		0.1
	); /* Semi-transparent for glassmorphism */
	backdrop-filter: blur(24px); /* Blurred background */
	-webkit-backdrop-filter: blur(10px); /* For Safari */
	border: 2px solid rgba(233, 132, 12, 0.3); /* Light orange border */
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	max-width: 520px; /* Limit card width for better centering */
	height: 480px; /* Fixed height for desktop */
	margin: 0 auto; /* Center the card */
	position: relative;
    z-index: 1; /* Ensure card is above background element */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden; /* Ensure rounded corners apply to children */
}	

.service-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow on hover */
	border: none;
}

.service-icon {
	font-size: 36px;
	color: #e9840c; /* Orange icon */
	background: rgba(233, 132, 12, 0.1); /* Light orange background */
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	margin: 0 auto 15px;
	transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.service-card:hover .service-icon {
	background: rgba(233, 132, 12, 0.3); /* Slightly darker on hover */
	transform: scale(1.1); /* Pulse effect on hover */
}

.service-title {
	font-family: Raleway, Roboto, sans-serif;
	font-size: 2.25rem;
	color: #002729; /* Dark text */
	background: linear-gradient(90deg, #0b9538, #e9840c); /* Gradient text */
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.service-description {
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1.15rem;
	color: #5a6a6d; /* Light gray for description */
	line-height: 1.6;
}

.service-btn {
    display: inline-block;
    background-color: #e9840c; /* Orange */
    color: #ffffff;
    padding: 10px 20px;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0; /* Hidden by default on large screens */
	outline: none;
}

.service-btn:hover {
	background: linear-gradient(90deg, #0b9538, #e9840c); /* Gradient text */
	transform: translateY(-18px); /* Slight scale on hover */
	transition: transform 0.3s ease-in-out;
	color: #ffffff;
}

/* Ensure equal heights for cards in a row on desktop and tablet */
@media (min-width: 768px) {
    .new-services-section .row {
        display: flex;
        flex-wrap: wrap; /* Allow wrapping for multiple rows */
    }

    .new-services-section .row > div {
        display: flex; /* Make the column a flex container */
        flex: 1 1 auto; /* Allow columns to grow/shrink */
    }
}

/* Reveal button on hover for large screens */
@media (min-width: 991px) {
    .service-card:hover .service-btn {
        opacity: 1; /* Show on hover */
        transform: scale(1.05); /* Slight scale on hover */
    }
}

/* Always show button on mobile */
@media (max-width: 990px) {
    .service-btn {
        opacity: 1; /* Always visible on mobile */
    }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .service-card {
        max-width: 450px; /* Slightly smaller on larger screens */
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.services-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	.service-card {
		padding: 25px 15px; /* Slightly less padding on tablet */
		max-width: 450px; /* Slightly smaller width on tablet */
		height: 520px; /* Adjusted height for tablet */
	}

	.service-icon {
		font-size: 32px; /* Smaller icon on tablet */
		width: 60px;
		height: 60px;
		line-height: 60px;
	}

	.service-title {
		font-size: 1.65rem; /* Smaller title on tablet */
	}

	.service-description {
		font-size: 1.25rem; /* Smaller description on tablet */
	}
}

@media (max-width: 767px) {
	.service-card {
		max-width: 400px; /* Limit width on mobile */
		height: auto;
		padding: 20px 10px; /* Less padding on mobile */
	}

	.service-icon {
		font-size: 28px; /* Smaller icon on mobile */
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	.service-title {
		font-size: 1.45rem; /* Smaller title on mobile */
	}

	.service-description {
		font-size: 1.2rem; /* Smaller description on mobile */
	}
}

@media (max-width: 576px) {
	.service-card {
		max-width: 350px; /* Smaller width on tiny screens */
	}

	.service-icon {
		font-size: 24px; /* Smaller icon on tiny screens */
		width: 45px;
		height: 45px;
		line-height: 45px;
	}

	.service-title {
		font-size: 1.25rem; /* Smaller title on tiny screens */
	}

	.service-description {
		font-size: 1rem; /* Smaller description on tiny screens */
	}
}
/* End of service */


/* Reservations Section */
#reservations {
    padding: 0;
}

.reservations-section {
    min-height: 100vh;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(11, 149, 56, 0.8), rgba(0, 39, 41, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.reservations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 132, 12, 0.2) 10%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.reservation-form-container {
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism effect */
    backdrop-filter: blur(5px); /* Blurred background */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
    border: 2px solid rgba(255, 255, 255, 0.6); /* Light orange border */
    border-radius: 12px;
    padding: 30px;
    max-width: 900px;
    width: 100%;
    z-index: 1;
}

.reservation-form .form-control,
.reservation-form .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1rem;
    padding: 12px;
    height: 50px;
    transition: background-color 0.3s ease-in-out;
}

.reservation-form .form-control::placeholder,
.reservation-form .form-select::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: #ffffff;
}

.reservation-form textarea.form-control {
    height: auto;
    resize: vertical; /* Allow vertical resizing only */
}

/* Date Picker Styling */
.reservation-form input[type="date"] {
    position: relative;
    padding-right: 30px; /* Space for custom calendar icon */
    -webkit-appearance: none; /* Remove default styling in Webkit browsers */
    -moz-appearance: none; /* Remove default styling in Firefox */
    appearance: none; /* Remove default styling */
}

.reservation-form input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="%23e9840c" d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V8h14v12z"/></svg>') no-repeat center center;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    cursor: pointer;
}

.reservation-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Fieldset and Legend Styling */
.date-fieldset {
    /* border: 1px solid rgba(233, 132, 12, 0.5); */
    border-radius: 12px;
    padding: 0;
    position: relative;
    margin: 0;
}

.date-legend {
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1.025rem;
    color: #ffffff;
    padding: 0 6px;
	opacity: 0.8;
    position: absolute;
    top: -10px;
    left: 15px;
}

/* Select Dropdown Styling */
.reservation-form .form-select {
    -webkit-appearance: none; /* Remove default arrow in Webkit browsers */
    -moz-appearance: none; /* Remove default arrow in Firefox */
    appearance: none; /* Remove default arrow */
    background: rgba(255, 255, 255, 0.1) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%23e9840c" d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 12px;
    padding-right: 30px; /* Space for custom arrow */
}

/* Reservation Type Radio Buttons */
.reservation-type-label {
    display: block;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.reservation-type-options {
    display: flex;
    gap: 20px;
}

.reservation-type-option {
    display: flex;
    align-items: center;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    opacity: 0.8;
    cursor: pointer;
}

.reservation-type-option input[type="radio"] {
    margin-right: 5px;
    accent-color: #e9840c; /* Orange for radio buttons */
}

/* Attending Dates Checkboxes */
#attendingDatesCheckboxes {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.attending-dates-label {
    display: block;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 5px;
}

#attendingDatesCheckboxes label {
    display: flex;
    align-items: center;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    opacity: 0.8;
    cursor: pointer;
}

#attendingDatesCheckboxes input[type="checkbox"] {
    margin-right: 5px;
    accent-color: #e9840c; /* Orange for checkboxes */
}

/* Submit Button */
.submit-btn {
    background-color: #e9840c;
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    border-radius: 24px;
    font-family: Raleway, Roboto, sans-serif;
    font-size: 1.2rem;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: block;
    margin: 20px auto 0;
}

.submit-btn:hover {
    background-color: #0b9538;
    transform: scale(1.02);
}

#reservations .section-title {
    color: #ffffff;
}

#reservations .sub-title {
    color: #ffffff;
    opacity: 0.8;
}

/* Fade-in Animation for Fields */
.reservation-fields {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.reservation-fields.show {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .reservations-section {
        min-height: auto;
        padding: 20px 0;
    }

    .reservation-form-container {
		max-width: fit-content;
        padding: 20px;
    }

    .reservation-form .form-control,
    .reservation-form .form-select {
        height: 45px;
        font-size: 0.95rem;
    }

    .reservation-type-label {
        font-size: 1.15rem;
    }

    .reservation-type-option {
        font-size: 1.05rem;
    }

    .attending-dates-label,
    #attendingDatesCheckboxes label {
        font-size: 1.15rem;
    }

    .submit-btn {
        padding: 10px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .reservation-form .col-md-4,
    .reservation-form .col-md-6 {
        margin-bottom: 15px;
    }

    .reservation-type-options {
        gap: 15px;
    }

    .reservation-form .form-control,
    .reservation-form .form-select {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .reservation-form-container {
        margin: 0 15px;
        padding: 15px;
		max-width: fit-content;
    }

    .reservation-form .form-control,
    .reservation-form .form-select {
        font-size: 0.85rem;
        height: 40px;
    }

    .reservation-type-label {
        font-size: 1.15rem;
    }

    .reservation-type-option {
        font-size: 1.125rem;
    }

    .attending-dates-label,
    #attendingDatesCheckboxes label {
        font-size: 1.125rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 10px 30px;
    }
}

/* End of Reservations */

/* Contact Section */
.contact-section {
	min-height: 100vh;
	padding: 40px 0;
	background-color: #ffffff;
	display: flex;
	align-items: center;
}

.map-column {
	padding: 20px;
	height: 100%;
}

.map-column iframe {
	min-height: 480px; /* Minimum height for map (already in pixels) */
	width: 100%; /* Full width */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.contact-section {
		min-height: auto; /* Remove fixed height on smaller screens */
		padding: 20px 0;
	}

	.map-column,
	.form-column {
		padding: 15px;
	}

	.map-column iframe {
		min-height: 480px; /* Adjust map height for smaller screens (already in pixels) */
		width: 100%; /* Full width */
	}
}

@media (max-width: 767px) {
	.contact-form-container {
		text-align: center; /* Center form content on mobile */
	}

	.submit-btn {
		margin: 20px auto; /* Ensure button is centered */
	}

	.contact-form .col-md-6 {
		margin-bottom: 15px; /* Ensure spacing when stacked */
	}

	.map-column iframe {
		min-height: 360px; /* Further reduce map height on mobile (already in pixels) */
		width: 100%; /* Full width */
	}
}

@media (max-width: 576px) {
	.contact-form .form-label {
		font-size: 1rem;
	}

	.contact-form .form-control {
		font-size: 0.9rem;
	}

	.submit-btn {
		font-size: 1rem;
		padding: 10px 20px;
	}

	.map-column iframe {
		min-height: 360px; /* Smallest height for tiny screens on mobile (already in pixels) */
		width: 100%; /* Full width */
	}
}

/* End of Contact */

/* Footer Section */
.footer-section {
	background-color: #002729;
	color: #ffffff;
	padding: 40px 0 20px 0;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	transition: transform 0.3s ease-in-out;
}

.footer-logo img:hover {
	transform: scale(1.05);
}

.footer-title {
	color: #e9840c;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.footer-text {
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links li a {
	color: #ffffff;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1rem;
	transition: color 0.3s ease-in-out;
}

.footer-links li a:hover {
	color: #e9840c;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-icon:hover {
	color: #e9840c;
}

.social-icon {
	color: #ffffff;
	font-size: 1.5rem;
	transition: color 0.3s ease-in-out;
}

.newsletter-form .input-group {
	display: flex;
	align-items: center;
}

.newsletter-form .form-control {
	background-color: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 12px 0 0 12px;
	color: #ffffff;
	font-family: Raleway, Roboto, sans-serif;
	font-size: 1rem;
	padding: 10px;
}

.newsletter-form .form-control::placeholder {
	color: #ffffff;
	opacity: 0.7;
}

.newsletter-form .form-control:focus {
	background-color: rgba(255, 255, 255, 0.2);
	box-shadow: none;
	outline: none;
}

.newsletter-btn {
	background-color: #e9840c;
	color: #ffffff;
	border: none;
	border-radius: 0 12px 12px 0;
	padding: 10px 15px;
	transition: background-color 0.3s ease-in-out;
}

.newsletter-btn:hover {
	background-color: #0b9538;
}

.footer-copyright {
	font-family: Raleway, Roboto, sans-serif;
	font-size: 0.9rem;
	opacity: 0.7;
	margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.footer-section {
		padding: 30px 0 15px 0;
	}

	.footer-title {
		font-size: 1.3rem;
	}

	.footer-text,
	.footer-links li a {
		font-size: 0.9rem;
	}

	.social-icon {
		font-size: 1.3rem;
	}

	.newsletter-form .form-control {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.footer-section .col-md-6,
	.footer-section .col-lg-3 {
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}

	.newsletter-form .input-group {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.footer-copyright {
		font-size: 0.8rem;
	}

	.footer-logo img {
		max-height: 40px;
	}
}

/* End of Footer */

/* Begininng of observers (slide and fade) */
.fade-in {
	opacity: 0;
	transition: opacity 1.45s ease-in;
}

.fade-in.appear {
	opacity: 1;
}

.from-left {
	transform: translateX(-75%);
}

.from-right {
	transform: translateX(75%);
}

.from-bottom {
	transform: translateY(75%);
}

.from-left,
.from-right,
.from-bottom {
	transition: opacity 1.15s ease-in, transform 1.25s ease-in-out;
	opacity: 0;
}

.from-left.appear,
.from-right.appear {
	transform: translateX(0);
	opacity: 1;
}

.from-bottom.appear {
	transform: translateY(0);
	opacity: 1;
}
/* End of observers (slide and fade) */

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #0b9538; /* Green to match your brand */
	color: #ffffff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	opacity: 0; /* Hidden by default */
	visibility: hidden; /* Hidden by default */
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out,
		transform 0.3s ease-in-out;
	z-index: 1000; /* Ensure it’s above other elements */
}

.back-to-top.show {
	opacity: 1; /* Visible when scrolled */
	visibility: visible;
}

.back-to-top:hover {
	background-color: #09802f; /* Darker green on hover */
	transform: scale(1.1); /* Slight scale on hover */
}

.back-to-top i:hover {
	color: #e9840c; /* Orange on hover */
}

/* Responsive Adjustments */
@media (max-width: 767px) {
	.back-to-top {
		width: 40px;
		height: 40px;
		font-size: 20px;
		bottom: 20px;
		right: 20px;
	}
}
/* End of Back to Top Button */

/* Custom Alert */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f9e5cc 0%, #d4f0dc 100%); /* Light orange to light green gradient */
    border: 2px solid rgba(233, 132, 12, 0.5); /* Light orange border */
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000; /* Above navbar (z-index: 1000) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.custom-alert.show {
    opacity: 1; /* Visible when shown */
}

.custom-alert-icon {
    font-size: 24px;
    color: #e9840c; /* Orange icon */
}

.custom-alert-content {
    flex: 1;
}

.custom-alert-message {
    font-family: Raleway, Roboto, sans-serif;
    font-size: 14px;
    color: #002729; /* Dark text */
    line-height: 1.5;
}

.custom-alert-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease-in-out;
}

.custom-alert-close i {
    font-size: 18px;
    color: #0b9538; /* Green close icon */
}

.custom-alert-close:hover i {
    color: #e9840c; /* Orange on hover */
    transform: scale(1.1);
}

/* Alert Types */
.custom-alert.success .custom-alert-icon {
    color: #0b9538; /* Green for success */
}

.custom-alert.success .custom-alert-icon i::before {
    content: '\F0133'; /* mdi-check-circle-outline */
}

.custom-alert.error .custom-alert-icon {
    color: #d32f2f; /* Red for error */
}

.custom-alert.error .custom-alert-icon i::before {
    content: '\F0026'; /* mdi-alert-circle-outline */
}

.custom-alert.info .custom-alert-icon {
    color: #e9840c; /* Orange for info (default) */
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .custom-alert {
        top: 80px; /* Account for fixed navbar on mobile */
        right: 10px;
        left: 10px;
        max-width: none;
        width: calc(100% - 20px); /* Full width minus padding */
        padding: 10px 15px;
    }

    .custom-alert-icon {
        font-size: 20px;
    }

    .custom-alert-message {
        font-size: 12px;
    }

    .custom-alert-close i {
        font-size: 16px;
    }
}
/* End of Custom Alert */
