/* Header Social Links */
.header__social {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-right: 20px;
}

.header__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.header__social-link:hover {
	background: rgba(130, 15, 201, 0.2);
	transform: translateY(-2px);
}

.header__social-link svg {
	transition: all 0.3s ease;
}

.header__social-link:hover svg path {
	fill: #820FC9;
}

@media (max-width: 768px) {
	.header__social {
		display: none;
	}
}