/* MENU */
#burger-menu {
	position: fixed;
	top: 30px;
	left: 20px;
	z-index: 1200;
}

.burger-icon {
	cursor: pointer;
	user-select: none;
	color: #fff;
	transition: transform 0.2s ease;
}

.burger-icon:hover {
	transform: scale(1.2);
}

#menu-content {
	display: none;
	position: fixed;
	top: 70px;
	left: 20px;
	background: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	border-radius: 6px;
	min-width: 160px;
	padding: 10px;
	z-index: 1200;
}

#menu-content a {
	display: block;
	padding: 8px 12px;
	color: #000;
	text-decoration: none;
	text-align: left;
}

#menu-content a:hover {
	background: #f0f0f0;
}

#menu-content a i {
	margin-right: 0.4em;
	color: #fe0909;
	transition: transform 0.2s ease;
}

#menu-content a:hover i {
	transform: scale(1.2);
}