/* 섹션 네비게이션 전용 CSS */

/* 섹션 네비게이션 스타일 */
.section-navigation {
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

/* 섹션3(회사소개)에서 네비게이션을 우측 상단으로 */
.section-navigation.section3-active {
    top: 100px;
    transform: translateY(0);
}

.nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-text {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-right: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
    white-space: nowrap;
    text-align: right;
    min-width: 100px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
    position: relative;
}

/* 활성 상태 */
.nav-item.active .nav-text {
    color: #007bff;
    opacity: 1;
    transform: translateX(0);
}

.nav-item.active .nav-dot {
    background: #007bff;
    transform: scale(1.3);
}

.nav-item.active .nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* 호버 효과 - 섹션 네비게이션으로 범위 제한 */
.section-navigation .nav-item:hover .nav-text {
    color: #007bff;
}

.section-navigation .nav-item:hover .nav-dot {
    background: #007bff;
    transform: scale(1.2);
}

/* 섹션2(비즈니스 섹션)에서 네비게이션 텍스트 검정색 */
.section-navigation.section2-active .nav-text {
    color: #333;
}

.section-navigation.section2-active .nav-item.active .nav-text {
    color: #007bff;
}

.section-navigation.section2-active .nav-item:hover .nav-text {
    color: #007bff;
}

/* 섹션3(회사소개)에서 네비게이션 텍스트 검정색 */
.section-navigation.section3-active .nav-text {
    color: #333;
}

.section-navigation.section3-active .nav-item.active .nav-text {
    color: #007bff;
}

.section-navigation.section3-active .nav-item:hover .nav-text {
    color: #007bff;
}

/* 섹션 네비게이션 반응형 */
@media (max-width: 1200px) {
    .section-navigation {
        right: 30px;
        gap: 35px;
    }
    
    .nav-text {
        font-size: 16px;
        margin-right: 15px;
    }
}

@media (max-width: 992px) {
    .section-navigation {
        right: 15px;
        gap: 20px;
    }
    
    .nav-text {
        font-size: 12px;
        margin-right: 8px;
        min-width: 60px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .section-navigation.section3-active {
        top: 80px;
    }
}

@media (max-width: 768px) {
    .section-navigation {
        right: 10px;
        gap: 15px;
        display: none;
    }
    
    .nav-text {
        font-size: 10px;
        margin-right: 6px;
        min-width: 50px;
    }
    
    .nav-dot {
        width: 6px;
        height: 6px;
    }
    
    /* 섹션3에서 모바일일 때 더 위로 */
    .section-navigation.section3-active {
        top: 60px;
    }

}

@media (max-width: 480px) {
    .section-navigation {
        right: 15px;
        gap: 20px;
    }
    
    .nav-text {
        font-size: 12px;
        margin-right: 10px;
        min-width: 70px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
}