@charset "utf-8";
/* 2025-07-18 by gw8.kr */
.topLogo {
	padding-bottom:20px;
	overflow:hidden;
}
.topLogo a{
	display:block; padding:0px;
	float:left;
}
.topLogo a img{
	display:block; width:60px;
}
.hamburger-menu {
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 1000;
}

.hamburger-button {
	width: 50px;
	height: 50px;
	background: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.hamburger-button:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	border-radius: 2px;
	transition: all 0.3s ease;
}

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

.hamburger-button.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

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

.speech-bubble {
	position: absolute;
	top: 65px;
	right: 0;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	min-width: 280px;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.speech-bubble::before {
	content: '';
	position: absolute;
	top: -10px;
	right: 20px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid white;
}

.speech-bubble.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-item {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
	font-size:14px;
	text-decoration:none;
	color: #333;
	border:1px solid #fff;
	border-radius: 10px;
	margin: 5px 0;
	transition: all 0.3s ease;
	font-weight: 500;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.menu-item:hover {
	border:1px solid RGBA(0,0,0,0.1);
	text-decoration:none;
}

.menu-item:hover::before {
	left: 100%;
}

.menu-divider {
	height: 1px;
	background: #eee;
	margin: 10px 0;
}

.demo-content {
	background: white;
	border-radius: 20px;
	padding: 40px;
	margin-top: 100px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-content h1 {
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}

.demo-content p {
	color: #666;
	line-height: 1.6;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.hamburger-menu {
		top: 20px;
		right: 20px;
	}

	.speech-bubble {
		right: 0px;
		padding:15px;
		min-width: 200px;
	}

	.demo-content {
		margin-top: 80px;
		padding: 30px 20px;
	}
}