@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
	--primary: #0EA5E9;
	/* Vibrant Azure */
	--primary-dark: #0284C7;
	--bg-dark: #0F172A;
	--bg-darker: #0B0F19;
	--bg-card: #1E293B;
	--text-light: #F8FAFC;
	--text-muted: #94A3B8;
	--border-color: rgba(255, 255, 255, 0.1);
	--glass-bg: rgba(15, 23, 42, 0.7);
	--glass-border: rgba(255, 255, 255, 0.05);
	--font-sans: 'Inter', sans-serif;
	--font-display: 'Outfit', sans-serif;
}

body {
	font-family: var(--font-sans);
	background-color: var(--bg-dark);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.header,
.sub-header,
.content-headers {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.text-gradient {
	background: linear-gradient(135deg, #38BDF8, #0284C7);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Navigation - Glassmorphism Sticky Header */
.navbar {
	background: var(--glass-bg) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--glass-border);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
	padding: 1rem 0;
}

.navbar-brand img.logo {
	height: 56px;
	width: 60px;
	object-fit: contain;
	border-radius: 50%;
	background-color: white;
	/* Adding a background color to distinct the container */
	padding: 2px;
	/* Slight padding so the logo doesn't touch the edges */
	transition: transform 0.3s ease;
}

.navbar-brand:hover img.logo {
	transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
	color: var(--text-light);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 0.5rem 1.25rem;
	transition: color 0.3s ease;
	position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: var(--primary);
	transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .active>.nav-link {
	color: var(--primary);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .active>.nav-link::after {
	width: 80%;
}

/* Main Body Spacer for Fixed Nav */
.main-wrapper {
	margin-top: 80px;
	min-height: calc(100vh - 127px);
}

/* Buttons */
.btn-primary {
	background: var(--primary);
	border: none;
	font-weight: 600;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

/* Hero Section */
.hero-wrapper {
	position: relative;
	height: 100vh;
	margin-top: -80px;
	/* Offset fixed nav */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 0;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.6) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
}

/* Cards & Sections */
.glass-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border-color: rgba(14, 165, 233, 0.3);
}

/* Footer */
footer {
	background-color: var(--bg-darker);
	border-top: 1px solid var(--border-color);
	padding: 2rem 0;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	margin: 0 10px;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary);
}

/* Utilities */
.text-muted {
	color: var(--text-muted) !important;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
}