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

body, html {
	height: 100%;
	font-family: Arial, sans-serif;
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

/* Hero Background */
@media (max-width: 600px) {
	.hero { background: url('../assets/heroes/lander_mobile.jpeg') no-repeat center center/cover; }
}

@media (min-width: 601px) {
        .hero { background: url('../assets/heroes/lander.jpeg') no-repeat center center/cover; }
}

.hero {
	position: relative;
	height: 100vh;
}

/* Dark overlay */
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
}

/* Navbar */
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	z-index: 10;
	backdrop-filter: blur(6px);
}

nav .logo {
	font-size: 1.4rem;
	font-weight: bold;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: #00c3ff;
}

/* Hero Content */
.content {
	position: relative;
	z-index: 5;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 0 1rem;
	overflow: visible;
}

.content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	animation: fadeInDown 1s ease-in-out;
}

.content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	animation: fadeInUp 1.5s ease-in-out;
}

.btn {
	padding: 0.8rem 2rem;
	margin: 0.5rem;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 5px;
	animation: fadeInUp 2s ease-in-out;
	transition: all 0.3s ease;
}

.btn-primary {
	background: #00c3ff;
	color: white;
	text-decoration: none;
}

.btn-primary:hover {
	background: #0099cc;
	transform: scale(11);
}

.btn-secondary {
	background: transparent;
	border: 2px solid white;
	color: white;
	text-decoration: none;
}

.btn-secondary:hover {
	background: white;
	color: black;
}


.more {
	padding: 0.2rem 0.5rem;
	margin: 0.125rem;
	border: none;
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: bold;
	border-radius: 5px;
	animation: fadeInUp 2s ease-in-out;
	transition: all 3s ease;
}

.btn-tertiary {
	background: #00c3ff;
	color: white;
	text-decoration: none;
}

.btn-tertiary:hover {
	background: #0099cc;
	transform: scale(1.1);
}


/* Sections */
section {
	padding: 5rem 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
}

section.show {
	opacity: 1;
	transform: translateY(0);
}

section h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #222;
}

section p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #444;
	max-width: 600px;
}

section img {
	width: 400px;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Alternate layouts */
#about, #contact {
	flex-direction: row;
}

#services {
	flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 900px) {
	section {
		flex-direction: column !important;
		text-align: center;
	}
	section img {
		width: 100%;
		max-width: 500px;
	}
	nav ul {
		gap: 1rem;
	}
	.content h1 {
		font-size: 2rem;
	}
	.content p {
		font-size: 1rem;
	}
}

@media (max-width: 364px) {
	.btn {
		display: inline-flex
	}
}

/* Animations */
@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-50px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(50px); }
	to { opacity: 1; transform: translateY(0); }
}


/* Footer */
footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 2rem 1rem;
	background-color: black;
	color: white;
}

.logo-container {
	flex: 0 0 auto;
	margin-right: 1rem;
}
.responsive-logo {
	max-width: 120px;
	width: 100%;
	height: auto;
	display: block;
}

.footer-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

#copy {
	font-size: 12px;
	margin: 0;
}

#footer-line {
	width: 100%;
	max-width: 700px;
	height: 2px;
	background-color: lightgrey;
	border: none;
	margin: 0.25rem 0;
}

.footer-links {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 700px;
	gap: 0.5rem;
}

.footer-link {
	flex: 1 1 0;
	min-width: 80px;
	text-align: center;
	color: lightgrey;
	text-decoration: none;
	padding: 0.5rem 0;
	font-weight: bold;
}
.footer-link:hover {
	color: white;
}

@media (max-width: 600px) {
	footer {
		align-items: center;
	}
	.logo-container {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 1rem;
	}
	.footer-content {
		width: 100%;
		align-items: center;
	}
	.footer-links {
		flex-direction: column;
		gap: 0.5rem;
	}
	.footer-link {
		min-width: 0;
		width: 100%;
	}
}
