@charset "euc-kr";

/* 메인 히어로 섹션 */
.hero-section {
	background: url('./img/0.jpg') center/cover no-repeat;
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.hero-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10;
}

.title-container {
	position: absolute;
	top: 15%;
	left: 8%;
	z-index: 15;
	text-align: left;
}

.main-title {
	font-size: 8rem;
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 0.2em 0;
	line-height: 1.1;
	letter-spacing: -3px;
	text-shadow: 6px 6px 25px rgba(0, 0, 0, 0.9);
}

.sub-title {
	font-size: 6rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.2em 0;
	line-height: 1.2;
	letter-spacing: -2px;
	text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.9);
}

.sub-subtitle {
	font-size: 4rem;
	font-weight: 700;
	color: #000000;
	margin: 0 0 0.5em 0;
	line-height: 1.3;
	letter-spacing: -1px;
	text-shadow: 4px 4px 15px rgba(255, 255, 255, 0.9);
}

.cta-container {
	position: absolute;
	bottom: 25%;
	left: 8%;
	z-index: 15;
}

.cta-button {
	background: linear-gradient(135deg, #ff4200, #ff6b3d, #ff4200);
	color: white;
	border: none;
	padding: 35px 90px;
	font-size: 2.5rem;
	border-radius: 70px;
	cursor: pointer;
	font-weight: bold;
	box-shadow: 0 25px 60px rgba(255, 66, 0, 0.7);
	transition: all 0.4s ease;
}

.cta-button:hover {
	/* transform 효과 완전 제거로 배경 떨림 방지 */
	box-shadow: 0 30px 70px rgba(255, 66, 0, 0.8);
}

.highlight-card {
	position: absolute;
	right: 5%;
	top: 50%;
	/* transform 효과 완전 제거로 배경 떨림 방지 */
	margin-top: -150px; /* transform: translateY(-50%) 대신 직접 마진 사용 */
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
	backdrop-filter: blur(25px);
	padding: 3.5em 3.5em;
	border-radius: 35px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(255, 255, 255, 0.4);
	max-width: 450px;
	z-index: 15;
}

.highlight-content {
	text-align: center;
}

.highlight-text {
	font-size: 1.7rem;
	font-weight: 600;
	color: #333333;
	margin: 0 0 1em 0;
	line-height: 1.4;
}

.highlight-text:last-child {
	margin-bottom: 0;
}

.highlight-accent {
	color: #ff0000;
	font-weight: 800;
}

.bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
	z-index: 1;
}

/* PC 전체화면 설정 */
@media screen and (min-width: 769px) {
	.hero-section {
		width: 100vw;
		height: 100vh;
		position: relative;
		left: 50%;
		right: 50%;
		margin-left: -50vw;
		margin-right: -50vw;
	}
	
	.hero-content {
		width: 100vw;
		height: 100vh;
	}
	
	/* 혜택 섹션 전체화면 */
	.benefits-section {
		width: 100vw;
		left: 50%;
		right: 50%;
		margin-left: -50vw;
		margin-right: -50vw;
	}
	

	

}

/* 반응형 디자인 */
@media screen and (max-width: 1200px) {
	.main-title {
		font-size: 6rem;
	}
	
	.sub-title {
		font-size: 4.5rem;
	}
	
	.sub-subtitle {
		font-size: 3rem;
	}
	
	.cta-button {
		padding: 30px 70px;
		font-size: 2rem;
	}
}

/* 모바일 히어로 섹션 스타일 */
.hero-content-mobile {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2em 1em;
	z-index: 10;
}

.floating-elements-mobile {
	position: relative;
	width: 100%;
	height: 100%;
}

.floating-circle-mobile {
	position: absolute;
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #ff4200, #ff6b3d);
	border-radius: 50%;
	opacity: 0.3;
	animation: float 6s ease-in-out infinite;
	top: 10%;
	left: 5%;
}

.floating-square-mobile {
	position: absolute;
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #00d4ff, #0099cc);
	border-radius: 10px;
	opacity: 0.2;
	animation: float 8s ease-in-out infinite reverse;
	top: 15%;
	right: 5%;
}

.title-container-mobile {
	text-align: center;
	margin-bottom: 2em;
}

.main-title-mobile {
	font-size: 2.8rem;
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 0.3em 0;
	line-height: 1.2;
	letter-spacing: -1px;
	text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
	animation: titleGlow 3s ease-in-out infinite alternate;
}

.sub-title-mobile {
	font-size: 2.2rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.3em 0;
	line-height: 1.3;
	letter-spacing: -0.5px;
	text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
	animation: subtitlePulse 2s ease-in-out infinite;
}

.sub-subtitle-mobile {
	font-size: 1.6rem;
	font-weight: 700;
	color: #000000;
	margin: 0 0 1em 0;
	line-height: 1.3;
	letter-spacing: -0.5px;
	text-shadow: 3px 3px 15px rgba(255, 255, 255, 0.9);
	animation: textPulse 2.5s ease-in-out infinite;
}

.cta-container-mobile {
	margin-bottom: 2em;
}

.cta-button-mobile {
	background: linear-gradient(135deg, #ff4200, #ff6b3d, #ff4200);
	background-size: 200% 200%;
	color: white;
	border: none;
	padding: 20px 50px;
	font-size: 1.3rem;
	border-radius: 50px;
	cursor: pointer;
	font-weight: bold;
	box-shadow: 0 15px 40px rgba(255, 66, 0, 0.6);
	transition: all 0.4s ease;
	/* transform 효과 완전 제거로 배경 떨림 방지 */
	animation: buttonGlow 3s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

.button-text {
	position: relative;
	z-index: 2;
}

.button-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: buttonShine 3s ease-in-out infinite;
}

.highlight-card-mobile {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
	backdrop-filter: blur(20px);
	padding: 2em 2.5em;
	border-radius: 25px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.4);
	margin: 1em;
	animation: cardFloat 4s ease-in-out infinite;
	z-index: 15;
}

.highlight-content-mobile {
	text-align: center;
}

.highlight-text-mobile {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333333;
	margin: 0 0 0.8em 0;
	line-height: 1.4;
}

.highlight-text-mobile:first-child {
	font-size: 1.3rem;
	font-weight: 700;
}

.highlight-accent {
	color: #ff0000;
	font-weight: 800;
	animation: textPulse 2s ease-in-out infinite;
}

/* 모바일 애니메이션 */
@keyframes float {
	0%, 100% { /* transform 효과 완전 제거로 배경 떨림 방지 */ }
	50% { /* transform 효과 완전 제거로 배경 떨림 방지 */ }
}

@keyframes titleGlow {
	0%, 100% { text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8); }
	50% { text-shadow: 3px 3px 25px rgba(255, 66, 0, 0.6); }
}

@keyframes subtitlePulse {
	0%, 100% { /* transform 효과 완전 제거로 배경 떨림 방지 */ }
	50% { /* transform 효과 완전 제거로 배경 떨림 방지 */ }
}

@keyframes textPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

@keyframes buttonGlow {
	0%, 100% { box-shadow: 0 15px 40px rgba(255, 66, 0, 0.6); }
	50% { box-shadow: 0 15px 50px rgba(255, 66, 0, 0.8); }
}

@keyframes buttonShine {
	0% { left: -100%; }
	100% { left: 100%; }
}

@keyframes cardFloat {
	0%, 100% { /* transform 효과 완전 제거로 배경 떨림 방지 */ }
	50% { /* transform 효과 완전 제거로 배경 떨림 방지 */ }
}

@media screen and (max-width: 768px) {
	.title-container {
		top: 10%;
		left: 5%;
		text-align: center;
	}
	
	.main-title {
		font-size: 3.5rem;
	}
	
	.sub-title {
		font-size: 2.8rem;
	}
	
	.sub-subtitle {
		font-size: 2rem;
	}
	
	.cta-container {
		bottom: 20%;
		left: 50%;
		/* transform 효과 완전 제거로 배경 떨림 방지 */
		margin-left: auto;
		margin-right: auto;
	}
	
	.cta-button {
		padding: 25px 60px;
		font-size: 1.8rem;
	}
	
	.highlight-card {
		position: relative;
		right: auto;
		top: auto;
		/* transform 효과 완전 제거로 배경 떨림 방지 */
		margin: 2em auto;
		max-width: 90%;
		padding: 2em;
	}
}

@media screen and (max-width: 480px) {
	.main-title {
		font-size: 2.8rem;
	}
	
	.sub-title {
		font-size: 2.2rem;
	}
	
	.sub-subtitle {
		font-size: 1.6rem;
	}
	
	.cta-button {
		padding: 20px 50px;
		font-size: 1.5rem;
	}
	
	.highlight-card {
		padding: 1.5em;
	}
	
	.highlight-text {
		font-size: 1.3rem;
	}
}
