* {
	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 */
.hero {
	position: relative;
	height: calc(100vw * 0.5625);
	width: 100vw;
	background: url('../assets/heroes/contact-us.jpeg') no-repeat center center/cover;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

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

@media (max-width: 768px) {
	.hero {
		height: calc(100vw * 0.75);
	}
	
	h1 {
		font-size: 4em;
		line-height: 1.2;
	}
	
}


/* 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;
	transition: all 3s ease;
}

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

.btn-tertiary:hover {
	background: #0099cc;
}

/* Sections */
section {
	display: flex;
	padding: 2rem;
	max-width: calc(0.92*100vw);
	margin: auto;
	background-color: #fff;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-radius: 10px;
	box-shadow: 0 0 40px rgba(0,0,0,0.14);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	animation: fadeInUp 1.5s ease-in-out;
	transition: all 0.3s ease;
}

section h2 {
	color: rgb(74, 161, 2);
	/* or #183E0C, old logo */
}

section a {
	color: black;
	font-weight: bold;
}

section br {
	display: block;
	margin: 10px 0;
}

section img{
	width: 60px;
}

/* Responsive */
@media (max-width: 900px) {
	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%;
	}
}
