@charset "utf-8";

/* 웹폰트 Pretendard Variable */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable.css");

/* 전체 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body, html {font-size:16px; color:#333; font-family:'Pretendard Variable', 'Malgun Gothic', '맑은 고딕', dotum, '돋움', sans-serif;}
img {border:0;}
a {color:#333; text-decoration:none;}
a:link, a:visited {color:#333;}
a:hover	{color:#3b82f6;}

/* page_top - 공통*/
.navArea {position: absolute; top: 0; left: 0; padding: 24px 20px 0 20px; width: 100%; display: flex; justify-content: space-between; align-items: center; z-index: 1000;}

.navArea .logo {font-size:1.5rem; font-weight: 700; letter-spacing: 0.5px;}
.navArea .logo a {color: #505050;}
.navArea .logo a i {color: #3a63e3;}

/* page_top - 햄버거 버튼 */
.hb-btn {padding: 10px; background: transparent; border: none; cursor: pointer; z-index: 1010;}
.hb-btn .hb-bar {margin: 6px 0; width: 30px; height: 3px; background-color: #fff; transition: 0.4s; border-radius: 3px; display: block;}
.hb-btn.is-active .hb-bar:nth-child(1) {transform: rotate(-45deg) translate(-7px, 7px); }
.hb-btn.is-active .hb-bar:nth-child(2) {opacity: 0; }
.hb-btn.is-active .hb-bar:nth-child(3) {transform: rotate(45deg) translate(-7px, -7px); }

/* page_top - 모바일 메뉴 */
.mobile-nav-overlay {position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(3, 102, 255, 0.98); z-index: 999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;}
.mobile-nav-overlay.is-open {opacity: 1; visibility: visible; }

.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 35px 0; }
.mobile-nav ul li a { color: #fff; text-decoration: none; font-size: 2rem; font-weight: 600;}

/* page_top - PC 메뉴 */
.navArea nav {display: none;}
.navArea nav ul {display: flex; list-style:none;}
.navArea nav ul li a {padding:8px 26px; color: #fff; font-size: 1.3rem; font-weight: 500; transition: color 0.2s;}
.navArea nav ul li a:hover { color: #3b82f6; background-color: rgba(238, 238, 238, 0.7); border-radius: 8px;}


/* 서브비주얼 - 이미지 */
.sub-visualArea {position: relative; width: 100%; height: 300px; overflow: hidden; display: flex; justify-content:center; align-items: center;}

.sub-visualArea .overlayBox { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(20, 23, 38, 0); border-radius: 0 0 120px 0; z-index: 2; }
.sub-visualArea .visual-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0 0 120px 0; z-index: 1; }

/* 서브비주얼 - 텍스트 */
.sub-visualArea .contentBox {position: relative; display: flex; flex-direction: column; justify-content: center; gap: 24px; z-index: 3;}
.sub-visualArea .contentBox h1 {font-size: 2rem; font-weight: 500; line-height: 1.3; color:#fff;}
.sub-visualArea .contentBox p {font-size: 1.5rem; line-height: 1.7; color: #a7a7a7;}

/* 서브비주얼 - Animations */
.animate-fadein { opacity: 0; animation: fadeIn 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.animate-fadein { transform: translateY(20px); }


/* 서브콘텐츠 - 공통 */
section.secContent {padding: 80px 0;}
section.secContent .contentArea {margin:0 auto; width:100%; max-width: 1100px;}

/* 서브콘텐츠 - 타입 */
section.secTypeA .contentArea {display: flex; justify-content: center; align-items: center; flex-direction: column;}

section.secTypeB {}

/* 서브콘텐츠 - section contentBox : 넓이 1100px, 가운데위치 */
/* section .secContentBox {padding:0 20px; text-align: center;} */

/* 서브콘텐츠 - boxTypeA : flex, 가운데 */
/* .boxTypeA {display: flex; justify-content: center; } */





/* Features Section */
.features-section { background: #fafbfc; width: 100%; padding: 100px 0 120px 0; display: flex; justify-content: center; align-items: flex-start; }
.features-container { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.features-title { color: #18181b; font-size: 2.7rem; font-weight: 700; text-align: center; margin-bottom: 18px; line-height: 1.15; }
.features-desc { color: #444; font-size: 1.1rem; text-align: center; max-width: 800px; margin-bottom: 32px; }
.features-btn { margin-bottom: 56px; box-shadow: 0 6px 24px 0 rgba(37,99,235,0.15); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 32px; width: 100%; max-width: 1100px; }
.feature-card { background: #fff; border-radius: 16px; box-shadow: 0 8px 32px 0 rgba(37,99,235,0.07); padding: 36px 32px 32px 32px; display: flex; flex-direction: column; align-items: flex-start; min-height: 180px; transition: box-shadow 0.2s; }
.feature-card:hover { box-shadow: 0 12px 36px 0 rgba(37,99,235,0.13); }
.feature-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-card h3 { color: #18181b; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: #444; font-size: 1rem; font-weight: 400; }
.features-grid > .feature-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.features-grid > .feature-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.features-grid > .feature-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.features-grid > .feature-card:nth-child(4) { grid-column: 1 / span 1; grid-row: 2; }
.features-grid > .feature-card:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }

/* Impact Section */
.impact-section { background: #fafbfc; position: relative; padding: 80px 0 80px 0; overflow: hidden; }
.impact-pattern { position: absolute; left: 0; top: 60px; width: 220px; height: 340px; background-image: repeating-linear-gradient(90deg, #2563eb 0 2px, transparent 2px 24px), repeating-linear-gradient(180deg, #2563eb 0 2px, transparent 2px 24px); opacity: 0.12; border-radius: 24px; z-index: 1; }
.impact-inner { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.impact-img-wrap { flex: 1 1 380px; display: flex; justify-content: flex-end; align-items: center; }
.impact-img { width: 340px; height: 380px; object-fit: cover; border-radius: 18px; box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10); margin-right: -60px; background: #eee; }
.impact-content { flex: 1 1 420px; background: #0366ff; color: #fff; border-radius: 0 12px 12px 0; padding: 60px 48px 60px 80px; margin-left: -60px; display: flex; flex-direction: column; justify-content: center; min-height: 340px; }
.impact-content h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.impact-content p { font-size: 1.08rem; margin-bottom: 32px; color: #e0e0e0; }
.impact-btn { background: #fff; color: #0366ff; border: none; font-weight: 600; box-shadow: 0 2px 8px rgba(3,102,255,0.10); }
.impact-btn:hover { background: #e0e7ef; }

/* Facilities Section */
.facilities-section { background: #fff; padding: 100px 0 80px 0; position: relative; }
.facilities-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: center; gap: 48px; }
.facilities-content { flex: 1 1 420px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 0 0 32px; }
.facilities-content h2 { color: #18181b; font-size: 2rem; font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.facilities-content p { color: #444; font-size: 1.08rem; margin-bottom: 28px; }
.facilities-icons { display: flex; gap: 32px; margin-bottom: 32px; }
.facilities-icon { display: flex; align-items: center; font-weight: 600; font-size: 1.08rem; color: #222; gap: 10px; }
.btn-outline { display: inline-block; background: #fff; color: #2563eb; border: 2px solid #2563eb; padding: 12px 32px; border-radius: 8px; font-size: 1.1rem; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; box-shadow: 0 2px 8px rgba(37,99,235,0.08); }
.btn-outline:hover { background: #2563eb; color: #fff; }
.facilities-img-wrap { flex: 1 1 380px; position: relative; display: flex; align-items: center; justify-content: center; }
.facilities-img { width: 340px; height: 340px; object-fit: cover; border-radius: 18px; box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10); background: #eee; }
.facilities-card { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); background: #0366ff; color: #fff; border-radius: 12px; padding: 22px 32px 18px 24px; display: flex; align-items: flex-start; gap: 16px; min-width: 260px; box-shadow: 0 8px 32px 0 rgba(3,102,255,0.13); }
.facilities-card-icon { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; margin-right: 8px; }
.facilities-card-title { font-weight: 700; font-size: 1.08rem; margin-bottom: 4px; }
.facilities-card-desc { font-size: 0.98rem; color: #e0e0e0; }

/* Pricing Section */
.pricing-section { background: #fafbfc; padding: 100px 0 80px 0; position: relative; }
.pricing-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: center; gap: 48px; }
.pricing-img-wrap { flex: 1 1 380px; position: relative; display: flex; align-items: center; justify-content: center; }
.pricing-img { width: 340px; height: 340px; object-fit: cover; border-radius: 18px; box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10); background: #eee; }
.pricing-card { position: absolute; top: 32px; left: 50%; transform: translateX(-50%); background: #0366ff; color: #fff; border-radius: 12px; padding: 22px 32px 18px 24px; display: flex; align-items: flex-start; gap: 16px; min-width: 260px; box-shadow: 0 8px 32px 0 rgba(3,102,255,0.13); }
.pricing-card-icon { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; margin-right: 8px; }
.pricing-card-title { font-weight: 700; font-size: 1.08rem; margin-bottom: 4px; }
.pricing-card-desc { font-size: 0.98rem; color: #e0e0e0; }
.pricing-content { flex: 1 1 420px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 32px 0 0; }
.pricing-content h2 { color: #18181b; font-size: 2rem; font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.pricing-content p { color: #444; font-size: 1.08rem; margin-bottom: 28px; }
.pricing-icons { display: flex; gap: 32px; margin-bottom: 32px; }
.pricing-icon { display: flex; align-items: center; font-weight: 600; font-size: 1.08rem; color: #222; gap: 10px; }

/* Gallery Section */
.gallery-section { background: #fff; padding: 60px 0 60px 0; display: flex; justify-content: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 32px; max-width: 1100px; width: 100%; }
.gallery-img { width: 100%; height: 240px; object-fit: cover; border-radius: 16px; box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10); background: #eee; }








.footer-section { background: #243673; color: #fff; padding: 64px 0 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 48px; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; }
.footer-col { flex: 1 1 180px; margin-bottom: 32px; }
.footer-brand .logo { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-title { font-size: 1.18rem; font-weight: 700; margin-bottom: 16px; }
.footer-desc { font-size: 1rem; color: #e0e0e0; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; font-size: 1rem; color: #fff; cursor: pointer; transition: color 0.2s; }
.footer-col ul li:hover { color: #dbeafe; }
.footer-socials { display: flex; gap: 16px; }
.footer-social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #0366ff; font-size: 1.2rem; transition: background 0.2s, color 0.2s; }
.footer-social:hover { background: #2563eb; color: #fff; }
.footer-bottom { border-top: 1px solid #2563eb; margin-top: 24px; padding: 18px 0; display: flex; justify-content: space-between; font-size: 1rem; color: #dbeafe; max-width: 1200px; margin-left: auto; margin-right: auto; }



/* Icon styles (using emoji for now) */
.icon-clock::before { content: '\23F0'; font-size: 1.6rem; color: #fff; }
.icon-users::before { content: '\1F465'; font-size: 1.6rem; color: #fff; }
.icon-speed::before { content: '\23E9'; font-size: 1.6rem; color: #fff; }
.icon-kitchen::before { content: '\1F354'; font-size: 1.6rem; color: #fff; }
.icon-printer::before { content: '\1F5A8'; font-size: 1.6rem; color: #fff; }
.icon-office::before { content: '\1F3E2'; font-size: 1.3rem; color: #2563eb; }
.icon-custom::before { content: '\2699'; font-size: 1.3rem; color: #2563eb; }
.icon-piggy::before { content: '\1F4B0'; font-size: 1.3rem; color: #2563eb; }
.icon-membership::before { content: '\1F393'; font-size: 1.3rem; color: #2563eb; }
.icon-facebook::before { content: '\1F426'; font-size: 1.2rem; }
.icon-twitter::before { content: '\1F426'; font-size: 1.2rem; }
.icon-youtube::before { content: '\1F4FA'; font-size: 1.2rem; }
.icon-linkedin::before { content: '\1F465'; font-size: 1.2rem; }




/* Footer */
.footerArea {padding: 50px; background: #243673;}

.footerArea .info {margin:0 auto; max-width:1050px; font-size:0.9rem; color: #fff; text-align: center; line-height: 1.8;}
.footerArea .info p {margin-top:10px; font-size:0.8rem;}

.footerArea .copyBox {margin:40px auto; padding-top:50px; max-width:1100px; display: flex; flex-direction: column; gap:30px; border-top:1px solid #cfcfcf;}
.footerArea .copyBox .f_logo {text-align: center;}
.footerArea .copyBox .f_copy {font-size: 0.7rem; color:#aaaaaa; text-align: center;}





/* 반응형 스타일 */
@media (max-width: 500px) {

    .navArea .logo {font-size:1.5rem;}
}

@media (min-width: 501px) and (max-width: 1349px) {

    
    .navArea .logo {font-size:1.7rem;}

    .sub-visualArea {height:400px;}

    section.secTypeA .contentArea {flex-direction: row;}

    /*
    .features-section { padding: 60px 0; }
    .features-title { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; gap: 18px; }
    .feature-card { padding: 24px 16px 20px 16px; }
    
    .impact-content, .facilities-content, .pricing-content { padding: 24px 16px; }
    .impact-img, .facilities-img, .pricing-img { width: 100%; height: auto; max-height: 280px; }
    
    .gallery-img { height: 180px; }
    */
}

@media (min-width: 1350px) {

    .navArea {padding: 32px 60px 0 60px;}
    .navArea .logo {font-size:1.9rem;}

    .navArea nav { display: block; }
    .navArea .hb-btn { display: none; }

    .visualArea .contentBox { margin-left: 40px; max-width: 90vw; gap: 18px; }
    .visualArea .contentBox h1 { font-size: 2.1rem; }

    section.secTypeA .contentArea {flex-direction: row;}

    
    /*
    .features-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
    .features-grid > .feature-card:nth-child(n) { grid-column: auto; grid-row: auto; }
    
    .impact-inner, .facilities-inner, .pricing-inner { flex-direction: column; gap: 32px; align-items: stretch; }
    .impact-img-wrap, .facilities-img-wrap, .pricing-img-wrap { justify-content: center; margin: 0 auto 24px auto; }
    .impact-content, .facilities-content, .pricing-content { padding: 32px 24px; margin: 0; border-radius: 12px; }
    .impact-img { margin-right: 0; }
    
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
    
    .footer-inner { flex-direction: column; gap: 24px; padding: 0 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 18px 24px; }
    */
}
