@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* 한국 스타일 배색과 디자인 */
:root {
	--primary-color: #4263eb;
	/* 밝은 파란색 - 신뢰감을 주는 색상 */
	--secondary-color: #5f3dc4;
	/* 보라색 - 고급스러움을 더하는 색상 */
	--accent-color: #fcc419;
	/* 밝은 노란색 - 강조 색상 */
	--dark-color: #212529;
	/* 짙은 회색 */
	--light-color: #f8f9fa;
	/* 밝은 그레이 */
}

body {
	font-family: 'Noto Sans KR', sans-serif;
	background-color: var(--light-color);
	line-height: 1.7;
	color: #495057;
}

.gradient-text {
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.primary-gradient {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.secondary-gradient {
	background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.accent-gradient {
	background: linear-gradient(135deg, var(--accent-color) 0%, #ff922b 100%);
}

.benefit-card {
	transition: all 0.3s ease;
	border-radius: 16px;
	border-top: 4px solid transparent;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
	border-top: 4px solid var(--primary-color);
}

.countdown-item {
	width: 70px;
	height: 70px;
	margin: 0 8px;
	border-radius: 14px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hover-effect {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-hover-effect:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: all 0.6s ease;
	z-index: -1;
}

.btn-hover-effect:hover:before {
	left: 100%;
}

.testimonial-card {
	border-radius: 16px;
	transition: all 0.3s ease;
	border-left: 4px solid var(--primary-color);
	height: 100%;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
	position: relative;
}

.nav-link:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.nav-link:hover:after {
	width: 100%;
}

.floating-animation {
	animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-15px);
	}

	100% {
		transform: translateY(0px);
	}
}

.korean-style {
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-container {
	transition: all 0.3s ease;
	border-radius: 50%;
}

.icon-container:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.korean-input {
	border-radius: 12px;
	border: 2px solid #e6e8f0;
	transition: all 0.3s ease;
	background-color: rgba(255, 255, 255, 0.8);
}

.korean-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(66, 99, 235, 0.2);
	transform: translateY(-2px);
}

.glowing {
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		box-shadow: 0 0 10px rgba(66, 99, 235, 0.6);
	}

	to {
		box-shadow: 0 0 25px rgba(66, 99, 235, 0.9), 0 0 35px rgba(95, 61, 196, 0.7);
	}
}

.blur-bg {
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.1);
}

.faq-card {
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-card:hover {
	transform: translateY(-5px);
}

.sticky-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.cta-button {
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 1rem 2rem;
}

/* Custom scroll bar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}
