/* Main page section 1 (hero) only */
#main_wrap {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.main-hero {
	min-height: 600px;
	height: 1100px;
	background: #0a2a4d;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.main-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-left: 350px;
	margin-bottom: 0;
	margin-top: 300px;
	min-height: 400px;
}

.main-hero-content h1 {
	color: #fff;
	font-size: 72px;
	font-family: "Pretendard", "Apple SD Gothic Neo", Arial, sans-serif;
	font-weight: 700;
	line-height: 90px;
	word-break: keep-all;
	word-wrap: break-word;
	letter-spacing: -1.2px;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
	text-align: left;
}

.main-hero-content .main-hero-desc {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.7;
	color: #fff;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.16);
	margin-top: 100px;
	margin-bottom: 0.5rem;
	text-align: left;
}

.main-hero-icons {
	position: absolute;
	right: 4vw;
	bottom: 7vw;
	display: flex;
	flex-direction: column;
	gap: 16px;
	z-index: 2;
}

.main-hero-icons .hero-icon-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.main-hero-icons .hero-icon-btn:hover {
	background: #e6f6ff;
}

.main-hero-icons .hero-icon-btn img,
.main-hero-icons .hero-icon-btn svg {
	width: 24px;
	height: 24px;
}

.main-hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	opacity: 0.7;
	font-size: 0.95rem;
}

.main-hero-scroll .scroll-mouse {
	display: block;
	margin: 0 auto 4px auto;
	width: 22px;
	height: 32px;
	border: 2px solid #fff;
	border-radius: 12px;
	position: relative;
}

.main-hero-scroll .scroll-mouse::after {
	content: "";
	display: block;
	width: 4px;
	height: 8px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	top: 8px;
	transform: translateX(-50%);
	animation: scroll-move 1.2s infinite alternate;
}

/* 반응형: 태블릿 */
@media (max-width: 1024px) {
	.main-hero-content {
		margin-left: 40px;
		margin-top: 120px;
	}

	.main-hero-content h1 {
		font-size: 7vw;
		line-height: 8vw;
	}

	.main-hero-content .main-hero-desc {
		font-size: 2.5vw;
		margin-top: 40px;
	}
}

/* 반응형: 모바일 */
@media (max-width: 768px) {
	.main-hero {
		height: auto !important;
		width: 100%;
		overflow: hidden;
		padding: 0;
		position: relative;
		background: transparent !important;
	}

	.main-hero-bg {
		display: block !important;
		position: relative !important;
		width: 100% !important;
		height: 600px !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		margin: 0 !important;
		padding: 0 !important;
		opacity: 1;
		transition: opacity 1s ease-in-out;
	}

	.main-hero-bg#hero-bg-2 {
		opacity: 0;
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 600px !important;
		transition: opacity 1s ease-in-out;
	}

	#main_wrap .main_slide {
		display: none !important;
	}

	.main-hero-content {
		margin-left: 16px;
		margin-right: 16px;
		margin-top: 80px;
		align-items: flex-start;
	}

	.main-hero-content h1 {
		font-size: 2.1rem;
		line-height: 2.6rem;
		text-align: left;
	}

	.main-hero-content .main-hero-desc {
		font-size: 1rem;
		margin-top: 24px;
		text-align: left;
	}

	.main-hero-icons {
		right: 16px;
		bottom: 16px;
	}

	.main-hero-icons .hero-icon-btn {
		width: 40px;
		height: 40px;
	}

	.main-hero-icons .hero-icon-btn img,
	.main-hero-icons .hero-icon-btn svg {
		width: 20px;
		height: 20px;
	}

	.main-hero-scroll {
		font-size: 0.8rem;
		bottom: 12px;
	}

	.main-hero-scroll .scroll-mouse {
		width: 16px;
		height: 24px;
	}
}

@keyframes scroll-move {
	0% {
		top: 8px;
		opacity: 1;
	}
	100% {
		top: 16px;
		opacity: 0.3;
	}
}
/* Hero Navigation Buttons */
.main-hero-nav {
	position: absolute !important;
	right: 10%;
	bottom: 10%;
	display: flex !important;
	flex-direction: column !important;
	/* gap: 15px; */
}

.nav-btn {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	/* border: 2px solid #fff; */
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	text-align: center;
	padding: 0;
	background-size: contain !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.nav-btn:hover {
	background-color: rgba(255, 255, 255, 0.4) !important;
	transform: scale(1.1);
}
