:root {
	--primary: #1eb6c1;
	--secondary: #f9b233;
	--accent: #f76c3c;
	--dark-blue: #144d58;
	--light: #ffffff;
	--light-blue: #e7f5f7;
	--heading-font: 'Paytone One', sans-serif;
	--body-font: 'Quicksand', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--body-font);
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
	color: var(--dark-blue);
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: var(--primary);
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent);
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Top Bar */
.top-bar {
	background-color: var(--primary);
	padding: 8px 0;
	color: white;
	position: relative;
	z-index: 100;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-phone {
	display: flex;
	align-items: center;
	color: white;
	font-weight: 600;
	font-size: 1.1rem;
}

.top-bar-phone i {
	margin-right: 8px;
	font-size: 1.25rem;
}

.cta-button {
	background-color: var(--accent);
	color: white;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.cta-button:hover {
	background-color: var(--secondary);
	transform: translateY(-3px);
	color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.large {
	font-size: 1.1rem;
	padding: 0.8rem 2rem;
}

.cta-button i {
	margin-left: 8px;
}

/* Hero Section */
.hero {
	position: relative;
	height: 90vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(rgba(20, 77, 88, 0.2), rgba(20, 77, 88, 0.1)),
		url('https://images.unsplash.com/photo-1506953823976-52e1fdc0149a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
	/* url('long-lake.jpg'); */
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero-content {
	position: relative;
	max-width: 800px;
	z-index: 2;
	padding: 2rem;
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary);
	text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.hero-logo {
	width: 180px;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.25rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--dark-blue);
}

.wave-divider {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	z-index: 5;
}

.wave-divider svg {
	display: block;
	width: 100%;
}

/* About Section */
.about {
	padding: 5rem 0;
	background-color: var(--light-blue);
	position: relative;
	z-index: 2;
}

.about-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

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

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.about h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 4px;
	background-color: var(--accent);
	border-radius: 2px;
}

.about p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: #444;
}

.about-image {
	flex: 1;
	min-width: 300px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

/* Gallery Section */
.gallery {
	padding: 5rem 0;
	background-color: #fff;
	position: relative;
}

.gallery h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary);
}

/* Tour Types Section */
.tour-types {
	margin-bottom: 4rem;
}

.tour-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.tour-card {
	background-color: var(--light-blue);
	border-radius: 15px !important;
	/* overflow: hidden; */
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.tour-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border-color: var(--primary);
}

.tour-header {
	padding: 1.5rem 1rem;
	background-color: var(--primary);
	color: white;
	position: relative;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.tour-number {
	position: absolute;
	top: -10px;
	left: -10px;
	background-color: var(--accent);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
	font-size: 1.2rem;
	font-family: var(--heading-font);
	z-index: 1000;
}

.tour-header h3 {
	color: white;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
}

.tour-time {
	font-size: 1.1rem;
	font-weight: 600;
	opacity: 0.9;
}

.tour-body {
	padding: 1.5rem;
	text-align: center;
}

.tour-price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent);
	font-family: var(--heading-font);
	margin-bottom: 0.5rem;
}

.tour-price .per-person {
	font-size: 0.5em;
	font-weight: 300 !important;
	color: var(--dark-blue);
	margin-left: 4px;
}

.tour-special {
	font-size: 1rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 1rem;
}

.tour-duration {
	font-size: 1rem;
	color: var(--dark-blue);
	font-weight: 600;
	margin-bottom: 1rem;
}

.tour-description {
	color: #555;
	line-height: 1.5;
	margin: 0;
}

.tours-cta {
	text-align: center;
	margin: 2rem 0;
}

.gallery-content {
	width: 100%;
	margin: 0 auto;
}

.carousel-item img {
	height: 800px;
	object-fit: cover;
	border-radius: 15px;
}

/* Features Section */
.features {
	padding: 5rem 0;
	background-color: var(--light-blue);
	position: relative;
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.feature-card {
	background-color: white;
	padding: 1.5rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card i {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

/* Friends Section */
.friends {
	padding: 5rem 0;
	background-color: #fff;
	position: relative;
}

.friends h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--primary);
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.partner-card {
	background-color: var(--light-blue);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.partner-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-header {
	padding: 1.5rem;
	background-color: var(--primary);
	color: white;
	font-family: var(--heading-font);
	font-size: 1.3rem;
	text-align: center;
}

.partner-body {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.partner-image {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.partner-image img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.partner-body p {
	flex-grow: 1;
	margin-bottom: 1.5rem;
}

.partner-link {
	background-color: var(--secondary);
	color: white;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
}

.partner-link:hover {
	background-color: var(--accent);
	color: white;
}

/* Contact Section */
.contact {
	padding: 5rem 0;
	background-color: var(--primary);
	position: relative;
	color: white;
	text-align: center;
}

.contact h2 {
	color: white;
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.contact-phone {
	font-size: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	color: white;
	margin-bottom: 1rem;
}

.contact-phone i {
	margin-right: 10px;
	font-size: 1.8rem;
}

.contact-cta {
	margin-top: 1rem;
}

.extension {
	font-size: 0.9rem;
	background-color: var(--accent);
	padding: 2px 8px;
	border-radius: 50px;
	position: relative;
	top: -10px;
	margin-left: 5px;
	color: white;
}

/* Footer */
footer {
	background-color: var(--dark-blue);
	color: white;
	padding: 2rem 0;
	text-align: center;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-link {
	color: var(--secondary);
}

.footer-link:hover {
	color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-content {
		padding: 1.5rem;
	}

	.carousel-item img {
		height: 400px;
	}

	.tour-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 500px;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		order: -1;
	}

	.carousel-item img {
		height: 300px;
	}

	.feature-card {
		padding: 1.5rem;
	}

	h2 {
		font-size: 2rem !important;
	}

	.tour-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1rem;
	}

	.tour-header h3 {
		font-size: 1.2rem;
	}

	.tour-price {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {
	.top-bar .container {
		flex-direction: column;
		gap: 0.5rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.carousel-item img {
		height: 250px;
	}

	.tour-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.tour-card {
		margin: 0 0.5rem;
	}

	.tour-header {
		padding: 1rem;
	}

	.tour-body {
		padding: 1rem;
	}


}