/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Crimson Text', 'Times New Roman', serif;
	margin: 0;
	padding: 0;
	background-color: #000;
	color: #fff;
	overflow-x: hidden;
	line-height: 1.6;
}

/* Header Navigation */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
	padding: 1.5rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: flex-end;
}

.nav-links {
	display: flex;
	gap: 3rem;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
	width: 100%;
}

.nav-link:hover {
	opacity: 0.8;
}

/* Hero Section with Carousel */
.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.carousel {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
    transition: transform 2s ease-in-out;
}

.carousel-slide {
	position: relative;
	min-width: 100%;
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.1) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
	z-index: 10;
}

.logo-container {
	text-align: center;
	max-width: 400px;
	width: 90%;
}

@media (min-width: 769px) {
	.logo-container {
		max-width: 600px;
		width: 95%;
	}
}

.logo {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

/* Main Content */
.content {
	position: relative;
	z-index: 3;
	background-color: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
}

.section {
	padding: 5rem 2rem;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.section-dark {
	background-color: rgba(0, 0, 0, 0.9);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
	letter-spacing: 0.05em;
}

.section-text {
	font-size: clamp(1rem, 2vw, 1.2rem);
	margin-bottom: 1.5rem;
	opacity: 0.9;
	line-height: 1.8;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.lead {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 300;
	margin-bottom: 3rem;
	text-align: center;
	opacity: 0.95;
}

/* About Content */
.about-content {
	text-align: center;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #fff;
}

.feature-card p {
	opacity: 0.85;
	line-height: 1.7;
}


/* CTA Section */
.cta-section {
	text-align: center;
	padding: 6rem 2rem;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2.5rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border-radius: 4px;
}

.cta-button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cta-secondary {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Map Container */
.map-container {
	margin-top: 3rem;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container {
	margin-top: 2rem;
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container video {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.map-container iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: none;
}

/* Footer */
.footer {
	position: relative;
	z-index: 3;
	background-color: rgba(0, 0, 0, 0.95);
	padding: 2rem;
	text-align: center;
	opacity: 0.7;
}

.footer p {
	margin: 0.5rem 0;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		gap: 2rem;
	}

	.nav-link {
		font-size: 0.9rem;
	}

	.section {
		padding: 3rem 1.5rem;
	}

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


	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-button {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.logo-container {
		max-width: 300px;
	}

	.nav-links {
		gap: 1.5rem;
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Loading State */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.content {
	animation: fadeIn 1s ease-in;
}

/* Carousel Navigation Dots */
.carousel-dots {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 20;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.carousel-dot.active {
	background-color: rgba(255, 255, 255, 1);
	transform: scale(1.2);
}

.carousel-dot:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
	.carousel-dots {
		bottom: 1rem;
		gap: 0.4rem;
	}

	.carousel-dot {
		width: 10px;
		height: 10px;
	}
}