.navbar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	
	width: 100%;
	background: #f3f3f3;
	border-bottom: 1px solid #d3d3d3;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	padding: 14px 28px;
	
	box-sizing: border-box;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 30px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none; /*ensures that the logo doesn't get an underline from the "href"*/
}

.brand-icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
	display: block;
}

.brand-text {
	color: #c53a3a;
	font-size: 28px;
	font-weight: 700;
}

.nav-links {
	display: flex;
	gap: 24px;
}

.nav-links a,
.signup-link {
	text-decoration: none;
	color: #555;
	font-size: 16px;
	transition: 0.2s ease;
	
	/*The "sign out" is a button, so making the background and borders disappear*/
	background: none;
	border: none;
}

.nav-links a:hover,
.signup-link:hover {
	color: #111;
}

.nav-links a.active {
	color: #d88923;
	font-weight: 600;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.signin-btn,
.submit-btn {
	border: none;
	text-decoration: none;
	color: #111;
	background: #ef9a9a;
	padding: 11px 22px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease;
}

.signin-btn:hover,
.submit-btn:hover {
	background: #e68989;
}

@media (max-width: 760px) {
	.navbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.nav-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.nav-links {
		flex-wrap: wrap;
	}

	.brand-text {
		font-size: 22px;
	}
}