@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
	--primary: #2d5f8d;
	--primary-light: #4a7ba7;
	--accent: #d4a574;
	--accent-dark: #b8935f;
	--dark: #1a2a3a;
	--light: #f5f7fa;
	--text: #333;
	--text-light: #666;
	--border: #e0e0e0;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	color: var(--text);
	background-color: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

strong, b {
	font-weight: 600;
}

a {
	font-weight: 500;
}

#header {
	width: 100%;
	position: relative;
	z-index: 999999;
	background: linear-gradient(135deg, #22083d 0%, #501a7e 50%, #2c0a4c 100%);
	box-shadow: var(--shadow);
}

.header_top_item {
	width: 100%;
	max-width: 1100px;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	/*padding: 8px 0 12px 0;*/
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_top_item > h1 {
	font-size: 0;
	flex: 0 0 auto;
}

.header_top_item h1 a {
	display: inline-block;
	transition: transform 0.3s ease;
}

.header_top_item h1 a:hover {
	transform: scale(1.05);
}

.top_section {
	display: flex;
	gap: 20px;
	list-style: none;
}

.top_section li {
	font-size: 13px;
}

.top_section li a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.top_section li a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;

}

.header_gnb {
	position: relative;
	top: auto;
	right: auto;
}

#menu {
	list-style: none;
	display: flex;
	gap: 0;
}

#menu > li {
	position: relative;
}

#menu > li > a {
	display: block;
	padding: 18px 22px;
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	letter-spacing: -0.01em;
}

#menu > li > a:hover {
	background-color: rgba(57, 2, 73, 0.1);
	color: #fff;
}

#menu ul {
	list-style: none;
}

#menu ul li {
	float: left;
}

#menu ul li a {
	font-weight: 700;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	letter-spacing: -0.01em;
}

#vis_sec {
	width: 100%;
	background: linear-gradient(135deg, #2d0a52 0%, #6b22a8 50%, #3a0d65 100%);
	padding-bottom: 60px;
}

.vis_sec_bg {
	width: 100%;
	padding-bottom: 60px;
}


.bxslider {
	list-style: none;
}

.bxslider li {
	min-height: 400px;
}

.bxslider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.content {
	width: 100%;
	margin-bottom: 40px;
	background: linear-gradient(180deg, rgba(45, 95, 141, 0.02) 0%, transparent 100%);
	padding: 40px 0;
	overflow-x: auto;
}

.main_banner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0 20px;
}

.main_banner li {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
	aspect-ratio: 4/3;
	flex-shrink: 0;
	min-width: 0;
}

.main_banner li:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.main_banner a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
}

.main_banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.main_banner li:hover img {
	transform: scale(1.08);
}

.main_banner div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(45, 95, 141, 0.7) 0%, rgba(45, 95, 141, 0.5) 100%);
	transition: all 0.3s ease;
}

.main_banner li:hover div {
	background: linear-gradient(135deg, rgba(45, 95, 141, 0.85) 0%, rgba(45, 95, 141, 0.65) 100%);
}

.main_banner div p {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
	text-align: center;
	letter-spacing: -0.02em;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.main_banner div span {
	display: block;
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	opacity: 0.9;
	font-family: "Pretendard", sans-serif;
	font-weight: 400;
	letter-spacing: -0.01em;
}

/* Footer styles moved to /css/footer.css */
