@font-face {
	font-family: 'Pretendard-Regular';
	src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Danjo-bold-Regular';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-1@1.1/Danjo-bold-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	 font-family: 'DungGeunMo';
	 src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
	 font-weight: normal;
	 font-style: normal;
}
body {
	font-family: 'DungGeunMo', 'Danjo-bold-Regular', 'Pretendard-Regular', 'Noto Sans KR', sans-serif;
	background-color: #f8f9fa;
	overflow-x: hidden;
}

.navbar {
	transition: all 0.3s ease;
}
.navbar.scrolled {
	background-color: rgba(33, 37, 41, 0.95) !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-section {
	position: relative;
	background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
	color: white;
	padding: 150px 0 120px;
	overflow: hidden;
}
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}
.hero-shape {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	overflow: hidden;
}
.hero-content {
	position: relative;
	z-index: 2;
}
.feature-box {
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	height: 100%;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	background: white;
	border-bottom: 4px solid transparent;
	overflow: hidden;
}
.feature-box:hover {
	transform: translateY(-10px);
	border-bottom: 4px solid #4e73df;
}
.feature-box::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 60px;
	height: 60px;
	background: #f8f9fa;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.5s ease;
}
.feature-box:hover::before {
	opacity: 1;
	transform: scale(5);
	z-index: -1;
}
.feature-icon {
	font-size: 3rem;
	margin-bottom: 25px;
	color: #4e73df;
	position: relative;
	display: inline-block;
}
.feature-icon::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: rgba(78, 115, 223, 0.2);
	border-radius: 50%;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.3s ease;
}
.feature-box:hover .feature-icon::after {
	width: 50px;
	height: 50px;
	opacity: 1;
}
.btn-google {
	background-color: #fff;
	color: #555;
	border: 1px solid #ddd;
	display: inline-flex;
	align-items: center;
	padding: 12px 30px;
	font-weight: 500;
	border-radius: 50px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.btn-google:hover {
	background-color: #f1f1f1;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}
.btn-google img {
	margin-right: 10px;
	width: 20px;
}
.btn-primary {
	background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
	border: none;
	border-radius: 50px;
	padding: 12px 30px;
	font-weight: 500;
	transition: all 0.3s;
}
.btn-primary:hover {
	box-shadow: 0 5px 15px rgba(78, 115, 223, 0.4);
	transform: translateY(-2px);
}
.how-it-works-step {
	transition: all 0.5s ease;
}
.how-it-works-step:hover {
	transform: translateX(10px);
}
.step-circle {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
	color: white;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.how-it-works-step:hover .step-circle {
	transform: scale(1.1) rotate(10deg);
}
.accordion-button:not(.collapsed) {
	background-color: #eef2ff;
	color: #4e73df;
}
.accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}
.footer {
	background: linear-gradient(135deg, #343a40 0%, #1d2124 100%);
	color: white;
	padding: 60px 0 30px;
}
.footer a {
	transition: all 0.3s ease;
}
.footer a:hover {
	color: #4e73df !important;
	text-decoration: none;
}
.social-icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s ease;
}
.social-icon:hover {
	background-color: #4e73df;
	transform: translateY(-3px);
}

/* Cursor animation */
.cursor {
	position: fixed;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: rgba(78, 115, 223, 0.5);
	pointer-events: none;
	mix-blend-mode: difference;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: transform 0.1s;
}

/* Additional animations for section transitions */
.section-transition {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}
.section-transition.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Call to action pulse */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(78, 115, 223, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(78, 115, 223, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(78, 115, 223, 0);
	}
}
.btn-pulse {
	animation: pulse 2s infinite;
}

/* Word typing effect for hero section */
.typing-container {
	height: 1.5em;
	display: inline-block;
	margin-bottom: 20px;
}
.typing-text {
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	font-weight: 700;
	color: #fff;
}
.typing-text::after {
	content: '|';
	position: absolute;
	right: 0;
	animation: blink 1s infinite;
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
.logo-image {
	width:30px;			
}