@charset "utf-8";
/* BNCSOFT */
body {font-family: 'Noto Sans KR', sans-serif !important}
body .nav-link.depth2 {padding: 0.5rem 1.0rem !important; min-width:180px !important}

.nanum-square-ac {font-family: 'NanumSquareAc', sans-serif !important}
.gothic-a1 {font-family: 'Gothic A1', sans-serif !important}
.play {font-family: 'Play', sans-serif !important}
.noto {
font-family: 'Noto Sans KR', sans-serif
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.black-han-sans-regular {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* index.php */
:root {
	--primary-color: #1a73e8;
	--dark-color: #202124;
	--light-bg: #f8f9fa;
	--border-color: #e0e0e0;
}
body { font-family: 'Pretendard', sans-serif; margin: 0; padding: 0; color: var(--dark-color); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* 헤더 및 GNB */
header { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo { font-size: 24px; font-weight: bold; color: var(--primary-color); }
.nav-menu { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-item > a { font-weight: 600; padding: 10px 0; display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 4px; width: 220px; padding: 10px 0; list-style: none; }
.nav-item:hover .dropdown { display: block; }
.dropdown li a { padding: 8px 20px; display: block; font-size: 14px; color: #555; }
.dropdown li a:hover { background: var(--light-bg); color: var(--primary-color); }

/* 비주얼 배너 (히어로) */
.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/1920/800?blur=2') center/cover; color: #fff; text-align: center; padding: 140px 20px; }
.hero h1 { font-size: 42px; margin-bottom: 20px; }
.hero p { font-size: 18px; margin-bottom: 30px; }
.hero-btn { background: var(--primary-color); color: #fff; padding: 12px 30px; border-radius: 4px; font-weight: bold; display: inline-block; }

/* 공통 섹션 레이아웃 */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 32px; margin-bottom: 10px; }
.section-title p { color: #666; }

/* 회사소개 개요 */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h3 { font-size: 24px; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feature-box { background: var(--light-bg); padding: 20px; border-radius: 8px; }
.about-img img { width: 100%; border-radius: 8px; }

/* 사업영역 카드 */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: #fff; border: 1px solid var(--border-color); border-radius: 8px; padding: 30px 20px; text-align: center; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card h3 { margin-bottom: 15px; font-size: 18px; }
.service-card p { font-size: 14px; color: #666; margin-bottom: 20px; }
.service-link { font-size: 13px; color: var(--primary-color); font-weight: bold; }

/* 포트폴리오 갤러리 */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.portfolio-item { background: #fff; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; }
.portfolio-thumb { height: 180px; background: #ddd; background-size: cover; background-position: center; }
.portfolio-info { padding: 20px; }
.portfolio-info h4 { margin: 0 0 10px 0; font-size: 16px; }
.portfolio-info p { margin: 0; font-size: 13px; color: #666; }

/* 고객지원 및 하단 푸터 */
.support-section { background: var(--light-bg); }
/* .support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; } */
/* .support-box { background: #fff; padding: 30px; border-radius: 8px; border: 1px solid var(--border-color); } */

footer { background-color: #091a32; color: #aaa;}
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }










