/* Burger Menu */
.burger-menu {
	position: relative;
	padding: 2px;
}

.burger-btn {
	background: none;
	border: none;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 8px;
}

.burger-line {
	width: 24px;
	height: 3px;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger-btn.active .burger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active .burger-line:nth-child(2) {
	opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	padding: 20px;
	min-width: 180px;
	display: none;
	z-index: 20;
}

.mobile-menu.active {
	display: block;
}

.mobile-signin-btn {
	background: white;
	color: black;
	border: #202122;
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: block;
	text-align: center;
	width: 100%;
}

.mobile-signin-btn:hover {
	background: #0056b3;
}

@media (max-width: 768px) {
	
}

@media (max-width: 480px) {
	.burger-btn {
		width: 36px;
		height: 36px;
	}
	
	.burger-line {
		width: 20px;
	}
}

.signin-btn {
	background: #202122;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 0.25em;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
	text-decoration: none;
}

.signin-btn:hover {
	background: #0056b3;
}