﻿/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background-color: #f4f4f4; /* 배경색 추가 */
}

li { list-style: none; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* 헤더 스타일 */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4); /* 배경 투명도 조정 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* 로고 이미지와 텍스트 사이 간격 */
}

.logo-img {
    /* 기존 코드가 있다면 수정, 없다면 추가 */
    height: 80px; /* 로고 높이를 40px로 제한합니다. (적당한 크기로 조절하세요) */
    width: auto;   /* 비율에 맞게 너비는 자동 조절 */
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo span {
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: #ccc;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #26a69a; /* 청록색 포인트 컬러 */
}

/* 메인 비주얼 (배경 이미지 적용) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* style.css 수정 */

.hero-logo-img {
    /* 기존 코드가 있다면 수정, 없다면 추가 */
    height: 80px; /* 메인 로고 높이를 80px로 제한합니다. */
    width: auto;
    margin-bottom: 30px; /* 로고와 아래 텍스트 사이 간격 */
}
.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-main {
    padding: 15px 40px;
    background: #fff;
    color: #26a69a; /* 버튼 텍스트 색상 수정 */
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-main:hover {
    background: #26a69a; /* 청록색 포인트 컬러 */
    color: #fff;
}

/* 추가된 스타일 */
.content-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
}

.bg-light { background-color: #f8f9fa; }

.container-column {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-title {
    color: #26a69a; /* 청록색 포인트 컬러 */
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}

.desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-more {
    padding: 12px 30px;
    border: 1px solid #26a69a; /* 청록색 포인트 컬러 */
    color: #26a69a; /* 청록색 포인트 컬러 */
    font-weight: 500;
    transition: 0.3s;
}

.btn-more:hover {
    background: #26a69a; /* 청록색 포인트 컬러 */
    color: #fff;
}

/* 사업분야 그리드 */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.biz-item {
    background: #fff;
    padding: 40px 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.biz-item h3 { margin-bottom: 15px; color: #222; }
.biz-item p { color: #888; font-size: 14px; }

/* 고객지원 섹션 */
.support-flex {
    display: flex;
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.supp-box {
    flex: 1;
    background: #333;
    color: #fff;
    padding: 50px;
    text-align: left;
}

.supp-box h3 { margin-bottom: 15px; font-size: 24px; }
.supp-link { color: #26a69a; margin-top: 20px; display: inline-block; transition: 0.3s; }
.supp-link:hover { color: #fff; }

/* 푸터 */
footer {
    background: #222;
    padding: 50px 20px;
    color: #888;
    font-size: 14px;
    border-top: 1px solid #333;
}

footer p { margin-bottom: 10px; }



/* 서브 페이지 전용 스타일 */
.sub-header {
    background: rgba(0, 0, 0, 0.8) !important;
    position: relative !important;
}

/* --- 기존 style.css 하단에 추가 --- */

/* 서브 페이지 상단 배너 스타일 수정 (흰색 텍스트 강조) */
.sub-visual {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('background.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff; /* 기본 글씨 색상을 흰색으로 지정 */
}

.sub-visual h2 {
    font-size: 42px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #fff !important; /* BRAND STORY, OUR BUSINESS 제목 완전한 흰색 */
    font-weight: 700;
}

.sub-visual p {
    color: #fff !important; /* 설명 문구도 완전한 흰색 */
    font-weight: 400;
    opacity: 1; /* 투명도 제거 */
    font-size: 17px;
}

.about-content { padding: 100px 20px; background: #fff; }

.intro-text { text-align: center; margin-bottom: 80px; }
.intro-text h3 { font-size: 32px; color: #222; margin-bottom: 15px; }
.intro-text .point { color: #26a69a; border-bottom: 3px solid #26a69a; }
.intro-text p { font-size: 18px; color: #666; }

.feature-list { width: 100%; max-width: 900px; }
.feature-item { 
    display: flex; 
    gap: 30px; 
    margin-bottom: 50px; 
    padding-bottom: 40px; 
    border-bottom: 1px dashed #eee; 
}

.feature-item .num { 
    font-size: 40px; 
    font-weight: 700; 
    color: #26a69a; 
    opacity: 0.3; 
    font-family: 'Arial'; 
}

.feature-item h4 { font-size: 22px; color: #333; margin-bottom: 15px; }
.feature-item p { color: #666; line-height: 1.8; word-break: keep-all; }

nav ul li a.active { color: #26a69a; font-weight: 700; }




/* 사업분야(Business) 페이지 전용 스타일 */
.business-content {
    padding: 100px 20px;
    background: #f9f9f9; /* 약간의 회색 배경으로 신뢰감 부여 */
}

.business-detail-grid {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 60px; /* 카드 간 간격 */
}

.biz-detail-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* 부드러운 그림자 */
    display: flex;
    gap: 40px;
    align-items: flex-start;
    transition: 0.3s;
    border: 1px solid #eee;
}

.biz-detail-card:hover {
    transform: translateY(-5px); /* 마우스 올렸을 때 살짝 들리는 효과 */
    border-color: #26a69a; /* 포인트 컬러 테두리 */
}

/* 아이콘 스타일 */
.biz-icon {
    font-size: 45px;
    color: #26a69a; /* 포인트 컬러 */
    background: rgba(38, 166, 154, 0.1); /* 옅은 배경색 */
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* 크기 고정 */
}

.biz-txt {
    flex: 1;
    position: relative;
}

.biz-num {
    font-size: 60px;
    font-weight: 700;
    color: #26a69a;
    opacity: 0.1; /* 배경에 아주 옅게 까는 숫자 */
    position: absolute;
    top: -20px;
    right: 0;
    font-family: 'Arial';
}

.biz-txt h3 {
    font-size: 26px;
    color: #222;
    margin-bottom: 10px;
}

.biz-txt .sub-h {
    font-size: 16px;
    color: #26a69a; /* 포인트 컬러 */
    font-weight: 700;
    margin-bottom: 20px;
    word-break: keep-all;
}

.biz-txt .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    word-break: keep-all;
    text-align: justify; /* 양쪽 정렬로 깔끔하게 */
}

.biz-txt .desc strong {
    color: #333;
    font-weight: 700;
}

/* 반응형 설정 (스마트폰) */
@media (max-width: 768px) {
    .biz-detail-card {
        flex-direction: column; /* 모바일에서는 세로로 배치 */
        padding: 40px 20px;
        gap: 20px;
    }
    
    .biz-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .biz-num {
        font-size: 40px;
        top: -10px;
    }
}