@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing:border-box;
}

body {
	margin:0; padding:0;
	font-family: 'Roboto', 'Noto Sans KR', "Dotum", sans-serif;
	color: #444;
	font-size: 15px;
	line-height:160%;
	font-weight:400;
}

b, strong {
	font-weight: 700;
}

div, section {
	margin:0; padding:0;
}

ul, ol, li, dl, dt, dd {
	margin: 0;
	padding: 0;
	list-style: none;
}

a, a:active {
	color:#444; text-decoration:none;
}

a:hover {
	text-decoration: none;
	color: #1e40af;
}

img {border:none; padding:0; margin:0;}

#wrap {margin:0; padding:0; width:100%; height:100%;}

/* Header */
.top_area {padding:5px; background:linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);}
.top_area ul {width:95%; max-width:1200px; margin:0 auto; overflow:hidden; zoom:1; clear:both;}
.top_area ul .logo {float:left; margin-top:2px;}
.top_area ul .logo img {height:40px;}
.top_area ul .go_btn {float:right; margin-top:10px; color:#a0c4e8; font-size:13px; font-weight:600; font-family: 'Noto Sans KR', sans-serif;}
.top_area ul .go_btn a {color:#a0c4e8; transition:color 0.3s;}
.top_area ul .go_btn a:hover {color:#fff;}

/* Main Visual - 글로벌 협력 테마 */
.main_img {
	min-height: 520px;
	background: linear-gradient(rgba(15, 41, 66, 0.75), rgb(77 77 77 / 0%)), url('https://www.sunfull.or.kr/new_images/main/togetherbg.jpg') center center / cover no-repeat;
	position: relative;
	overflow: hidden;
}

/* 슬라이더 컨테이너 */
.main_slider {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
}

/* 슬라이드 */
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
	opacity: 1;
	visibility: visible;
}

.slide_content {
	text-align: center;
	max-width: 900px;
	padding: 0 30px;
}

/* 슬라이더 인디케이터 (도트) */
.slider_dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.slider_dots .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider_dots .dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.slider_dots .dot.active {
	background: #fbbf24;
	transform: scale(1.2);
}

/* 슬라이드 1 텍스트 스타일 */
.main_subtitle {
	margin: 0 0 15px 0;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.main_title {
	margin: 0 0 25px 0;
	font-family: "Poppins", sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main_title span {
	display: block;
	color: #fbbf24;
	font-size: 68px;
	font-weight: 800;
	margin-top: 5px;
}

.main_title_ko {
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 4px;
}

/* 슬라이드 2 텍스트 스타일 */
.main_subtitle2 {
	margin: 0 0 20px 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #fbbf24;
	letter-spacing: 2px;
}

.main_title2 {
	margin: 0 0 30px 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 46px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main_desc {
	margin: 0 auto;
	max-width: 700px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	letter-spacing: 1px;
}

/* 애니메이션 */
.animate {
	opacity: 0;
}

.slide.active .animate {
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}

.slide.active .fadeInDown {
	animation-name: fadeInDown;
}

.slide.active .fadeInUp {
	animation-name: fadeInUp;
}

.slide.active .delay1 {
	animation-delay: 0.3s;
}

.slide.active .delay2 {
	animation-delay: 0.6s;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Support */
.support {padding:0; border-bottom:1px solid #e5e7eb; background:#f8fafc;}
.support span {display:block; max-width:1200px; margin:0 auto; padding:15px 30px; font-family: 'Noto Sans KR', sans-serif; color:#64748b; font-size:14px; font-weight:500;}
.support span i {margin-right:8px; color:#1e40af;}

/* Container */
#container {width:95%; max-width:1000px; margin:0 auto; padding:80px 0 0 0;}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-label {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 30px;
	margin-bottom: 20px;
}

.section-title {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 15px 0;
}

.section-desc {
	font-size: 18px;
	color: #64748b;
	margin: 0;
}

/* Intro Card */
.intro-card {
	background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 50px;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.intro-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1e40af, #3b82f6, #fbbf24);
}

.intro-badge {
	display: inline-block;
	padding: 10px 24px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
	color: #fbbf24;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	border-radius: 30px;
	margin-bottom: 25px;
}

.intro-badge i {
	margin-right: 8px;
}

.intro-card h3 {
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #1e40af;
	margin: 0 0 25px 0;
}

.intro-text {
	font-size: 18px;
	line-height: 1.9;
	color: #475569;
	margin: 0 0 30px 0;
	word-break: keep-all;
}

.intro-text strong {
	color: #1e40af;
}

.intro-text em {
	font-style: normal;
	font-weight: 700;
	color: #0f172a;
	background: linear-gradient(120deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.3) 100%);
	padding: 2px 8px;
	border-radius: 4px;
}

.intro-quote {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border-radius: 12px;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #92400e;
}

.intro-quote i {
	margin-right: 10px;
	opacity: 0.5;
}

/* Timeline Section */
.timeline-section {
	margin-bottom: 50px;
}

.timeline-item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.timeline-marker {
	flex: 0 0 auto;
}

.timeline-year {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 700;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.timeline-content {
	flex: 1;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	position: relative;
}

.timeline-content::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 20px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-left: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	transform: rotate(45deg);
}

.timeline-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.timeline-icon i {
	font-size: 22px;
	color: #1e40af;
}

.timeline-content h4 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 15px 0;
}

.timeline-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #475569;
	margin: 0;
	word-break: keep-all;
}

.timeline-content p strong {
	color: #1e40af;
}

/* Value Grid */
.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 50px;
}

.value-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
	border-color: #93c5fd;
}

.value-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.value-card:hover .value-icon {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.value-icon i {
	font-size: 28px;
	color: #1e40af;
	transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
	color: #fff;
}

.value-card h4 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 12px 0;
}

.value-card p {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	margin: 0;
	word-break: keep-all;
}

/* CTA Banner */
.cta-banner {
	background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 50%, #3b82f6 100%);
	border-radius: 24px;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.cta-content {
	flex: 1;
	position: relative;
	z-index: 1;
}

.cta-content h3 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px 0;
}

.cta-content h3 i {
	margin-right: 12px;
	color: #fbbf24;
}

.cta-content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 35px;
	background: #fbbf24;
	color: #0f172a;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.cta-btn:hover {
	background: #f59e0b;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
	color: #0f172a;
}

/* Comment Section */
.comment-section {
	background: #f8fafc;
	border-radius: 24px;
	padding: 40px;
	margin-bottom: 40px;
}

.comment-header {
	text-align: center;
	margin-bottom: 30px;
}

.comment-header h3 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.comment-header h3 i {
	margin-right: 10px;
	color: #1e40af;
}

/* Livere */
#lv-container {margin-top:0; padding-top: 0; border: none;}

/* Footer */
#copyright {margin:30px 0 0 0; padding:45px 0; background:linear-gradient(135deg, #0f2942 0%, #1e3a5f 100%); font-size:14px; text-align: center; color:#94a3b8;}
#copyright a {font-weight: bold; color:#fff;}

/* ===== 반응형 ===== */

/* 태블릿 */
@media all and (max-width:1024px) {
	.main_slider {
		height: 480px;
	}

	.main_title {
		font-size: 46px;
	}

	.main_title span {
		font-size: 54px;
	}

	.main_title2 {
		font-size: 38px;
	}

	.main_desc {
		font-size: 18px;
	}

	.section-header {
		margin-bottom: 50px;
	}

	.section-title {
		font-size: 36px;
	}

	.intro-card {
		padding: 40px 30px;
	}

	.intro-card h3 {
		font-size: 28px;
	}

	.intro-text {
		font-size: 16px;
	}

	.timeline-item {
		flex-direction: column;
		gap: 20px;
	}

	.timeline-content::before {
		display: none;
	}

	.value-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
	}
}

/* 모바일 */
@media all and (max-width:768px) {
	.top_area ul .logo img {height:32px;}

	.main_img {
		min-height: auto;
	}

	.main_slider {
		height: 420px;
	}

	.slide_content {
		padding: 0 20px;
	}

	.main_subtitle {
		font-size: 14px;
		letter-spacing: 2px;
	}

	.main_title {
		font-size: 36px;
	}

	.main_title span {
		font-size: 44px;
	}

	.main_title_ko {
		font-size: 18px;
		letter-spacing: 2px;
	}

	.main_subtitle2 {
		font-size: 16px;
	}

	.main_title2 {
		font-size: 30px;
	}

	.main_title2 br {
		display: none;
	}

	.main_desc {
		font-size: 16px;
	}

	.slider_dots {
		bottom: 20px;
	}

	.slider_dots .dot {
		width: 10px;
		height: 10px;
	}

	#container {
		padding: 40px 0 0 0;
	}

	/* Section Header */
	.section-header {
		margin-bottom: 40px;
	}

	.section-label {
		font-size: 11px;
		padding: 6px 16px;
	}

	.section-title {
		font-size: 30px;
	}

	.section-desc {
		font-size: 15px;
	}

	/* Intro Card */
	.intro-card {
		padding: 30px 20px;
		border-radius: 18px;
	}

	.intro-badge {
		font-size: 12px;
		padding: 8px 18px;
	}

	.intro-card h3 {
		font-size: 24px;
	}

	.intro-text {
		font-size: 15px;
		line-height: 1.8;
	}

	.intro-quote {
		font-size: 16px;
		padding: 12px 20px;
	}

	/* Timeline */
	.timeline-content {
		padding: 25px 20px;
		border-radius: 16px;
	}

	.timeline-year {
		font-size: 16px;
		padding: 10px 20px;
	}

	.timeline-icon {
		width: 45px;
		height: 45px;
	}

	.timeline-icon i {
		font-size: 18px;
	}

	.timeline-content h4 {
		font-size: 19px;
	}

	.timeline-content p {
		font-size: 14px;
	}

	/* Value Grid */
	.value-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.value-card {
		padding: 25px 20px;
		border-radius: 16px;
		display: flex;
		align-items: center;
		text-align: left;
		gap: 20px;
	}

	.value-icon {
		width: 60px;
		height: 60px;
		margin: 0;
		flex-shrink: 0;
		border-radius: 16px;
	}

	.value-icon i {
		font-size: 24px;
	}

	.value-card h4 {
		font-size: 17px;
		margin-bottom: 6px;
	}

	.value-card p {
		font-size: 13px;
	}

	/* CTA Banner */
	.cta-banner {
		padding: 30px 25px;
		border-radius: 18px;
		margin-bottom: 40px;
	}

	.cta-content h3 {
		font-size: 20px;
	}

	.cta-content p {
		font-size: 14px;
	}

	.cta-btn {
		padding: 14px 28px;
		font-size: 14px;
	}

	/* Comment Section */
	.comment-section {
		padding: 30px 20px;
		border-radius: 18px;
		margin-bottom: 30px;
	}

	.comment-header h3 {
		font-size: 18px;
	}
}

/* 소형 모바일 */
@media all and (max-width:480px) {
	.main_slider {
		height: 380px;
	}

	.main_subtitle {
		font-size: 12px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.main_title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.main_title span {
		font-size: 34px;
	}

	.main_title_ko {
		font-size: 15px;
	}

	.main_subtitle2 {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.main_title2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.main_desc {
		font-size: 14px;
	}

	/* Section Header */
	.section-header {
		margin-bottom: 30px;
	}

	.section-label {
		font-size: 10px;
		padding: 5px 14px;
		letter-spacing: 1px;
	}

	.section-title {
		font-size: 26px;
	}

	.section-desc {
		font-size: 14px;
	}

	/* Intro Card */
	.intro-card {
		padding: 25px 18px;
		border-radius: 16px;
		margin-bottom: 35px;
	}

	.intro-badge {
		font-size: 11px;
		padding: 7px 15px;
		margin-bottom: 18px;
	}

	.intro-card h3 {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.intro-text {
		font-size: 14px;
		line-height: 1.75;
		margin-bottom: 22px;
	}

	.intro-quote {
		font-size: 15px;
		padding: 10px 18px;
	}

	/* Timeline */
	.timeline-section {
		margin-bottom: 35px;
	}

	.timeline-content {
		padding: 22px 18px;
	}

	.timeline-year {
		font-size: 14px;
		padding: 8px 16px;
	}

	.timeline-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
	}

	.timeline-icon i {
		font-size: 16px;
	}

	.timeline-content h4 {
		font-size: 17px;
		margin-bottom: 12px;
	}

	.timeline-content p {
		font-size: 13px;
		line-height: 1.7;
	}

	/* Value Grid */
	.value-grid {
		gap: 12px;
		margin-bottom: 35px;
	}

	.value-card {
		padding: 20px 16px;
		gap: 16px;
	}

	.value-icon {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}

	.value-icon i {
		font-size: 20px;
	}

	.value-card h4 {
		font-size: 15px;
	}

	.value-card p {
		font-size: 12px;
	}

	/* CTA Banner */
	.cta-banner {
		padding: 25px 20px;
		border-radius: 16px;
		margin-bottom: 30px;
	}

	.cta-content h3 {
		font-size: 17px;
		margin-bottom: 8px;
	}

	.cta-content h3 i {
		margin-right: 8px;
	}

	.cta-content p {
		font-size: 13px;
	}

	.cta-btn {
		padding: 12px 24px;
		font-size: 13px;
		width: 100%;
		justify-content: center;
	}

	/* Comment Section */
	.comment-section {
		padding: 25px 18px;
		border-radius: 16px;
		margin-bottom: 25px;
	}

	.comment-header {
		margin-bottom: 20px;
	}

	.comment-header h3 {
		font-size: 16px;
	}

	#lv-container {margin-top:25px; padding-top:10px;}
}
