* {
	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('https://images.unsplash.com/photo-1605712916066-e143c317df72?q=80&w=1174&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 4rem;
	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;
	}
	
}

@media (min-width: 768px) {
	.hero {
		padding-top: 0rem;
	}
}


:root {
	--glow: 3;
}

@media (min-width: 465px) {
	.spacing {
		display: none;
	}
	:root{--glow: 1;}
}


/* 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;
}


/* Sections */
.intro, .services {
	padding: 60px 20px;
	background-color: #f9fafb;
	color: #222;
	line-height: 1.6;
}

.intro h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: #111;
}

.intro h3 {
	margin-top: 30px;
	color: #333;
}

.intro .tagline {
	margin-top: 40px;
	font-style: italic;
	color: #555;
}

.services h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: #111;
}

.service-list {
	list-style-type: none;
	padding: 0;
}

.service-list li {
	margin-bottom: 20px;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.solution-item {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.solution-item h3 {
	margin-top: 0;
	color: #333;
}







.main section {
	opacity: 0;
	font-size: 3rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease-in-out;
}

/* 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); }
}

.glow {
	color: orange;
	text-align: center;
	animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		text-shadow: 0 0 1px #ffa500, 0 0 5px #ffa500, 0 0 25px #ffa500, 0 0 20px #ffa500, 0 0 25px #ffa500, 0 0 30px #ffa500, 0 0 35px #ffa500;
	}
	
	to {
		text-shadow: 0 0 0px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 25px #ffa500, 0 0 30px #ffa500, 0 0 35px #ffa500, 0 0 40px #ffffff;
	}
}


section {
	padding: 40px 20px;
	margin: 20px auto;
	max-width: calc(0.92*100vw);
	text-align: center;
	border-radius: 20px;
	background-color: #f5f5f5; 
}

.intro { background-color: #f5f5f5; }
.services { background-color: #eaeaea; }
.solutions { background-color: #f5f5f5; }
.closing { background-color: #eaeaea; }

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

section p {
	font-size: 1.1rem;
	line-height: 1.5;
}

/*Button */
.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;
}


/* 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%;
	}
}
