:root {
    --primary: #7aa2ff;
    --primary-dark: #4361ee;
    --secondary: #b983ff;
    --accent: #f72585;
    --dark: #23272f;
    --dark-head: #191b1f;
    --light: #f8f9fa;
    --gray: #b0b8c1;
    --success: #4cc9f0;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.45);
    --border-radius: 12px;
}

.linkout {
	color: var(--primary);
}

.nodecoration {
	text-decoration: none;
	color: inherit;
}

.nodecoration:hover {
	text-decoration: underline;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
    background: var(--dark-head);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 25px 0;
	transition: var(--transition);
}

header.scrolled {
	padding: 10px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-icon {
	height: 40px;
	width: 40px;
}

.brand-icon {
	background: url('./favicon.png') no-repeat center center;
	background-size: contain;
	width: 40px;
	height: 40px;
}

.logo-text {
	align-items: center;
	color: var(--light);
	display: flex;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	height: 40px;
}

.logo-text span {
	color: var(--primary);
}

.logo-big {
	display: block;
}

.logo-small {
	display: none;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 22px;
}

.nav-links a {
	text-decoration: none;
	color: var(--light);
	font-weight: 500;
	font-size: 1.1rem;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-links > li > a {
	align-items: center;
	display: flex;
	gap: 7.5px;
}

.header-nav-link a {
    font-size: 1.3rem !important;
}

.mobile-li {
	display: none;
}

.nav-buttons {
	display: flex;
	gap: 15px;
}

.menu-toggle {
	display: none;
	cursor: pointer;
    height: 37.5px;
	margin: 1.25px;
    width: 37.5px;
}

.menu-icon {
    height: 37.5px;
    position: relative;
    width: 37.5px;
}

.line {
    position: absolute;
    height: 5px;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    left: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.line-1 {
    top: 0;
}

.line-2 {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.line-3 {
    bottom: 0;
}

.active .line-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.active .line-2 {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.active .line-3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.btn {
	align-items: center;
	display: flex;
	padding: 14px 32px;
	background: var(--primary);
	color: white;
	border-radius: 50px;
	gap: 12px;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow);
}

.btn:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.btn-secondary {
	background: var(--secondary);
}

.btn-secondary:hover {
	background: #5e0a9c;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--light);
}

.btn-outline:hover {
	background: var(--primary);
	color: white;
}

::-webkit-scrollbar {
    width: 7.5px;
    -webkit-appearance: none;
    z-index: 1000000;
}

::-webkit-scrollbar-thumb {
    background: #707070;
}

::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 1065px) {
	.nav-buttons {
		display: none;
	}
}

@media (max-width: 882px) {
	.menu-toggle {
		display: block;
	}

    header.scrolled .nav-links {
		top: 60px;
    }

	.nav-links {
		position: fixed;
		top: 90px;
		right: -100%;
		flex-direction: column;
		background: var(--dark);
		width: 80%;
		height: calc(100vh - 80px);
		padding: 40px 20px;
		transition: var(--transition);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		right: 0;
	}

	.nav-buttons {
		display: none;
	}

	.mobile-li {
		display: block;
	}
}

@media (max-width: 480px) {
	.logo-big {
		display: none;
	}

	.logo-small {
		display: block;
	}
}