/* General Styles */
body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	scroll-behavior: smooth;
	background-color: #000;
	color: #fff;
}

nav {
	position: fixed;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	padding: 10px 0;
	z-index: 1000;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 0;
}

nav li {
	margin: 0 15px;
}

nav a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

section {
	padding: 100px 20px;
	text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	color: #fff;
}

#home {
	position: relative;
}

#home .background {
	position: relative;
}

#home img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

#home .arrow {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

#home .arrow span {
	display: block;
	font-size: 24px;
	margin-bottom: 10px;
}

#home .arrow img {
	width: 50px;
}

#home .intro {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
}

#home .intro h1 {
	font-size: 48px;
	margin: 0;
}

#home .intro p {
	font-size: 24px;
}

#about,
#project,
#contact {
	background-color: #000;
}

#about h2,
#project h2,
#contact h2 {
	color: #ff551a;
	margin-bottom: 20px;
}

#project .button {
	display: inline-block;
	padding: 10px 20px;
	background: #ff551a;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}

.social-links {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.social-links a {
	color: #ff551a;
	font-size: 36px;
	margin: 0 15px;
}

footer {
	background: #000;
	color: #fff;
	padding: 20px;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
	nav ul {
		flex-direction: column;
		background: rgba(0, 0, 0, 0.9);
	}

	nav li {
		margin: 10px 0;
	}

	nav a {
		display: block;
		padding: 10px;
	}

	#home .intro h1 {
		font-size: 36px;
	}

	#home .intro p {
		font-size: 18px;
	}
}