/* company-page.css */
/* 애플 스타일 디자인의 회사 소개 페이지 */

/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-synthesis: none;
  }

body {
    font-family: 'SF Pro Display', 'Apple SD Gothic Neo', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1d1d1f;
    background-color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 공통 레이아웃 */
.main-content {
    width: 100%;
}

/* 로고 섹션 - 첫번째 화면 */
.logo-section {
    height: 100vh;
    width: 100%;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 상단 네비게이션 */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.nav-left, .nav-right {
    display: flex;
    gap: 24px;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.nav-logo {
    height: 20px;
}

.nav-link {
    font-size: 12px;
    color: #1d1d1f;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

/* 로고 컨테이너 */
.logo-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo-video-container {
    width: 300px;
    height: 300px;
    margin-bottom: 32px;
}

.logo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-titles {
    display: flex;
    align-items: baseline;
    margin-top: 16px;
}

.main-headline {
    font-size: 64px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-right: 8px;
}

.sub-headline {
    font-size: 24px;
    font-weight: 400;
    color: #1d1d1f;
    vertical-align: super;
}

/* 개선된 회사 소개 섹션 스타일 - AirPods Max 스타일 */

/* 인트로 섹션 기본 스타일 */
.intro-section {
    background-color: #fff;
    overflow: hidden;
}

.intro-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* 히어로 섹션 기본 레이아웃 */
.intro-hero {
    width: 100%;
    height: 90vh;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.intro-flex-container {
    display: flex;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 텍스트 영역 (왼쪽) */
.intro-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.intro-headline-container {
    max-width: 100%;
}

.intro-headline {
    font-size: 72px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* 로고 동영상 영역 (오른쪽) */
.intro-video-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.intro-logo-video-container {
    width: 90%;
    max-width: 500px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-logo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 반응형 스타일 */
@media (max-width: 1200px) {
    .intro-headline {
        font-size: 60px;
    }
    
    .intro-logo-video-container {
        width: 80%;
    }
}

@media (max-width: 992px) {
    .intro-headline {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .intro-flex-container {
        flex-direction: column;
    }
    
    .intro-text-side {
        flex: none;
        padding: 60px 20px 0;
    }
    
    .intro-video-side {
        flex: none;
        padding: 40px 20px 60px;
    }
    
    .intro-headline {
        font-size: 48px;
        text-align: center;
    }
    
    .intro-logo-video-container {
        width: 70%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .intro-hero {
        height: auto;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .intro-headline {
        font-size: 36px;
    }
    
    .intro-text-side {
        padding: 40px 20px 0;
    }
    
    .intro-logo-video-container {
        width: 90%;
        max-width: 280px;
    }
}


/* 이미지와 정확히 일치하는 비전 그리드 스타일 */
.vision-section {
    padding: 80px 0;
    background-color: #fff;
}

.vision-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
}

/* 그리드 레이아웃 */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
}

.vision-item {
    padding: 40px;
    position: relative;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* 테두리 설정 - 이미지와 일치하도록 */
.vision-item-1 {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.vision-item-2 {
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
}

.vision-item-3 {
    border-right: none;
    border-bottom: none;
}

.vision-item-4 {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 비전 번호 */
.vision-number {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

/* 부제목 */
.vision-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

/* 비전 제목 */
.vision-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* 비전 설명 */
.vision-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* Our Vision 큰 제목 */
.vision-main-title {
    font-size: 64px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
    
    .vision-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        min-height: auto;
        padding: 30px;
    }
    
    .vision-item-1 {
        order: 1;
    }
    
    .vision-item-4 {
        order: 2;
    }
    
    .vision-item-2 {
        order: 3;
    }
    
    .vision-item-3 {
        order: 4;
        border-bottom: none;
    }
    
    .vision-main-title {
        font-size: 48px;
        text-align: center;
    }
}

/* 위치 정보 */
.location-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 80px 20px 120px;
    border-top: 1px solid #d2d2d7;
}

.location-header {
    margin-bottom: 40px;
}

.location-title {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.02em;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location-item {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 12px;
}

.location-address {
    font-size: 17px;
    color: #86868b;
    margin: 0;
    line-height: 1.4;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .intro-content {
        padding: 80px 20px 60px;
    }
    
    .intro-headline {
        font-size: 60px;
        max-width: 80%;
    }
    
    .intro-tagline {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .intro-copy {
        max-width: 100%;
    }
    
    .intro-headline {
        font-size: 48px;
        max-width: 100%;
    }
    
    .intro-overlay {
        padding: 40px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .intro-hero {
        height: 70vh;
    }
    
    .intro-headline {
        font-size: 38px;
    }
    
    .intro-overlay {
        padding: 30px;
    }
    
    .intro-content {
        padding: 60px 20px 40px;
    }
    
    .intro-tagline {
        font-size: 22px;
    }
    
    .intro-description,
    .feature-desc,
    .location-address {
        font-size: 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-number {
        font-size: 20px;
    }
}

/* 조직도 섹션 */
.org-section {
    padding: 120px 0;
    background-color: #fff;
}

.org-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subhead {
    font-size: 18px;
    color: #86868b;
    margin-bottom: 80px;
    font-family: "pretendardRegular";
}

.org-chart-display {
    margin-bottom: 100px;
}

.org-chart-img {
    width: 100%;
    border-radius: 16px;
}

/* 부서별 상세 정보 */
.org-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    font-family: "pretendardRegular";
}

.org-detail {
    background-color: #f5f5f7;
    border-radius: 16px;
    padding: 32px;
}

.detail-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #000000;
    position: relative;
    padding-left: 0px;
}



.detail-list li:last-child {
    margin-bottom: 0;
}

/* 조직 문화 */
.culture-container {
    margin-top: 100px;
}

.culture-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.culture-description {
    font-size: 17px;
    color: #1d1d1f;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.4;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.culture-item {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 20px;
    font-size: 15px;
    color: #1d1d1f;
}

/* CI 섹션 */
.ci-section {
    padding: 120px 0;
    background-color: #fbfbfd;
}

.ci-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CI 특징 하이라이트 */
.feature-highlight {
    margin: 100px 0;
}

.feature-title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-image {
    margin-bottom: 16px;
    background-color: #f5f5f7;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.feature-desc {
    font-size: 14px;
    color: #86868b;
    line-height: 1.4;
}

/* 색상 섹션 */
.color-section {
    margin: 100px 0;
}

.color-palette {
    display: flex;
    gap: 16px;
    margin: 40px 0;
}

.color-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.color-specs {
    display: flex;
    gap: 48px;
}

.color-spec {
    flex: 1;
}

.spec-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.spec-value {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 4px;
}

/* 적용 예시 섹션 */
.application-section {
    margin: 100px 0;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.application-item {
    display: flex;
    flex-direction: column;
}

.application-image {
    margin-bottom: 16px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.application-name {
    font-size: 17px;
    color: #1d1d1f;
    font-weight: 500;
}

/* 다운로드 버튼 */
.download-section {
    display: flex;
    justify-content: center;
    margin: 80px 0;
    font-family: "pretendardRegular";
}

.download-button {
    background-color: #000000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #1d1d1f;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .main-headline {
        font-size: 56px;
    }
    
    .intro-headline, .section-headline {
        font-size: 40px;
    }
    
    .intro-description, .section-subhead {
        font-size: 21px;
    }
    
    .feature-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .logo-video-container {
        width: 250px;
        height: 250px;
    }
    
    .main-headline {
        font-size: 48px;
    }
    
    .intro-headline, .section-headline {
        font-size: 36px;
    }
    
    .intro-description, .section-subhead {
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .org-details-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .address-items {
        grid-template-columns: 1fr;
    }
    
    .color-specs {
        flex-direction: column;
        gap: 24px;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-video-container {
        width: 200px;
        height: 200px;
    }
    
    .main-headline {
        font-size: 40px;
    }
    
    .intro-headline, .section-headline {
        font-size: 32px;
    }
    
    .intro-description, .section-subhead {
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .top-nav {
        padding: 12px 16px;
    }
    
    .nav-link {
        font-size: 11px;
    }
}