html {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-family: inter-var, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
	min-height: 100vh;
	color: var(--text-dark);
	background: url("../images/background.png") no-repeat center center fixed;
	background-size: cover;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

.background {
	z-index: var(--z-background);
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url("../images/background.png");
	background-size: cover;
	pointer-events: none;
}

.content {
	position: relative;
	z-index: var(--z-content);
	min-height: 100vh;
	width: 100%;
	margin: auto;
	padding-top: 110px;
	display: flex;
	flex-direction: column;
}

nav {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 90px;
	padding: 0 60px;
	width: calc(100% - 120px);
	max-width: 1080px;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: var(--z-navigation);
	transition: all 0.3s ease;
}

nav.scrolled {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	margin: 35px auto;
	border-radius: 15px;
	height: 85px;
	padding: 0 40px;
	width: calc(100% - 80px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
	display: flex;
	align-items: center;
	height: 100%;
	margin-right: 60px;
}

.logo a {
	display: flex;
	align-items: center;
	height: 100%;
}

.logo img {
	width: 100px;
	height: auto;
	max-width: 100px;
	object-fit: contain;
}

nav ul {
	display: flex;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
}

nav ul.left-menu {
	margin-right: auto;
}

nav ul.right-menu {
	margin-left: auto;
}

nav ul li {
	margin-right: 30px;
}

nav ul li:last-child {
	margin-right: 0;
}

nav ul li a {
	text-decoration: none;
	color: #000;
	font-size: 1rem;
}

nav ul li a:hover {
	color: #6161F7;
}

.main {
	text-align: center;
	margin-top: auto;
	padding: 0 60px;
	flex: 1 0 auto;
}

.hiring {
	position: relative;
}

.hiring:after {
	content: "";
	display: inline-block;
	border: 1px solid #6161F7;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	background-color: #6161F7;
	position: absolute;
	top: 0;
	margin-left: 4px;
}

/* Footer styles */
.footer {
	padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xl);
	flex-shrink: 0;
	margin-top: auto;
	background-color: white;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
}

/* Footer left section */
.footer-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--spacing-md);
	margin-right: var(--spacing-xxl);
}

.footer-logo {
	width: 80px;
	height: auto;
	object-fit: contain;
}

.footer-social {
	display: flex;
	gap: var(--spacing-sm);
	align-items: center;
}

.footer-social a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 20px;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.footer-social a:hover {
	opacity: 1;
}

/* Footer right section */
.footer-right {
	display: flex;
	flex-direction: row;
	gap: var(--spacing-sm);
	align-items: flex-start;
}

.footer-section {
	min-width: 120px;
	margin-right: var(--spacing-xl);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-section:last-child {
	margin-right: 0;
}

.footer-section h3 {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: var(--spacing-sm);
	margin-top: 0;
	color: var(--text-dark);
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	align-items: flex-start;
}

.footer-links a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 16px;
	transition: opacity 0.2s ease;
	opacity: 0.8;
	display: flex;
	align-items: center;
}

.footer-links a:hover {
	opacity: 1;
}

/* Hiring indicator dot */
.hiring-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: var(--primary-color);
	border-radius: 50%;
	margin-left: 5px;
}

.footer-copyright {
	text-align: center;
	padding: var(--spacing-md) 0;
	color: var(--text-light);
	font-size: 12px;
}

@media (max-width: 1080px) {
	.content {
		overflow-y: scroll;
		overflow-x: hidden;
	}

	.main {
		margin-top: 130px;
	}

	h1 {
		font-size: 4em;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 0 20px;
		width: calc(100% - 40px);
		height: 75px;
	}

	nav.scrolled {
		padding: 0 20px;
		width: calc(100% - 40px);
		height: 70px;
		margin: 20px auto;
	}

	.logo {
		margin-right: 20px;
		padding: 15px 0;
	}

	.logo img {
		max-width: 80px;
	}

	nav ul li {
		margin-right: 15px;
	}

	.content {
		overflow-x: hidden;
	}

	.main {
		margin: 0 0 0 0;
	}

	h1 {
		font-size: 2.5em;
		margin: 10px 0 auto;
	}

	h3 {
		font-size: 1.5em;
		margin: 14px 0;
	}

	p {
		margin: 10px 0;
	}

	input {
		width: 100%;
		font-size: 14px;
	}

	button {
		display: inline-block;
		width: 100%;
		font-size: 14px;
	}

	.footer {
		padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
		gap: var(--spacing-md);
	}

	.footer-content {
		flex-direction: column;
		gap: var(--spacing-xl);
		align-items: center;
	}

	.footer-right {
		margin-left: 0;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		gap: var(--spacing-lg);
	}

	.footer-left {
		align-items: center;
		width: 100%;
		margin-right: 0;
	}
	
	.footer-section {
		min-width: 120px;
		margin-right: 0;
		align-items: center;
	}
	
	.footer-links {
		align-items: center;
	}
	
	.footer-section h3 {
		text-align: center;
	}
}