@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;800;900&family=Poppins:wght@300;400;500;600&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
}

header {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 200px;
	transition: .5s ease;
	background: #000;
}

.header .brand {
	color: #fff;
	font-size: 2em;
	font-weight: 900;
	text-decoration: none;
	transition: .5s ease;
}

.header .brand:hover {
	transform: scale(1.1);
}

.header .navigation {
	position: relative;
}

.header .navigation .navigation-items a {
	position: relative;
	color: #fff;
	font-size: 1em;
	font-weight: 500;
	text-decoration: none;
	margin-left: 30px;
	transition: .3s ease;
}

.header .navigation .navigation-items a:before {
	content: '';
	position: absolute;
	background: #fff;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	transition: .3s ease;
}

.header .navigation .navigation-items a:hover:before {
	width: 100%;
	background: #ff6f61;
}

section {
	padding: 100px 200px;
}

section h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 2em;
	color: #333;
}

.home {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.home:before {
	z-index: 777;
	content: '';
	position: absolute;
	background: rgba(3, 96, 251, 0.3);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.home .content {
	z-index: 888;
	color: #fff;
	width: 70%;
	margin-top: 50px;
	display: none;
}

.home .content.active {
	display: block;

}

.home .content h1 {
	font-size: 4em;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 75px;
	margin-bottom: 40px;
}

.home .content h1 span {
	font-size: 1.2em;
	font-weight;
	600;
}

.home .content p {
	margin-bottom: 65px;
}

.home .content a {
	background: #ff6f61;
	padding: 15px 35px;
	color: #fff;
	font-size: 1.1em;
	font-weight: 500;
	text-decoration: none;
	border-radius: 10px;
	transition: .5s ease;
}

.home .content a:hover {
	background: #c43123;
}

.home .media-icons {
	z-index: 888;
	position: absolute;
	right: 30px;
	display: flex;
	flex-direction: column;
	transition: .5s ease;
}

.home .media-icons a {
	color: #fff;
	font-size: 1.6rem;
	transition: .5s ease;
}

.home .media-icons a:not(:last-child) {
	margin-bottom: 20px;
}

.home .media-icons a:hover {
	transform: scale(1.3);
}

.home video {
	z-index: 000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-navigation {
	z-index: 888;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(80px);
	margin-bottom: 12px;
}

.slider-navigation .nav-btn {
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(255, 255, 255, .5);
	transition: .3s ease;
}

.slider-navigation .nav-btn.active {
	background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child) {
	margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
	transform: scale(1.2);
}

.video-slide {
	position: absolute;
	width: 100%;
	clip-path: circle(0% at 0 50%);
}

.video-slide.active {
	clip-path: circle(150% at 0 50%);
	transition: 2s ease;
	transition-property: clip-path;
}

#about {
	text-align: center;
	padding: 50px;
}

h2 {
	font-size: 36px;
	margin-top: 35px;
	margin-bottom: 20px;
}

p {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 30px;
}

.our-team,
.our-values {
	margin-top: 40px;
}

.our-team ul,
.our-values ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.our-team li {
	display: inline-block;
	margin: 0 20px;
}

.our-team img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin-top: 10px;
}

.our-team h4 {
	font-size: 20px;
	margin-bottom: 5px;
}

.our-team span {
	font-size: 16px;
	color: #666;
}

.our-values h3 {
	margin-bottom: 20px;
}

.our-values li {
	display: inline-block;
	margin: 0 10px;
}

.explore {
	background-color: #dfdfdf;
	height: 100%;
}

.destinations {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.destination-item {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	max-width: 300px;
	text-align: center;
	padding: 20px;
	transition: transform 0.3s;
	height: 100%;
	margin: 10px;
	/* Adjusts spacing between items */
}

.destination-item img {
	width: 100%;
	border-radius: 8px;
}

.destination-item h3 {
	margin: 15px 0;
	font-size: 1.5em;
	color: #333;
}

.destination-item p {
	font-size: 1em;
	color: #666;
}

.destination-item a {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #ff6f61;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.destination-item a:hover {
	background-color: #e65b54;
}

.destination-item:hover {
	transform: translateY(-5px);
}

/* Gallery Section */
.gallery {
	padding: 50px 20px;
	background-color: #fff;
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.gallery-item {
	margin: 10px;
	width: calc(33.333% - 20px);
}

.gallery-item img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
	padding: 50px 20px;
	background-color: #dfdfdf;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
}

form {
	width: 45%;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form input,
form textarea,
form button {
	width: 100%;
	margin-bottom: 15px;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

form button {
	background-color: #ff6f61;
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

form button:hover {
	background-color: #e65b54;
}

.contact-info {
	width: 45%;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.contact-info h3 {
	margin-bottom: 20px;
	font-size: 1.8em;
	color: #333;
}

.contact-info p {
	font-size: 1em;
	color: #666;
	margin: 10px 0;
}

.contact-info .social-media {
	margin-top: 20px;
}

.contact-info .social-media a {
	margin: 0 10px;
	font-size: 1.5em;
	color: #666;
	transition: color 0.3s;
}

.contact-info .social-media a:hover {
	color: #ff6f61;
}

.footer {
	background: #000000;
	background: -webkit-linear-gradient(to right, #434343, #000000);
	background: linear-gradient(to right, #434343, #000000);
	color: #fff;
	padding: 20px 0;

}

.container {
	width: 60%;
	margin: 0 auto;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-section h3 {
	margin-top: 0;
}

.footer-section p {
	margin-bottom: -1px;
	color: #ddd;
}

.footer-section a {
	color: #ddd;
	text-decoration: none;
	transition: .5s ease;
}

.footer-section a:hover {
	color: #ff6f61;
}

.social-link {
	display: block;
	margin: 5px 0;
}

.footer-bottom {
	margin-top: 20px;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #fff;
}

::-webkit-scrollbar-track {
	background-color: #000;
	width: 50px;
}

/* Media Queries for Responsiveness */

@media (max-width: 1040px) {
	.header {
		padding: 15px 20px;
	}

	section {
		padding: 100px 20px;
	}

	.home .media-icons {
		right: 15px;
	}

	.header .navigation {
		display: none;
	}

	.header .navigation.active {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		background: rgba(1, 1, 1, .5);
	}

	.header .navigation .navigation-items a {
		color: #222;
		font-size: 1.2em;
		margin: 20px;
	}

	.header .navigation .navigation-items a:before {
		background: #222;
		height: 3px;
	}

	.header .navigation.active .navigation-items {
		background: #fff;
		width: 600px;
		max-width: 600px;
		margin: 20px;
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 5px;
	}

	.menu-btn {
		background: url(img/menu.png)no-repeat;
		background-size: 40px;
		background-position: center;
		width: 40px;
		height: 40px;
		cursor: pointer;
		transition: .3s ease;
	}

	.menu-btn.active {
		z-index: 999;
		background: url(img/close.png)no-repeat;
		background-size: 25px;
		background-position: center;
		transition: .3s ease;
	}
}

@media (max-width: 768px) {
	.destinations {
		flex-direction: column;
		align-items: center;
	}

	.gallery-item {
		width: calc(100% - 20px);
	}

	.contact-container {
		flex-direction: column;
		align-items: center;
	}

	form,
	.contact-info {
		width: 100%;
	}

	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}