@import "normalized.css";

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

body {
	font-family: 'Overlock', sans-serif;
	margin: 0;
	background: #0f0f0f;
	color: #f5f5f5;
	line-height: 1.6;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(15, 15, 15, 0.9);
	backdrop-filter: blur(6px);
	flex-direction: row;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
	width: 100%;
	padding: 15px 40px;
	display: flex;
	justify-content: space-around;
}

.logo {
	font-size: 1.2rem;
	font-weight: bold;
	color: #4da6ff;
	text-align: center;
}

nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;

	list-style: none;

}

nav a {
	text-decoration: none;
	color: #f5f5f5;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 1px;

	transition: color 0.2s ease;
}

nav a:hover {
	color: #4da6ff;
}

nav a {
	position: relative;
}

nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #4da6ff;
	transition: width 0.25s ease;
}

nav a:hover::after {
	width: 100%;
}


.container {
	max-width: 1200px;
	margin: auto;
	padding: 40px;
}

h1 {
	font-size: 3rem;
	margin-bottom: 10px;
}

h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;

	text-align: center;
	min-height: 80vh;

	padding: 100px 20px;

	background: linear-gradient(180deg,
			#0f0f0f 0%,
			#141414 100%);
}

.hero-content {
	max-width: 800px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 10px;
}

.hero h2 {
	font-size: 1.8rem;
	color: #9fd3ff;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.2rem;
	opacity: 0.8;
	margin-bottom: 35px;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.primary-btn {
	background: #4da6ff;
	color: white;

	padding: 12px 26px;

	border-radius: 6px;

	text-decoration: none;
	font-weight: 600;

	transition: all .2s ease;
}

.primary-btn:hover {
	background: #2f8be6;
	transform: translateY(-2px);
}

.secondary-btn {
	border: 1px solid #4da6ff;

	padding: 12px 26px;

	border-radius: 6px;

	color: #4da6ff;

	text-decoration: none;

	font-weight: 600;
}

.secondary-btn:hover {
	background: #4da6ff;
	color: white;
}

section {
	margin-bottom: 80px;
}

.demo-reel {
	text-align: center;
	margin-bottom: 80px;
}

.reel-container {
	max-width: 900px;
	margin: auto;
}

.reel-container iframe {
	width: 100%;
	height: 500px;
	border-radius: 10px;
	border: none;
}

.project {
	display: flex;
	gap: 40px;
	align-items: center;
	margin-bottom: 80px;
}

.project img {
	width: 400px;
	border-radius: 10px;
}

.project-details {
	flex: 1;
}

.project .role {
	font-weight: bold;
	color: #9fd3ff;
	margin-bottom: 10px;
}

.project a {
	display: inline-block;
	margin-top: 15px;
	color: #4da6ff;
	text-decoration: none;
	font-weight: bold;
}

.project a:hover {
	text-decoration: underline;
}

.tools ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	padding: 0;
}

.tools li {
	background: #1e1e1e;
	padding: 8px 14px;
	border-radius: 6px;
}

.contact ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 20px;
}

footer {
	text-align: center;
	margin-top: 60px;
	opacity: 0.6;
}

@media (max-width: 600px) {
	.logo {
		max-width: 50px;

	}
}

@media (max-width:900px) {

	.project {
		flex-direction: column;
	}

	.project img {
		width: 100%;
	}

	.hero {
		padding: 60px 20px;
	}

	nav {
		padding: 12px 20px;
	}

	.logo {
		font-size: 0.725rem;
		line-height: 1.2;
	}

	nav ul {
		gap: 20px;
		font-size: 0.65rem;
	}


}